diff --git a/Inno Config.iss b/Inno Config.iss index feb4da4f..c106e675 100644 --- a/Inno Config.iss +++ b/Inno Config.iss @@ -1,6 +1,6 @@ ; Variables: #define MyAppName "RedEye" -#define MyAppVersion "1.1.2" +#define MyAppVersion "1.1.3" #define MyAppPublisher "Swerik" #define MyAppURL "https://github.com/TheSwerik/RedEye" #define MyAppExeName "RedEye.exe" diff --git a/RedEye.Backend/src/Util/ImageUtil.cs b/RedEye.Backend/src/Util/ImageUtil.cs index 8e357ef9..633ae4db 100644 --- a/RedEye.Backend/src/Util/ImageUtil.cs +++ b/RedEye.Backend/src/Util/ImageUtil.cs @@ -27,7 +27,6 @@ public static Image EyeTextureImage(Rectangle rect) var eye = new Image {Source = EyeImage}; Canvas.SetLeft(eye, rect.X + (rect.Width - eye.Source.Width) / 2); Canvas.SetTop(eye, rect.Y + (rect.Height - eye.Source.Height) / 2 + VOffset); - // TODO bind size to windowsize return eye; } diff --git a/RedEye.UI/src/MainWindow.xaml.cs b/RedEye.UI/src/MainWindow.xaml.cs index 0beb4b30..10520e9b 100644 --- a/RedEye.UI/src/MainWindow.xaml.cs +++ b/RedEye.UI/src/MainWindow.xaml.cs @@ -59,6 +59,7 @@ private void RadioButtonCamera_OnChecked(object sender, RoutedEventArgs e) { DeviceBox_OnSelectionChanged(null, null); NextButton.Visibility = Visibility.Hidden; + DeviceBox.Visibility = Visibility.Visible; } private void DeviceBox_OnSelectionChanged(object? sender, SelectionChangedEventArgs? e) @@ -120,6 +121,7 @@ private void SwitchToImage() NextButton_OnClick(null, null); NextButton.Visibility = Visibility.Visible; + DeviceBox.Visibility = Visibility.Hidden; } private void DetectAsync() { diff --git a/appveyor.yml b/appveyor.yml index f30a41d1..7a389a2c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ environment: - my_version_number: 1.1.2 # DONT FORGET TO CHANGE IS IN THE ISS FILE + my_version_number: 1.1.3 # 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