diff options
| author | Eduard Braun <eduard.braun2@gmx.de> | 2016-11-13 16:25:16 +0000 |
|---|---|---|
| committer | Eduard Braun <eduard.braun2@gmx.de> | 2016-11-13 16:25:16 +0000 |
| commit | 18c2c855084a587189d725d9dcb8e5cc089f7f6d (patch) | |
| tree | b0fea08a1cda269515e3d445cc37250a83d94600 | |
| parent | Packaging: Update NSIS translations from bug 1634690 (diff) | |
| download | inkscape-18c2c855084a587189d725d9dcb8e5cc089f7f6d.tar.gz inkscape-18c2c855084a587189d725d9dcb8e5cc089f7f6d.zip | |
Packaging: Re-activate compression in MSI installer and document some todos
(bzr r15244.1.19)
| -rw-r--r-- | packaging/wix/README | 14 | ||||
| -rw-r--r-- | packaging/wix/inkscape.wxs | 2 |
2 files changed, 10 insertions, 6 deletions
diff --git a/packaging/wix/README b/packaging/wix/README index 606e7b376..a13d4d5c3 100644 --- a/packaging/wix/README +++ b/packaging/wix/README @@ -16,13 +16,17 @@ build the installer when completed there should be inkscape.msi in your path +helpful tips +- set CompressionLevel="none" in inkscape.wxs + while experimenting with installer creation + (results in huge installer but much faster compilation times) + things still todo - detailed explanation what to do for new revisions - better filenames (nightly builds versus releases) - howto remove python .pyc files after deinstallation - localisation into the installer - -helpful tips -- set CompressionLevel="none" in inkscape.wxs - while experimenting with installer creation - (results in huge installer but much faster compilation times)
\ No newline at end of file +- make "Typical" and "Complete" installations actually install different files + (at least don't lie to the user by suggesting there would be two different choices) +- conditionally install localized content according to the users previous feature choices + (e.g. only install translated versions of tutorials if the "Tutorials" feature is selected) diff --git a/packaging/wix/inkscape.wxs b/packaging/wix/inkscape.wxs index db055a46a..051c1cfc1 100644 --- a/packaging/wix/inkscape.wxs +++ b/packaging/wix/inkscape.wxs @@ -7,7 +7,7 @@ <Package Id='*' Keywords='Installer' Description="Inkscape Installer" Comments='inkscape is registered trademark of inkscape.org' Manufacturer='inkscape.org' InstallerVersion='$(var.InstallerVersion)' Platform='$(var.Platform)' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
- <Media Id='1' Cabinet='Sample.cab' EmbedCab='yes' DiskPrompt="CD-ROM #1" CompressionLevel="none"/>
+ <Media Id='1' Cabinet='Sample.cab' EmbedCab='yes' DiskPrompt="CD-ROM #1" CompressionLevel="high"/>
<Property Id='DiskPrompt' Value="inkscape Installation [1]" />
<Property Id='ALLUSERS' Value="2" />
|
