From 4661b6f4f9fa169de4fcb342647e8efd6ca349db Mon Sep 17 00:00:00 2001 From: TheSwerik Date: Wed, 13 May 2020 14:18:01 +0200 Subject: [PATCH] update Version --- Inno Config.iss | 2 +- RedEye.UI/src/MainWindow.xaml.cs | 6 ++---- appveyor.yml | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Inno Config.iss b/Inno Config.iss index e2561cff..6f67be74 100644 --- a/Inno Config.iss +++ b/Inno Config.iss @@ -1,6 +1,6 @@ ; Variables: #define MyAppName "RedEye" -#define MyAppVersion "1.4.0" +#define MyAppVersion "1.4.1" #define MyAppPublisher "Swerik" #define MyAppURL "https://github.com/TheSwerik/RedEye" #define MyAppExeName "RedEye.exe" diff --git a/RedEye.UI/src/MainWindow.xaml.cs b/RedEye.UI/src/MainWindow.xaml.cs index 7852f80b..68d85484 100644 --- a/RedEye.UI/src/MainWindow.xaml.cs +++ b/RedEye.UI/src/MainWindow.xaml.cs @@ -20,8 +20,7 @@ namespace RedEye { public partial class MainWindow { - private static readonly string Path = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures) + - @"\RedEye\Sources"; + private static readonly string Path = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures) + @"\RedEye\Sources"; private readonly Camera _camera; private readonly EnumerableImage _images; @@ -92,8 +91,7 @@ private void Window_OnSizeChanged(object sender, SizeChangedEventArgs e) ); } - private void SaveButton_OnClick(object sender, RoutedEventArgs e) => - Dispatcher.BeginInvoke((Action) SavePNG, DispatcherPriority.ContextIdle); + private void SaveButton_OnClick(object sender, RoutedEventArgs e) => Dispatcher.BeginInvoke((Action) SavePNG, DispatcherPriority.ContextIdle); // Helper Methods: private void ClearCanvas() diff --git a/appveyor.yml b/appveyor.yml index 9b0b2aff..f954e1f2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ environment: - my_version_number: 1.4.0 # DONT FORGET TO CHANGE IS IN THE ISS FILE + my_version_number: 1.4.1 # DONT FORGET TO CHANGE IS IN THE ISS FILE application_name: RedEye # DONT FORGET TO CHANGE IS IN THE ISS FILE project_name: RedEye.UI