summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
...
* wixl: name Custom actions correctlyMarc-André Lureau2013-01-241-0/+3
|
* wixl: add MSI tables RegLocator, AppSearch, CustomActionMarc-André Lureau2013-01-241-0/+65
|
* wixl: add RegistrySearch and CustomActionMarc-André Lureau2013-01-242-0/+48
|
* wixl: default actions can have a conditionMarc-André Lureau2013-01-241-0/+1
|
* wixl: add Action conditionMarc-André Lureau2013-01-242-5/+13
|
* wixl: Action can have children nodesMarc-André Lureau2013-01-241-2/+2
|
* wixl: take pre-defined Action sequenceMarc-André Lureau2013-01-241-0/+3
|
* wixl: do not add null/runtime propertiesMarc-André Lureau2013-01-241-0/+3
|
* wixl: ServiceInstall name is not localizableMarc-André Lureau2013-01-241-1/+1
|
* wixl: implement stable UUID generationPaolo Bonzini2013-01-242-1/+41
| | | | Note that the UUIDs are *not* compatible with WiX!
* wixl: introduce WixResolverPaolo Bonzini2013-01-242-21/+25
|
* wixl: fill in visitor for service elementsPaolo Bonzini2013-01-241-0/+116
|
* wixl: add ServiceControl and ServiceInstall tablePaolo Bonzini2013-01-242-0/+62
|
* wixl: add ServiceControl, ServiceInstall and their children elementsPaolo Bonzini2013-01-242-0/+102
|
* wixl: do not use enum_from_string directly, make it genericPaolo Bonzini2013-01-243-11/+37
| | | | | | | | | The right spelling is multiString, not multi-string as defined by vala, so we cannot use enum_from_string. Thus do not make it public and use it internally from a (possibly more complex) from_string static method of the enum. I haven't checked the usage in msi-default.vala.
* wixl: rename RemoveFileInstallModePaolo Bonzini2013-01-241-2/+2
|
* wixl: make --verbose a little more verbosePaolo Bonzini2013-01-241-0/+2
|
* build-sys: g_type_init() is deprecated since 2.36Marc-André Lureau2013-01-212-2/+8
|
* msiextract: print extract name during extractionMarc-André Lureau2013-01-191-0/+1
|
* wixl: remove gio-unix dependencyPaolo Bonzini2013-01-182-1/+17
| | | | | It is not available under Windows, but it can be easily implemented using Posix.read.
* msiinfo: remove gio-unix dependencyPaolo Bonzini2013-01-181-8/+11
| | | | | | | Everything builds now (wixl-heat is disabled), but msibuild seems to be still broken on Win32. Also, testdatabase and testsuminfo do not pass.
* msiextract: can now extract files with gcab >= 0.1.10Marc-André Lureau2013-01-181-12/+39
|
* wixl: remove useless execute() argumentMarc-André Lureau2013-01-172-6/+6
|
* msiextract: simplify a little bit now that NO_MORE_ITEMS is goneMarc-André Lureau2013-01-171-74/+62
|
* Remove LIBMSI_RESULT_NO_MORE_ITEMS from APIMarc-André Lureau2013-01-171-3/+2
| | | | | | | Raising an error for indicating the end of the results is really inconvenient, it's like throwing an exception for something quite normal... The user can still make a distinction when there is an error if the GError is set.
* Fix database_new() usage after API changeMarc-André Lureau2013-01-174-9/+9
|
* wixl: add --wxidir optionPaolo Bonzini2013-01-172-2/+11
|
* msibuild: add missing include filePaolo Bonzini2013-01-171-0/+1
|
* build: libuuid dependency is now mandatoryPaolo Bonzini2013-01-171-16/+10
| | | | | This was just a hack because Fedora mingw does not have a libuuid port. It can go. And we can also always build wixl.
* wixl: do not use g_hash_table_addPaolo Bonzini2013-01-173-2/+6
| | | | This is not supported in GLib 2.22, which is the version used in RHEL6.
* wixl: fix application nameMarc-André Lureau2013-01-171-1/+1
|
* Start a msiextract toolMarc-André Lureau2013-01-171-0/+146
|
* wixl: add non-advertised MIME supportMarc-André Lureau2013-01-152-0/+36
|
* wixl: start ProgId/Extension/Verb supportMarc-André Lureau2013-01-152-0/+105
|
* wixl: add support for registry key parent, name and valueMarc-André Lureau2013-01-153-10/+48
| | | | | | | | | | | <DirectoryRef Id="TARGETDIR"> <Component Id="CRegistryEntries" Guid="*"> <RegistryKey Root='HKLM' Key='Software\Acme\Foobar 1.0'> <RegistryValue Type='string' Name='InstallDir' Value='[INSTALLDIR]'/> <RegistryValue Type='integer' Name='Flag' Value='0'/> </RegistryKey> </Component> </DirectoryRef>
* wixl: default output file to inputfile name with .msi extensionMarc-André Lureau2013-01-151-2/+6
|
* wixl: improve shortcut supportMarc-André Lureau2013-01-153-14/+44
| | | | | | | | | | | | | | | | To support such construction: <DirectoryRef Id="DirMenu"> <Component Id="CShortcut" Guid="*"> <Shortcut Id="ApplicationStartMenuShortcut" Name="Remote viewer" Description="A SPICE/VNC client" Target="[INSTALLDIR]\bin\remote-viewer.exe" Icon="IcoVirtViewer"/> <RemoveFolder Id="MENUDIR" On="uninstall"/> <RegistryValue Root="HKCU" Key="Software\VirtViewer\remote-viewer-shortcut" Name="installed" Type="integer" Value="1" KeyPath="yes"/> </Component> </DirectoryRef>
* wixl: add a fixmeMarc-André Lureau2013-01-151-1/+3
|
* wixl: include global wix directory by defaultMarc-André Lureau2013-01-151-0/+1
|
* wixl: files must be ordered the same way in Cab and File tableMarc-André Lureau2013-01-152-5/+3
|
* wixl: add "require" preprocessor support (not available in WiX)Marc-André Lureau2013-01-152-18/+38
| | | | | The idea is to avoid including the same file multiple time and having the same element multiple time defined.
* wixl: implement preprocessor undefMarc-André Lureau2013-01-151-3/+14
|
* wixl: add ifdef/endif preprocessor conditionMarc-André Lureau2013-01-121-2/+79
|
* wixl: do not include unnecessary files in MSIMarc-André Lureau2013-01-111-0/+4
|
* wixl: allow ComponentGroupRef as child of ComponentGroupMarc-André Lureau2013-01-112-3/+15
| | | | | This is not available in WiX upstream, but it makes life easy to have componentgroup dependencies..
* wixl: add --includedir to add directory to search for included filesMarc-André Lureau2013-01-113-8/+26
|
* wixl: print preprocessor location on warning/errorMarc-André Lureau2013-01-111-2/+26
|
* wixl: preprocessor learn includeMarc-André Lureau2013-01-111-8/+42
|
* wixl: add preprocessor warning and errorMarc-André Lureau2013-01-111-0/+5
|
* wixl: error out if can't resolve elementMarc-André Lureau2013-01-111-7/+11
|