summaryrefslogtreecommitdiffstats
path: root/tools/wixl
Commit message (Collapse)AuthorAgeFilesLines
* wixl: move uuid_from_name in utilMarc-André Lureau2013-11-082-20/+20
|
* wixl: use sha1 instead of md5 by defaultMarc-André Lureau2013-11-081-2/+2
|
* Fix stable component GUID generationMarc-André Lureau2013-11-081-1/+1
| | | | | Paolo probably overlooked the difference between WixlElement.parent, and Vala 'base'
* wixl: schedule AppSearch when necessaryMarc-André Lureau2013-08-131-1/+4
|
* wixl: add Signature tableMarc-André Lureau2013-08-131-0/+11
| | | | This helps to fix AppSearch when uninstalling
* wixl: add InstallScopeMarc-André Lureau2013-07-113-1/+19
|
* wixl: a Component can be child of ComponentGroupMarc-André Lureau2013-07-112-1/+2
|
* wixl: add Directory support to ComponentGroupMarc-André Lureau2013-07-112-3/+16
|
* wixl: add default msi commentMarc-André Lureau2013-07-112-0/+10
|
* wixl: start MediaTemplateMarc-André Lureau2013-07-112-1/+23
|
* wixl: Add CreateFolderMarc-André Lureau2013-07-113-0/+29
|
* wixl: Start basic MajorUpgrade elementMarc-André Lureau2013-07-112-2/+43
|
* wixl: Add unused MsiFileHashMarc-André Lureau2013-07-111-0/+26
| | | | | | Wine implementation uses MD5, which is not FIPS compliant and apparently it's not even used to validate files: http://stackoverflow.com/questions/8203153/which-hash-function-is-used-by-windows-installer
* wixl: modify file sequence default valueMarc-André Lureau2013-07-111-1/+1
| | | | | | The integers in this field must be equal or greater than 1. http://msdn.microsoft.com/en-us/library/windows/desktop/aa368596%28v=vs.85%29.aspx
* Include wxi-local dir after user includesMarc-André Lureau2013-07-081-1/+1
|
* Add basic JScript CustomAction supportMarc-André Lureau2013-05-172-5/+14
|
* wixl: handle CustomAction of type DLL_BINARYMarc-André Lureau2013-05-161-2/+10
|
* wixl: visit Binary and fill dbMarc-André Lureau2013-05-162-0/+26
|
* wixl: add ExtendedType to CustomActionMarc-André Lureau2013-05-161-4/+5
|
* wixl/msi: add Binary database, = IconMarc-André Lureau2013-05-161-0/+21
|
* wixl: set summay template for specified archMarc-André Lureau2013-04-121-1/+9
|
* wixl: Product Comment is not mandatoryMarc-André Lureau2013-04-121-1/+2
|
* wixl: add component Win64 attributeMarc-André Lureau2013-04-122-0/+4
|
* Keep package description > product nameMarc-André Lureau2013-04-122-1/+9
|
* Set installer version depending on archMarc-André Lureau2013-04-122-7/+22
|
* preprocessor: add condition evaluatorMarc-André Lureau2013-04-123-1/+242
|
* wixl: mark a few more translatable stringsMarc-André Lureau2013-04-121-3/+3
|
* wixl: add --arch optionMarc-André Lureau2013-04-122-3/+29
|
* wixl: make environment variable mandatoryMarc-André Lureau2013-02-131-8/+8
| | | | | Make environment variable mandatory if used inside XML content. Preprocessor conditions are still optionnal.
* Workaround vala bug 604973Marc-André Lureau2013-02-111-1/+13
|
* wixl: improve automatic detection of the key pathPaolo Bonzini2013-01-251-2/+17
| | | | Also detect multiple elements with keyPath="yes".
* wixl: reorganize full_path, add the key element to the stable UUIDPaolo Bonzini2013-01-251-10/+28
| | | | | | | Call the resolver from the override of WixElementRef. Override in WixComponent, making it look at the key component. Add a new method to fetch the name part from a <File> or <RegistryValue> element.
* wixl: two-stage visit for componentsPaolo Bonzini2013-01-252-3/+6
|
* wixl: visit RegistrySearch and populate dbMarc-André Lureau2013-01-242-0/+23
|
* wixl: populate CustomAction of type EXE_PROPERTYMarc-André Lureau2013-01-241-0/+42
|
* 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.