Skip to content

Commit

Permalink
Version 1.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pipe01 committed May 25, 2020
1 parent cb1b7d7 commit 360b471
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Legendary Rune Maker/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]

[assembly: AssemblyVersion("1.3.7")]
[assembly: AssemblyVersion("1.3.8")]
[assembly: AssemblyFileVersion("1.0.0.0")]

[assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config")]
Expand Down
12 changes: 6 additions & 6 deletions pack_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


def ziprelease(silent=False):
basedir = "./Legendary Rune Maker/bin/Release"
basedir = "./Legendary Rune Maker/bin/Release/net462"

assert os.path.isdir(basedir)
with closing(ZipFile("Release.zip", "w", ZIP_DEFLATED)) as z:
Expand Down Expand Up @@ -45,12 +45,12 @@ def setSetupVersion(version):

print("Building version " + getVersion() + "...")

code = os.system("msbuild /p:Configuration=Release /v:m")
# code = os.system("msbuild /p:Configuration=Release")

if (code != 0):
print("Build failed!")
input("Press Enter to continue...")
exit()
# if (code != 0):
# print("Build failed!")
# input("Press Enter to continue...")
# exit()

print("Packing...")
ziprelease(True)
Expand Down
4 changes: 2 additions & 2 deletions setup/script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Legendary Rune Maker"
#define MyAppVersion "1.3.7"
#define MyAppVersion "1.3.8"
#define MyAppPublisher "pipe01"
#define MyAppURL "https://github.com/pipe01"
#define MyAppExeName "Legendary Rune Maker.exe"
Expand Down Expand Up @@ -41,7 +41,7 @@ Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescrip
Name: "StartMenuEntry" ; Description: "{cm:StartAtStartup}" ; GroupDescription: "{cm:AdditionalIcons}"; MinVersion: 4,4; Flags: unchecked

[Files]
Source: "..\Legendary Rune Maker\bin\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "..\Legendary Rune Maker\bin\Release\net462\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[UninstallDelete]
Expand Down

0 comments on commit 360b471

Please sign in to comment.