Commit graph

677 commits

Author SHA1 Message Date
kichik
ce03b797ba typo fixed
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3313 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-24 22:50:22 +00:00
joostverburg
48fcee1824 new example
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3309 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-24 17:51:58 +00:00
kichik
a6046b428a Made StartRadioButtons not depend on $1 and added an option to work with multiple "radio buttons" blocks
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3308 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-24 16:30:22 +00:00
kichik
0c7981ef60 - Disabled DirShow as it hasn't been working since b0 which was released more than a year ago.
- Rewrote token placement checks to prevent a crash with:
"Section uninstall
InstallDir something"
and to make it a bit more comfortable.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3305 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-24 15:54:06 +00:00
eccles
bbfd02e585 ${Unless} ${Cmd} ... was not working.
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3293 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-20 15:01:36 +00:00
kichik
cbab2ce554 Oops, that was a test file
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3290 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-18 14:00:33 +00:00
kichik
d6d78591f0 Added an example that demonstrates commands related to silent installers
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3289 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-17 23:57:19 +00:00
kichik
672e695976 - Added SS_NOPREFIX for the static control above the install log so both will show the same when an ampersand is present in the string
- Added another parameter for Name. It will be used in places where doubled ampersands are required for text to render as expected. Use it if you have an ampersand in your name. See the updated documentation about the Name command for more information about usage.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3288 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-17 23:22:14 +00:00
eccles
39e524b732 LogicLib added to distribution.
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3281 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-14 01:15:44 +00:00
eccles
2d8918e586 Some tidying and documentation.
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3280 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-14 01:13:32 +00:00
eccles
009e409276 2.4:
- Added Switch..Case*/Default..EndSwitch: similar to Select but behaves just like the C version (thanks to kichik).
- Added unsigned integer comparisons.
- Added 64-bit integer comparisons.
- Added case-sensitive string tests.
- Added other string relational comparisons.
- Added section flag tests.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3279 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-14 00:31:25 +00:00
eccles
8a66228b7c 2.3:
- Much reworking and refactoring.
- Added built-in support for the rest of NSIS's conditional tests.
- Added ability to use any NSIS conditional command in a normal If type statement.
- Optimised the code produced by If (fewer Goto's).
- Added statement similar to If that works in reverse: "Unless".
- Fixed bug where using Continue in a Do..LoopUntil loop went to the top of the loop and not the loop condition.
- Added DoWhile..Loop and Do..LoopWhile loop varieties.
- Optimised the code prodiced by Select (fewer Goto's).
- Renamed Case_Else to CaseElse.
- CaseElse can also be called Default (for the C-minded).


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3278 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-14 00:29:15 +00:00
eccles
d794979b2f 2.1:
- Added continue and break labels to repeat type statements.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3276 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-14 00:25:22 +00:00
eccles
46297fa6cd NSIS Logic Library - dselkirk's logiclib 2.0:
- Complete rewrite using new push/pop system.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3275 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-14 00:23:56 +00:00
eccles
2c892dde45 NSIS Logic Library - dselkirk's logiclib 1.3 (1.2 seems to have gone walkabout):
- Changed library name to Lib.
- Allow for 5 statements deep without use of name variable.
- Added If..ElseIf..Else..Endif statements.
- Fixed maximum allow statements.
- Now allows 10 statement depth.
- Condensed code.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3274 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-14 00:22:02 +00:00
eccles
a453e3281e NSIS Logic Library - dselkirk's selectlib 1.1:
- Added simplified macros and removed NAME requirement


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3273 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-14 00:19:48 +00:00
eccles
0530c41b6d NSIS Logic Library - dselkirk's original selectlib 1.0
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3272 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-14 00:18:16 +00:00
joostverburg
e53d122cfd file association fix
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3268 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-11 21:05:30 +00:00
joostverburg
b1c888115c updated reserve file info
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3266 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-09 19:43:30 +00:00
eccles
6b73b0e490 - Added new control type "Button"
- Added new flag "NOTIFY"
- Added new flag "NOWORDWRAP" for multi-line text boxes
- Reduced size down to 12K


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3254 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-04 22:12:25 +00:00
joostverburg
85fef2cde5 file association, section macros, fixes
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3251 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-04 16:28:13 +00:00
joostverburg
dff2e4afaf typo
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3249 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-03 15:43:22 +00:00
kichik
e33b064635 another spelling mistake (recommAnded)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3248 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-03 12:30:11 +00:00
zarg
1359dfb8e6 Speeling mishtake =)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3247 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-02 22:43:19 +00:00
kichik
371dbe14af missed Install_Dir
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3245 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-02 12:10:17 +00:00
joostverburg
6e5f672b74 update/uninstall CVS data
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3241 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-01 22:47:23 +00:00
kichik
94232168f5 fixed typo and added lzma source code
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3239 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-01 11:36:04 +00:00
joostverburg
edbc22d642 section structure, file associations, shell extensions
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3222 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-27 21:29:05 +00:00
icemank
77b371896a Added context menu method for choosing compressor.
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3212 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-25 21:07:51 +00:00
kichik
1dad9c938d Applied patch #849000 - New sections macros for mutually exclusive section selection by Tim Gallagher
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3209 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-25 17:18:45 +00:00
joostverburg
1527ea2f1a Modern UI 1.68
* New settings for extra space for title and text on Welcome page and Finish page.
* Improved handling of verbose settings. Define MUI_VERBOSE the set the Modern UI verbose level (1-4).
* Language file string for uninstaller reboot information
* Setting for folder validation in leave function
* Fixed finish page text settings for multiple pages


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3201 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-24 19:50:01 +00:00
kichik
594c3ed0f6 - First LZMA enhanced NSIS version - experimental
- Added SetCompressorDictSize (only works for LZMA)
- Added SetCompressionLevel (only "works" for zlib and bzip2) - doesn't work for now
- Section is only supposed to get 4 parameters if /o is specified
- Updated version numbers


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3190 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-24 00:08:58 +00:00
joostverburg
b2cc8876b9 test GetFunctionAddress too
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3181 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-19 21:45:22 +00:00
joostverburg
c2fce2e62a missing dir, function update
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3179 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-19 21:24:50 +00:00
kichik
8d0f6ab171 Chapter1.html no longer comes with the default package
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3172 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-19 14:08:06 +00:00
kichik
add6fa839b graphics path changed
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3171 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-19 13:51:45 +00:00
kichik
8cd728c7d4 Removed "(CVS)" from version
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3169 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-19 13:21:14 +00:00
kichik
10f50ee6b2 INI file missing
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3157 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-18 11:39:52 +00:00
joostverburg
f41951c259 UpgradeDLL include file, removed old check
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3131 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-12 17:35:04 +00:00
joostverburg
e4222218a3 no need for makensis.htm anymore
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3122 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-10 18:51:23 +00:00
joostverburg
a37ec3c54c remove docs
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3121 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-10 18:48:48 +00:00
joostverburg
14be92223d MUI Readme image
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3119 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-10 18:43:30 +00:00
joostverburg
d77e30386a start menu variable > page macro parameter
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3118 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-10 13:21:22 +00:00
ramon18
359868c88e Reverted "Examples\Modern UI\StartMenu.nsi" and "Plugins\StartMenu.dll" to previous version, little size optimization
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3117 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-09 23:10:04 +00:00
joostverburg
8d7ae56749 removed debug stuff
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3116 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-09 23:03:36 +00:00
ramon18
48a62f51e8 Added new function LockWindow for flickering problems workaround, fixed crash on NSISdl, fixed focus button redraw
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3115 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-09 22:45:25 +00:00
joostverburg
a97fc1a9b2 - Improved and changed text settings
- ID for Start Menu Folder pages, easier to use multiple pages
- Language not written to registry after running uninstaller
- Fixed uninstaller auto close
- Documentation fixes
- Cleanup


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3114 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-09 22:12:58 +00:00
joostverburg
75e5121276 HTML Help documentation
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3107 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-06 15:05:27 +00:00
kichik
10c82bd2a9 No need for output from cvsdata.nsi unless it's an error (working this time)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3084 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-01 18:42:35 +00:00
kichik
21ecbb7198 No need for output from cvsdata.nsi unless it's an error
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3083 212acab6-be3b-0410-9dea-997c60f758d6
2003-11-01 18:37:34 +00:00