summaryrefslogtreecommitdiffstats
path: root/packaging/win32/inkscape.nsi (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Clarify licensesMax Gaukler2018-11-081-3/+3
| | | | | | - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
* CMake: Fix for renamed NEWS fileEduard Braun2018-09-111-1/+1
| | | | (see eb2928ad13bd794e53b5631ffee997e48a764c51)
* Misc. typosluz.paz2018-01-081-1/+1
| | | Found via `codespell`
* Remove inkscape.file.svg (and inkscape.file.png)Eduard Braun2017-12-221-5/+0
| | | | | | | | It was added in 8aeb053f557456d83b60acdcf1446a6825a5aef6 but seems to have never been used. It was only referenced in inkscape.nsi (where it's not required) which broke when the file was moved in ce456d55bb3deee828dad9cdaf1f530194cae93c
* Misc. typosUnknown2017-11-071-2/+2
| | | | | | | | | | | | Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ```
* cmake: Add 'dist' target to create Windows .exe installerEduard Braun2017-07-231-2/+2
| | | | | | - 'dist-win-exe' allows to create a Windows .exe installer using NSIS - 'dist-win-exe-fast' has a bad compression ratio but is much faster and can be used for testing purposes
* NSIS: update for MSYS2 buildsEduard Braun2017-07-221-16/+19
| | | | (cherry picked from commit 68642e81c9df0c913a0e976bcbe40b2e2e2385f9)
* NSIS: Distribution directory can already be set on command lineEduard Braun2017-07-221-2/+2
| | | | | | Use 'makensis /DINKSCAPE_DIST_DIR=..\..\build\inkscape inkscape.nsi'. (cherry picked from commit 3534f9a0013a155a1d31e837e12e73eb8678dbb0)
* NSIS: Allow to set output filenanme on command lineEduard Braun2017-07-221-5/+10
| | | | | | Use 'makensis /DOutPath=C:\full\path\output.exe inkscape.nsi'. (cherry picked from commit 3b5261b9a77db009a279918356e8f71bcd7fe640)
* NSIS: update for git and cmakeEduard Braun2017-07-221-85/+37
| | | | | | | | - parse INKSCAPE_VERSION from values define in CMakeLists.txt - remove all revision strings - we typically do not build installers for development versions, so version numbers should be unique (cherry picked from commit be6e18bfb1c0b9dade32f3c1aa298f39d6313ab8)
* root dir tidying: cleanup inkscape iconsEduard Braun2017-07-161-1/+1
| | | | | | | - move inkscape.ico -> share/branding (it's an icon but it should not end up in an icon theme in share/icons, so this seemed like a better choice) and update depentans (.rc files and NSIS installer) - remove inkscape.png as it was only used by Doxyfile and is mostly redundant to the files in share/icons/application (todo: maybe re-create those files and include a 64x64 size) - use inkscape.svg in Doxyfile (confirmed working). It's a bit too large but looks much nicer than any of the smaller icons in share/icons/application (the recommended maximum size is 55 px height which looks ugly though and is obviously too small, the optimum seems to be somewhere around 70 px) - also remove one of the two flat icons in share/branding which were duplicates (the smaller file was kept but renamed)
* Packaging: Fix wrong working directory in shortcuts created by NSIS installerEduard Braun2017-04-261-2/+7
| | | | | Also fix manually defined INKSCAPE_DIST_DIR (bzr r15646)
* Fix ACLsEduard Braun2017-03-051-0/+0
| | | (bzr r15567)
* Packaging: Sort translations by name in Windows .exe and .msi installers ↵Eduard Braun2017-01-161-1/+61
| | | | | | | | | | | (before they were sorted by language code) This commit also adds functionality to automatically parse localized language names from the Inkscape .po file for the NSIS (.exe) installer Python scripts for Windows packaging are now Python 2/3 compatible and should always handle unicode characters properly. Fixed bugs: - https://launchpad.net/bugs/1654460 (bzr r15418)
* Packaging: Add option not to create a shortcut in the start menu and order ↵Eduard Braun2016-10-181-9/+14
| | | | | installation components slightlymore intuitive (bzr r15244.1.14)
* Packaging: Re-enable the option to select between "Full", "Optimal" and ↵Eduard Braun2016-10-181-8/+12
| | | | | | | "Minimal" translations in NSIS installer By default pre-select "Optimal" which disables all translations but the one selected by the user for the installer. (bzr r15244.1.13)
* Packaging: Make all available languages accessible in NSIS installerEduard Braun2016-10-181-218/+53
| | | | | | - Some code re-factoring to facilitate addition of new languages in future - Update all translation files (bzr r15244.1.12)
* Packaging: A whole lot of improvements for NSISEduard Braun2016-10-171-78/+117
| | | | | | | | | - Make the installation components much more robust (i.e. only install what they're supposed to and do not include the same files in different components) - As a result speed up installation times drastically - Offer "Python", "Extensions" and "Dictionaries" as additional (optional) components - A minimal installation can now be as small as 150 MB (compared to the full installation size of 300 MB; typical installation size is 230 MB) - update verision check to require NSIS 3.0 (bzr r15244.1.11)
* Packaging: Restore original Simplified Chinese translation from original bug ↵Eduard Braun2016-10-161-1/+1
| | | | | | | | | | report (at some point the wrong encoding was used destroying most characters) https://bugs.launchpad.net/inkscape/+bug/420177 Fixed bugs: - https://launchpad.net/bugs/420177 (bzr r15244.1.10)
* Packaging: Make NSIS use Unicode (nativley supported since version 3.0)Eduard Braun2016-10-161-15/+29
| | | | | This fixes a lot of issues with translations and makes handling of the language files much easier (bzr r15244.1.9)
* Packaging: Commit forgotten macro and fix the issue of leftover empty ↵Eduard Braun2016-10-121-5/+5
| | | | | directories in NSIS installer (bzr r15244.1.8)
* Packaging: Yet another round of fixes / improvements for NSIS installerEduard Braun2016-10-101-47/+84
| | | | | | | | | | | | | - Get the correct installation directory for Inkscape 64-bit - Implement a replacement for the custom MessageBox plug-in which is "is unsupported and not stable to use anymore" [1] - Fix .nsi file encoding (at least for now we build an ANSI installer so we can't use Unicode symbols) - Fix file properties of installer/uninstaller (e.g. it was claimed to be in Ukrainian language) - Add some information that is shown in the "Programs and Features" dialog (publisher, website, installation size) - Improve removal of user preferences - Attempt to remove residual files (notably .pyc files) and delete all empty directories on uninstall) [1] http://nsis.sourceforge.net/MessageBox_plug-in (bzr r15244.1.6)
* Packaging: More fixes for NSISEduard Braun2016-10-091-41/+66
| | | | | | | - Now supports 32-bit and 64-bit distributions - Tries to find the compiled Inkscape files for the distribution (btool vs. cmake) - Fully works with NSIS 3.0 now (bzr r15244.1.4)
* Packaging: move NSIS plugins and macros to /plugins and /macros subdirsEduard Braun2016-10-081-5/+5
| | | (bzr r15244.1.3)
* Packaging: Some initial fixes for NSISEduard Braun2016-10-081-6/+15
| | | (bzr r15244.1.2)
* [Bug #1604784] Portuguese translation - Windows installer.xande6ruz2016-08-021-2/+4
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1604784 (bzr r15031)
* Packaging. New Win32 installer Danish translation.scootergrisen2015-07-031-1/+3
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1470953 (bzr r14225)
* Translations. Icelandic translation update, new win32 installer, and new ↵Sveinn í Felli2015-03-121-1/+5
| | | | | | | | default template. Fixed bugs: - https://launchpad.net/bugs/1426423 (bzr r13996)
* Fix for bug #690255 (Rename te_IN.po to te.po).Nicolas Dufour2014-10-011-2/+2
| | | | | | Fixed bugs: - https://launchpad.net/bugs/690255 (bzr r13571)
* win32 nsis installer: fix portuguese brazil translation, add more inkscake ↵Adib Taraben2014-04-131-4/+15
| | | | | translations (bzr r13281)
* Translations. New Bengali/Bangladesh translation by Mahay Alam Khan.Nicolas Dufour2012-06-201-0/+2
| | | (bzr r11509)
* Packaging. Changing package date to 2012.Nicolas Dufour2012-03-141-1/+3
| | | | | Translations. New Latvian translation by Janis Eisaks. (bzr r11085)
* Packaging. New Greek translation of the Windows installer by Dimitris Spingos.Nicolas Dufour2011-07-111-0/+2
| | | (bzr r10444)
* Packaging. New Brazilian Portuguese NSH file. Set trunk package date to 2011.Nicolas Dufour2011-01-211-1/+3
| | | (bzr r10012)
* Added inkscape.com to Win32 installer (should have been included in 0.48).Chris Morgan2010-08-291-0/+1
| | | (bzr r9730)
* Translations. Adding Telugu in inkscape.nsi (win32 packaging).Nicolas Dufour2010-07-081-0/+4
| | | (bzr r9599)
* Win32 installer: removed the last insanity with language names and added ↵Chris Morgan2010-06-241-5/+7
| | | | | missing language auto-selection for Dutch and Simplified Chinese. (bzr r9535)
* Put Ukrainian translation into the Win32 installer.Chris Morgan2010-06-241-0/+2
| | | (bzr r9534)
* Win32 installer: fixed Gallegan/Galician insanity by making it all Galician ↵Chris Morgan2010-06-241-3/+3
| | | | | as it should be. (bzr r9533)
* Put Indonesian translation into the Win32 installer.Chris Morgan2010-06-241-0/+2
| | | (bzr r9532)
* Win32 installer: fixes for issues discovered in 0.48pre1.Chris Morgan2010-06-221-1/+14
| | | (bzr r9523)
* Dutch translation of installerKris De Gussem2010-06-201-0/+1
| | | (bzr r9513)
* Win32 uninstaller: remove empty directory lib/localeChris Morgan2010-04-031-0/+2
| | | (bzr r9285)
* Fixed and improved Win32 installer bzr revno detection with ↵Chris Morgan2010-03-121-35/+31
| | | | | inkscape-version.cpp. (bzr r9180)
* Win32 uninstaller: MD5 checksums need string comparison rather than int ↵Chris Morgan2010-03-121-1/+1
| | | | | comparison (bzr r9178)
* Win32 installer: added a smidgeon more error-proofing with BZR_REVISION if ↵Chris Morgan2010-03-111-0/+3
| | | | | INKSCAPE_VERSION is specified manually. (bzr r9176)
* Fixed Win32 installer since revision number reinstanted in ↵Chris Morgan2010-03-111-2/+2
| | | | | inkscape-version.cpp so it at least compiles. (bzr r9175)
* Fixed the Win32 uninstaller.Chris Morgan2010-03-081-2/+3
| | | (bzr r9168)
* Fixed Romanian's alphabetic location in inkscape.nsi.Chris Morgan2010-02-091-2/+2
| | | (bzr r9072)
* Specify Vim fold method for inkscape.nsiChris Morgan2010-01-281-2/+2
| | | (bzr r9026)