~ubuntu-branches/ubuntu/wily/gigedit/wily-proposed

« back to all changes in this revision

Viewing changes to win32/gigedit.nsi

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2011-02-08 23:43:24 UTC
  • mfrom: (3.1.2 natty)
  • Revision ID: james.westby@ubuntu.com-20110208234324-y4etux3ihk36apjf
Tags: 0.2.0-1
* Upload to unstable.
* debian/gbp.conf: Set sign-tags to True.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
; gigedit Windows installer
2
2
 
3
3
; The name of the installer
4
 
Name "gigedit 0.1.1"
 
4
Name "gigedit 0.2.0"
5
5
 
6
6
; The file to write
7
 
OutFile "gigedit_0_1_1_setup.exe"
 
7
OutFile "gigedit_0_2_0_setup.exe"
8
8
 
9
9
; The default installation directory
10
10
InstallDir $PROGRAMFILES\gigedit
17
17
;--------------------------------
18
18
;Version Information
19
19
 
20
 
  VIProductVersion "0.1.1.0"
 
20
  VIProductVersion "0.2.0.0"
21
21
  VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "gigedit"
22
22
  VIAddVersionKey /LANG=${LANG_ENGLISH} "Comments" "a Gigasampler file editor"
23
23
  VIAddVersionKey /LANG=${LANG_ENGLISH} "CompanyName" "The LinuxSampler Project"
24
24
  VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalTrademarks" ""
25
25
  VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "� 2006,2007 Andreas Persson"
26
 
  VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "gigedit 0.1.1 installer"
27
 
  VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "0.1.1"
 
26
  VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "gigedit 0.2.0 installer"
 
27
  VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "0.2.0"
28
28
 
29
29
;--------------------------------
30
30
 
73
73
;--------------------------------
74
74
 
75
75
; The stuff to install
76
 
Section "gigedit 0.1.1"
 
76
Section "gigedit 0.2.0"
77
77
 
78
78
  SectionIn RO
79
79
 
92
92
  File ..\AUTHORS
93
93
 
94
94
  ; Write the uninstall keys for Windows
95
 
  WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\gigedit" "DisplayName" "gigedit 0.1.1"
 
95
  WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\gigedit" "DisplayName" "gigedit 0.2.0"
96
96
  WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\gigedit" "UninstallString" '"$INSTDIR\uninstall.exe"'
97
97
  WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\gigedit" "NoModify" 1
98
98
  WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\gigedit" "NoRepair" 1
105
105
 
106
106
  CreateDirectory "$SMPROGRAMS\gigedit"
107
107
  CreateShortCut "$SMPROGRAMS\gigedit\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
108
 
  CreateShortCut "$SMPROGRAMS\gigedit\gigedit 0.1.1.lnk" "$INSTDIR\gigedit.exe" "" "$INSTDIR\gigedit.exe" 0
 
108
  CreateShortCut "$SMPROGRAMS\gigedit\gigedit 0.2.0.lnk" "$INSTDIR\gigedit.exe" "" "$INSTDIR\gigedit.exe" 0
109
109
 
110
110
SectionEnd
111
111