diff --git a/NebulaAuth.sln b/NebulaAuth.sln index f755fa3..bb80a76 100644 --- a/NebulaAuth.sln +++ b/NebulaAuth.sln @@ -23,6 +23,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "changelog", "changelog", "{ changelog\1.4.9.html = changelog\1.4.9.html changelog\1.5.0.html = changelog\1.5.0.html changelog\1.5.1.html = changelog\1.5.1.html + changelog\1.5.2.html = changelog\1.5.2.html EndProjectSection EndProject Global diff --git a/NebulaAuth/Core/DialogsController.cs b/NebulaAuth/Core/DialogsController.cs index fb9e70d..f7047a7 100644 --- a/NebulaAuth/Core/DialogsController.cs +++ b/NebulaAuth/Core/DialogsController.cs @@ -5,7 +5,6 @@ using NebulaAuth.Model.Entities; using NebulaAuth.View; using NebulaAuth.View.Dialogs; using NebulaAuth.ViewModel.Other; -using static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel; namespace NebulaAuth.Core; diff --git a/NebulaAuth/Core/UpdateManager.cs b/NebulaAuth/Core/UpdateManager.cs index 784fbec..d93e794 100644 --- a/NebulaAuth/Core/UpdateManager.cs +++ b/NebulaAuth/Core/UpdateManager.cs @@ -1,14 +1,7 @@ using AutoUpdaterDotNET; -using MaterialDesignThemes.Wpf; using NebulaAuth.Model; -using NebulaAuth.View; -using NebulaAuth.ViewModel.Other; using System; using System.IO; -using System.Net; -using System.Windows.Forms; -using System.Windows.Threading; -using Application = System.Windows.Application; namespace NebulaAuth.Core; @@ -29,55 +22,55 @@ public static class UpdateManager } - static UpdateManager() - { - //AutoUpdater.CheckForUpdateEvent += AutoUpdaterOnCheckForUpdateEvent; + //static UpdateManager() + //{ + // //AutoUpdater.CheckForUpdateEvent += AutoUpdaterOnCheckForUpdateEvent; - } + //} - private static async void AutoUpdaterOnCheckForUpdateEvent(UpdateInfoEventArgs args) - { - if (args.Error == null) - { - if (args.IsUpdateAvailable) - { - DialogResult dialogResult; - var dialog = new UpdaterView() - { - DataContext = new UpdaterVM(args) - }; + //private static async void AutoUpdaterOnCheckForUpdateEvent(UpdateInfoEventArgs args) + //{ + // if (args.Error == null) + // { + // if (args.IsUpdateAvailable) + // { + // DialogResult dialogResult; + // var dialog = new UpdaterView() + // { + // DataContext = new UpdaterVM(args) + // }; - await DialogHost.Show(dialog); - Application.Current.Shutdown(); + // await DialogHost.Show(dialog); + // Application.Current.Shutdown(); - } - else - { + // } + // else + // { - } - } - else - { - if (args.Error is WebException) - { + // } + // } + // else + // { + // if (args.Error is WebException) + // { - } - else - { + // } + // else + // { - } - } + // } + // } - } + //} - private static void RunUpdate(UpdateInfoEventArgs args) - { - Application.Current.Dispatcher.Invoke(() => - { - if (AutoUpdater.DownloadUpdate(args)) - { - Application.Current.Shutdown(); - } - }, DispatcherPriority.ContextIdle); - } + //private static void RunUpdate(UpdateInfoEventArgs args) + //{ + // Application.Current.Dispatcher.Invoke(() => + // { + // if (AutoUpdater.DownloadUpdate(args)) + // { + // Application.Current.Shutdown(); + // } + // }, DispatcherPriority.ContextIdle); + //} } \ No newline at end of file diff --git a/NebulaAuth/MainWindow.xaml b/NebulaAuth/MainWindow.xaml index 96f4bab..451a6ff 100644 --- a/NebulaAuth/MainWindow.xaml +++ b/NebulaAuth/MainWindow.xaml @@ -137,6 +137,7 @@ + + + + +
+ +
+
Version 1.5.2
+
18.09.2024
+
+ - HOTFIX: Resolved an issue introduced by the September 18, 2024, Steam update, where an error occurred during session refresh due to changes in Steam's response model.
+ - FIX: Potentially resolved a memory leak issue on some devices (Windows 10, 11 Home/Professional).
+ - FIX: Minor performance improvements.
+ - UI: Added a splash screen on application startup.
+ - UI: Added "Copy Login" option in the account context menu on right-click.
+ - UI: Minor localization updates.
+ - UI: Added a tooltip to the "Use Indicator" setting.
+ - UI: Minor design improvements.
+ - UPDATE: Most libraries have been updated to their latest versions. +
+
+
+ + + \ No newline at end of file