diff --git a/Khernet.Installer/KhernetInstaller.iss b/Khernet.Installer/KhernetInstaller.iss index 478ab8f..9c39893 100644 --- a/Khernet.Installer/KhernetInstaller.iss +++ b/Khernet.Installer/KhernetInstaller.iss @@ -7,7 +7,7 @@ #include #define ApplicationName "Khernet" -#define CurrentVersion "0.19.0.0" +#define CurrentVersion "0.20.0.0" #define AppDirectoryName "khernet-app" #define SQLScript "SAVE_TEXT_MESSAGE.sql" #define IzarcDirectory "izarc" @@ -20,7 +20,7 @@ [Setup] AppName={#ApplicationName} AppVersion={#CurrentVersion} -VersionInfoCopyright=Copyright © 2021 +VersionInfoCopyright=Copyright © 2022 VersionInfoVersion={#CurrentVersion} VersionInfoProductVersion={#CurrentVersion} WizardStyle=modern diff --git a/Khernet.UI/Khernet.UI.Presentation/Properties/AssemblyInfo.cs b/Khernet.UI/Khernet.UI.Presentation/Properties/AssemblyInfo.cs index ba48ab2..a64a5b7 100644 --- a/Khernet.UI/Khernet.UI.Presentation/Properties/AssemblyInfo.cs +++ b/Khernet.UI/Khernet.UI.Presentation/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Khernet")] -[assembly: AssemblyCopyright("Copyright © 2021")] +[assembly: AssemblyCopyright("Copyright © 2022")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -19,5 +19,5 @@ ResourceDictionaryLocation.SourceAssembly )] -[assembly: AssemblyVersion("0.19.0.0")] -[assembly: AssemblyFileVersion("0.19.0.0")] +[assembly: AssemblyVersion("0.20.0.0")] +[assembly: AssemblyFileVersion("0.20.0.0")] diff --git a/KhernetUpdater.xml b/KhernetUpdater.xml index d0849af..5d22152 100644 --- a/KhernetUpdater.xml +++ b/KhernetUpdater.xml @@ -1,7 +1,7 @@ - 0.19.0.0 - https://github.com/lemalcs/Khernet/releases/download/v0.19.0.0/KhernetInstaller-0.19.0.0.exe + 0.20.0.0 + https://github.com/lemalcs/Khernet/releases/download/v0.20.0.0/KhernetInstaller-0.20.0.0.exe /SP- /silent /noicons /NOCANCEL /dir="%path%" https://github.com/lemalcs/Khernet/releases/latest true diff --git a/build.bat b/build.bat index 1695fde..81ab477 100644 --- a/build.bat +++ b/build.bat @@ -5,7 +5,7 @@ echo Starting build... echo ------------------------------------------------------------- rem Set this to Release or Debug values -set dotnetConfiguration=Debug +set dotnetConfiguration=Release rem Build core Resources\nuget.exe restore Khernet.Core\Khernet.Core.sln @@ -20,7 +20,7 @@ cd Khernet.Installer "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" KhernetInstaller.iss rem Copy final installer to bin directory -set mainApp_path=bin\KhernetInstaller-0.19.0.0.exe +set mainApp_path=bin\KhernetInstaller-0.20.0.0.exe set installerDest=..\bin\Khernet.Installer if not exist %installerDest% mkdir %installerDest% if exist %mainApp_path% copy %mainApp_path% %installerDest%