Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Commit

Permalink
update Version
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSwerik committed May 13, 2020
1 parent 6859b60 commit 4661b6f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Inno Config.iss
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 2 additions & 4 deletions RedEye.UI/src/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 4661b6f

Please sign in to comment.