Skip to content
This repository was archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
Update Code
Browse files Browse the repository at this point in the history
  • Loading branch information
Awbugl committed Dec 22, 2022
1 parent 7acef13 commit f310229
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Andreal.Window/Common/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace Andreal.Window.Common;
internal static class Program
{
//TODO: Update Version
internal const string Version = "0.5.0";
internal const string Version = "v0.5.1";

internal static readonly ObservableCollection<ExceptionLog> Exceptions = new();
internal static readonly ObservableCollection<MessageLog> Messages = new();
Expand Down
2 changes: 1 addition & 1 deletion Andreal.Window/UI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public MainWindow()
_controlers = new();
_controlers.TryAdd(WindowStatus.None, new());

Version.Text = $"v{Program.Version}";
Version.Text = Program.Version;
}

private System.Windows.Controls.UserControl GetNewUserControl(WindowStatus status)
Expand Down
7 changes: 6 additions & 1 deletion UpdateLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 2022.12.22 v0.5.1

- 优化指令匹配处理逻辑,提高响应速度;
- 提前适配AUA新的状态码处理方案。

### 2022.11.18 v0.5.0

- 重构图片素材资源管理方案,在启动前会检查文件缺失等相关问题;
Expand All @@ -23,7 +28,7 @@

### 2022.8.20 v0.4.6

- 提前适配AUA 新版token验证方案
- 提前适配AUA新版token验证方案

### 2022.8.11 v0.4.5

Expand Down

0 comments on commit f310229

Please sign in to comment.