Skip to content

Commit

Permalink
Bump to v0.2.3 and fix installer
Browse files Browse the repository at this point in the history
  • Loading branch information
amoeba committed Jul 20, 2019
1 parent 037ce6e commit 59ef8d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
!define APPNAME "TownCrier"
!define GUID "{F86E1BAE-C2F8-4060-9B98-CD74EB41EB6E}"
!define SURROGATE "{71A69713-6593-47EC-0002-0000000DECA1}"
!define DLL "TownCrier_v0.2.dll"
!define DLL "TownCrier.dll"


##### Settings
OutFile "InstallTownCrier_v0.2.exe"
OutFile "InstallTownCrier_v0.2.3.exe"
InstallDir "$PROGRAMFILES\${APPNAME}"


Expand All @@ -25,13 +25,13 @@ Section

SetOutPath $INSTDIR
File "bin\Release\${DLL}"
WriteUninstaller $INSTDIR\UninstallTownCrier.exe
WriteUninstaller $INSTDIR\Uninstall.exe

# Registry
WriteRegStr HKLM "SOFTWARE\Decal\Plugins\${GUID}" "" "${APPNAME}"
WriteRegStr HKLM "SOFTWARE\Decal\Plugins\${GUID}" "Assembly" "${DLL}"
WriteRegDWORD HKLM "SOFTWARE\Decal\Plugins\${GUID}" "Enabled" 0x01
WriteRegStr HKLM "SOFTWARE\Decal\Plugins\${GUID}" "Object" "${APPNAME}"
WriteRegStr HKLM "SOFTWARE\Decal\Plugins\${GUID}" "Object" "${APPNAME}.PluginCore"
WriteRegStr HKLM "SOFTWARE\Decal\Plugins\${GUID}" "Path" "$INSTDIR"
WriteRegStr HKLM "SOFTWARE\Decal\Plugins\${GUID}" "Surrogate" "${SURROGATE}"

Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.2.2")]
[assembly: AssemblyFileVersion("0.2.2")]
[assembly: AssemblyVersion("0.2.3")]
[assembly: AssemblyFileVersion("0.2.3")]

0 comments on commit 59ef8d5

Please sign in to comment.