Changeset 363
- Timestamp:
- 02/26/06 23:50:08 (3 years ago)
- Location:
- trunk/pkg/win32
- Files:
-
- 2 modified
-
bundle/bundle.nsi (modified) (5 diffs)
-
vidalia.nsi (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pkg/win32/bundle/bundle.nsi
r362 r363 10 10 !define VIDALIA_NAME "Vidalia" 11 11 !define VIDALIA_EXEC "vidalia.exe" 12 !define VIDALIA_VERSION "0.0.1 -alpha"12 !define VIDALIA_VERSION "0.0.1" 13 13 14 14 !define TOR_NAME "Tor" … … 22 22 !define BUNDLE_REVISION "1" 23 23 24 !define APPNAME "Vidalia-Tor-Privoxy Bundle"24 !define APPNAME "Vidalia-Tor-Privoxy_Bundle" 25 25 !define APPVERSION "${TOR_VERSION}-${VIDALIA_VERSION}" 26 26 !define PRODVERSION "0.0.1.0" ; Product version must be x.x.x.x 27 27 !define APPDESCRIPTION "${APPNAME} ${APPVERSION}" 28 !define INSTALLFILE "${APPNAME}_${APPVERSION} _install.exe"28 !define INSTALLFILE "${APPNAME}_${APPVERSION}.exe" 29 29 !define BUNDLE_UNINSTALLER "vidalia-bundle-uninstall.exe" 30 30 … … 134 134 SectionEnd 135 135 136 Section "OpenSSL 0.9. 7e" TorOpenSSL136 Section "OpenSSL 0.9.8a" TorOpenSSL 137 137 SectionIn 1 2 138 138 SetOutPath "$INSTDIR\Tor" … … 148 148 File "tor\${TOR_VERSION}\Documents\rend-spec.txt" 149 149 File "tor\${TOR_VERSION}\Documents\control-spec.txt" 150 File "tor\${TOR_VERSION}\Documents\dir-spec.txt" 151 File "tor\${TOR_VERSION}\Documents\socks-extensions.txt" 150 152 File "tor\${TOR_VERSION}\Documents\tor-doc-win32.html" 153 File "tor\${TOR_VERSION}\Documents\tor-doc-server.html" 154 File "tor\${TOR_VERSION}\Documents\tor-doc-osx.html" 155 File "tor\${TOR_VERSION}\Documents\tor-doc-unix.html" 156 File "tor\${TOR_VERSION}\Documents\tor-hidden-service.html" 157 File "tor\${TOR_VERSION}\Documents\tor-switchproxy.html" 151 158 File "tor\${TOR_VERSION}\Documents\stylesheet.css" 152 159 File "tor\${TOR_VERSION}\Documents\tor-reference.html" … … 229 236 Section "Run At Startup" VidaliaRunAtStartup 230 237 SectionIn 1 2 231 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "${VIDALIA_NAME}" "$INSTDIR\Vidalia\${VIDALIA_EXEC}"238 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "${VIDALIA_NAME}" '"$INSTDIR\Vidalia\${VIDALIA_EXEC}"' 232 239 SectionEnd 233 240 SectionGroupEnd -
trunk/pkg/win32/vidalia.nsi
r362 r363 9 9 ;--------------------------------- 10 10 ; Global Definitions 11 !define APPVERSION "0.0.1 -alpha"11 !define APPVERSION "0.0.1" 12 12 !define PRODVERSION "0.0.1.0" ; Unfortunately, product version must be x.x.x.x 13 13 !define APPNAME "Vidalia" 14 14 !define APPEXEC "vidalia.exe" 15 !define APPDESCRIPTION " Vidalia Tor Controller${APPVERSION}"15 !define APPDESCRIPTION "${APPNAME} ${APPVERSION}" 16 16 !define AUTHOR "Matt Edman, Justin Hipple" 17 !define INSTALLFILE "${APPNAME}_${APPVERSION} _install.exe"17 !define INSTALLFILE "${APPNAME}_${APPVERSION}.exe" 18 18 19 19 … … 122 122 Section "Run At Startup" RunAtStartup 123 123 SectionIn 1 2 124 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "${APPNAME}" "$INSTDIR\${APPEXEC}"124 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "${APPNAME}" '"$INSTDIR\${APPEXEC}"' 125 125 SectionEnd 126 126
