From e58e5da80d4b5f640caef0ebce000d1c7b65bd50 Mon Sep 17 00:00:00 2001 From: Wojcik Michal Date: Sat, 17 Aug 2019 21:27:35 +0200 Subject: [PATCH] Release v1.0.0 --- CI/CakeScripts/build.cake | 27 ++++++++------- .../Dialogs/CustomizeDialogOverwritten.wxs | 2 +- .../FiscalPrinterSimulatorInstaller.wixproj | 3 +- .../Product.wxs | 33 +++++++++++++------ .../Translations/EnglishLanguage.wxl | 6 ++++ .../Translations/PolishLanguage.wxl | 6 ++++ SourceCodes/FiscalPrinterSimulatorClient | 2 +- SourceCodes/FiscalPrinterSimulatorService | 2 +- 8 files changed, 55 insertions(+), 26 deletions(-) diff --git a/CI/CakeScripts/build.cake b/CI/CakeScripts/build.cake index 017eeb8..4ad0dbe 100644 --- a/CI/CakeScripts/build.cake +++ b/CI/CakeScripts/build.cake @@ -59,17 +59,22 @@ Task ("Build Fiscal Printer Simulator Service") Task ("Build Fiscal Printer Simulator Installer") .IsDependentOn ("Build Fiscal Printer Simulator Service") - .Does (() => { - MSBuild(WIX_InstallerSolutionPath, new MSBuildSettings { - Verbosity = verbosity ? Verbosity.Verbose : Verbosity.Minimal, - ToolVersion = MSBuildToolVersion.VS2019, - Configuration =configuration, - PlatformTarget = targetPlatform == "x64" ? PlatformTarget.x64 : PlatformTarget.x86, - EnvironmentVariables = new Dictionary{ - {"AppVersion",ReleaseVersion }, - {"BuildNumber", buildNumber } - } - }); + .Does (() => { + var msBuildTarget = targetPlatform == "x64" ? MSBuildPlatform.x64 : MSBuildPlatform.x86; + var msBuildVerbosity = verbosity ? Verbosity.Verbose : Verbosity.Minimal; + + MSBuild(WIX_InstallerSolutionPath, configurator => + configurator + .SetConfiguration(configuration) + .SetVerbosity(msBuildVerbosity) + .UseToolVersion(MSBuildToolVersion.VS2019) + .SetMSBuildPlatform(msBuildTarget) + .WithProperty("Version",ReleaseVersion+buildNumber) + .WithProperty("BuildNumber",buildNumber) + .WithProperty("Platform",targetPlatform) + ); + + }); Task ("EndBuild") diff --git a/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Dialogs/CustomizeDialogOverwritten.wxs b/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Dialogs/CustomizeDialogOverwritten.wxs index 217b635..9e28549 100644 --- a/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Dialogs/CustomizeDialogOverwritten.wxs +++ b/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Dialogs/CustomizeDialogOverwritten.wxs @@ -35,7 +35,7 @@ - + diff --git a/CI/WixInstaller/FiscalPrinterSimulatorInstaller/FiscalPrinterSimulatorInstaller.wixproj b/CI/WixInstaller/FiscalPrinterSimulatorInstaller/FiscalPrinterSimulatorInstaller.wixproj index 05d1db2..8accbfb 100644 --- a/CI/WixInstaller/FiscalPrinterSimulatorInstaller/FiscalPrinterSimulatorInstaller.wixproj +++ b/CI/WixInstaller/FiscalPrinterSimulatorInstaller/FiscalPrinterSimulatorInstaller.wixproj @@ -12,8 +12,7 @@ ..\..\..\Delivery\ obj\$(Platform)\ Setup.FiscalPrinterSimulator - 0.0.2 - $(AppVersion)$(BuildNumber) + 1.0.0 Version=$(Version) diff --git a/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Product.wxs b/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Product.wxs index baa19c6..8daedc1 100644 --- a/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Product.wxs +++ b/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Product.wxs @@ -42,6 +42,7 @@ CONTENT of Instalator: + @@ -62,6 +63,11 @@ CONTENT of Instalator: + + + + + @@ -72,9 +78,9 @@ CONTENT of Instalator: - + @@ -84,26 +90,33 @@ CONTENT of Instalator: - - + - - - - + + + + + + + + + + diff --git a/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Translations/EnglishLanguage.wxl b/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Translations/EnglishLanguage.wxl index 4b21de2..269447a 100644 --- a/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Translations/EnglishLanguage.wxl +++ b/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Translations/EnglishLanguage.wxl @@ -28,4 +28,10 @@ {\WixUI_Font_Title}Select the application's root folder Select the folder in which the Application will be installed + + Plugins + Plugins providing support for specific fiscal printer drivers. + [PL] Thermal + Plugin providing support for the Polish Thermal protocol. + \ No newline at end of file diff --git a/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Translations/PolishLanguage.wxl b/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Translations/PolishLanguage.wxl index b3d39bc..c45af46 100644 --- a/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Translations/PolishLanguage.wxl +++ b/CI/WixInstaller/FiscalPrinterSimulatorInstaller/Translations/PolishLanguage.wxl @@ -27,4 +27,10 @@ {\WixUI_Font_Title}Wybierz folder główny aplikacji Wybierz folder w którym zostanie zainstalowana Aplikacja + + Pluginy + Pluginy zapewniające obsługę konkretnych sterowników drukarek fiskalnych. + [PL] Thermal + Plugin zapewniający obsługę Polskiego protokołu Thermal. + \ No newline at end of file diff --git a/SourceCodes/FiscalPrinterSimulatorClient b/SourceCodes/FiscalPrinterSimulatorClient index d66927f..79c9ede 160000 --- a/SourceCodes/FiscalPrinterSimulatorClient +++ b/SourceCodes/FiscalPrinterSimulatorClient @@ -1 +1 @@ -Subproject commit d66927f63a8a07d1af3c3e0e01237ba92ccffc32 +Subproject commit 79c9edefaecfa49e8dbd4c563b25ff535fad4705 diff --git a/SourceCodes/FiscalPrinterSimulatorService b/SourceCodes/FiscalPrinterSimulatorService index c6889ad..0aca74c 160000 --- a/SourceCodes/FiscalPrinterSimulatorService +++ b/SourceCodes/FiscalPrinterSimulatorService @@ -1 +1 @@ -Subproject commit c6889addd4658f10545d3767a4aca6181c40fc00 +Subproject commit 0aca74c6a4418df0b961d3575e232bdc0c025af4