Skip to content

Commit

Permalink
Preparations for 5th Beta rollout
Browse files Browse the repository at this point in the history
- Updated Version String
- Updated NSIS Installer for Shortcuts and compatibility with older
installs
  • Loading branch information
JulienKluge committed Mar 11, 2015
1 parent d806cb0 commit 5b2ae75
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions App/AssemblyInfo1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
// Revision
//
#if (DEBUG)
[assembly: AssemblyVersion("0.40.*")]
[assembly: AssemblyVersion("0.50.*")]
#else
[assembly: AssemblyVersion("0.40.0.0")]
[assembly: AssemblyVersion("0.50.0.0")]
#endif
11 changes: 11 additions & 0 deletions Deploy/SPEdit.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ File Xceed.Wpf.AvalonDock.dll
File Xceed.Wpf.AvalonDock.Themes.Metro.dll
File GPLv3.txt

IfFileExists $INSTDIR\options_0.dat OptionsExist OptionsDoesNotExist
OptionsExist:
Delete $INSTDIR\options_0.dat
OptionsDoesNotExist:

CreateDirectory "$INSTDIR\sourcepawn"
CreateDirectory "$INSTDIR\sourcepawn\errorfiles"
CreateDirectory "$INSTDIR\sourcepawn\scripts"
Expand Down Expand Up @@ -85,6 +90,12 @@ SectionEnd



Section "Desktop Shortcut" prog04
SectionIn 1
CreateShortCut "$DESKTOP\SPEdit.lnk" "$INSTDIR\Spedit.exe" ""
SectionEnd



Section "Uninstall"

Expand Down

0 comments on commit 5b2ae75

Please sign in to comment.