Changeset 363

Show
Ignore:
Timestamp:
02/26/06 23:50:08 (3 years ago)
Author:
hipplej
Message:

Made a few adjustments to the packaging stuff for win32.

Location:
trunk/pkg/win32
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/pkg/win32/bundle/bundle.nsi

    r362 r363  
    1010!define VIDALIA_NAME "Vidalia" 
    1111!define VIDALIA_EXEC "vidalia.exe" 
    12 !define VIDALIA_VERSION "0.0.1-alpha" 
     12!define VIDALIA_VERSION "0.0.1" 
    1313 
    1414!define TOR_NAME "Tor" 
     
    2222!define BUNDLE_REVISION "1" 
    2323 
    24 !define APPNAME "Vidalia-Tor-Privoxy Bundle" 
     24!define APPNAME "Vidalia-Tor-Privoxy_Bundle" 
    2525!define APPVERSION "${TOR_VERSION}-${VIDALIA_VERSION}" 
    2626!define PRODVERSION "0.0.1.0" ; Product version must be x.x.x.x 
    2727!define APPDESCRIPTION "${APPNAME} ${APPVERSION}" 
    28 !define INSTALLFILE "${APPNAME}_${APPVERSION}_install.exe" 
     28!define INSTALLFILE "${APPNAME}_${APPVERSION}.exe" 
    2929!define BUNDLE_UNINSTALLER "vidalia-bundle-uninstall.exe" 
    3030 
     
    134134    SectionEnd 
    135135 
    136     Section "OpenSSL 0.9.7e" TorOpenSSL 
     136    Section "OpenSSL 0.9.8a" TorOpenSSL 
    137137       SectionIn 1 2 
    138138       SetOutPath "$INSTDIR\Tor" 
     
    148148       File "tor\${TOR_VERSION}\Documents\rend-spec.txt" 
    149149       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" 
    150152       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" 
    151158       File "tor\${TOR_VERSION}\Documents\stylesheet.css" 
    152159       File "tor\${TOR_VERSION}\Documents\tor-reference.html" 
     
    229236    Section "Run At Startup" VidaliaRunAtStartup 
    230237      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}"' 
    232239    SectionEnd     
    233240SectionGroupEnd 
  • trunk/pkg/win32/vidalia.nsi

    r362 r363  
    99;--------------------------------- 
    1010; Global Definitions 
    11 !define APPVERSION "0.0.1-alpha" 
     11!define APPVERSION "0.0.1" 
    1212!define PRODVERSION "0.0.1.0" ; Unfortunately, product version must be x.x.x.x 
    1313!define APPNAME "Vidalia" 
    1414!define APPEXEC "vidalia.exe" 
    15 !define APPDESCRIPTION "Vidalia Tor Controller ${APPVERSION}" 
     15!define APPDESCRIPTION "${APPNAME} ${APPVERSION}" 
    1616!define AUTHOR "Matt Edman, Justin Hipple" 
    17 !define INSTALLFILE "${APPNAME}_${APPVERSION}_install.exe" 
     17!define INSTALLFILE "${APPNAME}_${APPVERSION}.exe" 
    1818 
    1919 
     
    122122Section "Run At Startup" RunAtStartup 
    123123  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}"' 
    125125SectionEnd 
    126126