Changeset 39 for trunk/OpenYahtzee


Ignore:
Timestamp:
09/01/07 22:15:13 (6 years ago)
Author:
guyru
Message:

* empty log message *

Location:
trunk/OpenYahtzee
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/OpenYahtzee/ChangeLog

    r32 r39  
     1$Header$ 
     2 
    13OPEN YAHTZEE CHANGELOG 
     4 
    25This changelog was started only during the development of Open Yahtzee 1.6 
    36so if you are interested in the changelog of older versions, take a look  
     
    811-Added an undo button. 
    912-Improved Windows portability. 
     13-New icons for the program. 
     14-Ability to check for updates via the web. 
    1015-Added database initialization, so when the game doesn't find the data  
    1116 it needs in the database it just goes back to default values. 
  • trunk/OpenYahtzee/TODO

    r38 r39  
     1$Header$ 
     2 
    13TODO FILE 
     4 
     5- Set a better icon for the windows installer 
    26 
    37DONE: 
  • trunk/OpenYahtzee/windows_installer.nsi

    r27 r39  
    66;  
    77;-------------------------------- 
    8  
     8!define version 1.6.0 
    99;-------------------------------- 
    1010;Include Modern UI 
     
    1515 
    1616; The name of the installer 
    17 Name "OpenYahtzee 1.5.1" 
     17Name "OpenYahtzee ${version}" 
    1818 
    1919; The file to write 
    20 OutFile "OpenYahtzee-1.5.1.exe" 
     20OutFile "OpenYahtzee-${version}.exe" 
    2121 
    2222; The default installation directory 
     
    3131InstallDirRegKey HKLM "Software\OpenYahtzee" "Install_Dir" 
    3232 
     33; set the icon for installer 
     34Icon "${NSISDIR}\Contrib\Graphics\Icons\orange-install.ico" 
    3335;-------------------------------- 
    3436;Interface Settings 
     
    5052 
    5153; The stuff to install 
    52 Section "OpenYahtzee-1.5.1 (required)" SecOpenYahtzee 
     54Section "OpenYahtzee-${version} (required)" SecOpenYahtzee 
    5355 
    5456  SectionIn RO 
     
    6466  File "README.txt" 
    6567  File "COPYING.txt" 
     68  File "icon32.ico" 
    6669   
    6770  ; Write the installation path into the registry 
     
    8285  CreateDirectory "$SMPROGRAMS\OpenYahtzee" 
    8386  CreateShortCut "$SMPROGRAMS\OpenYahtzee\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0 
    84   CreateShortCut "$SMPROGRAMS\OpenYahtzee\OpenYahtzee.lnk" "$INSTDIR\openyahtzee.exe" "" "$INSTDIR\openyahtzee.exe" 0 
     87  CreateShortCut "$SMPROGRAMS\OpenYahtzee\OpenYahtzee.lnk" "$INSTDIR\openyahtzee.exe" "" "$INSTDIR\icon32.ico" 0 
    8588   
    8689SectionEnd 
     
    119122  Delete "COPYING.txt" 
    120123  Delete "README.txt" 
     124  Delete "icon32.ico" 
    121125  Delete $INSTDIR\uninstall.exe 
    122126 
Note: See TracChangeset for help on using the changeset viewer.