diff --git a/AboutForm.cs b/AboutForm.cs index 70230b7..681db35 100644 --- a/AboutForm.cs +++ b/AboutForm.cs @@ -57,7 +57,7 @@ namespace AppStore // 初始化并添加应用信息 infoLabel = new Label(); - infoLabel.Text = "kortapp-z\n版本: 1.2.4\n作者: zs-yg\n一个简单、开源的应用商店\nkortapp-z是完全免费\n基于.NET8和C/C++的软件"; + infoLabel.Text = "kortapp-z\n版本: 1.2.5\n作者: zs-yg\n一个简单、开源的应用商店\nkortapp-z是完全免费\n基于.NET8和C/C++的软件"; infoLabel.Font = new Font("Microsoft YaHei", 12); infoLabel.AutoSize = false; infoLabel.Width = 300; diff --git a/MainForm.cs b/MainForm.cs index 9853339..6f5d6c0 100644 --- a/MainForm.cs +++ b/MainForm.cs @@ -1026,21 +1026,41 @@ namespace AppStore "notepad--", "https://www.ghproxy.cn/https://github.com/cxasm/notepad--/releases/download/notepad-v3.3/Notepad--v3.3-plugin-Installer.exe", "img/png/notepad--.png")); + + flowPanel.Controls.Add(CreateAppCard( + "chatlog", + "https://www.ghproxy.cn/https://github.com/sjzar/chatlog/releases/download/v0.0.15/chatlog_0.0.15_windows_amd64.zip", + "img/jpg/github.jpg")); flowPanel.Controls.Add(CreateAppCard( "PowerToys", "https://ghproxy.net/https://github.com/microsoft/PowerToys/releases/download/v0.91.1/PowerToysSetup-0.91.1-x64.exe", "img/png/PowerToys.png")); + + flowPanel.Controls.Add(CreateAppCard( + "Powershell", + "https://ghproxy.net/https://github.com/Powershell/Powershell/releases/download/v7.5.2/Powershell-7.5.2-win-x64.exe", + "img/png/powershell.png")); flowPanel.Controls.Add(CreateAppCard( "terminal", "https://ghproxy.net/https://github.com/microsoft/terminal/releases/download/v1.22.11141.0/Microsoft.WindowsTerminal_1.22.11141.0_x64.zip", "img/png/terminal.png")); + + flowPanel.Controls.Add(CreateAppCard( + "edit", + "https://ghproxy.net/https://github.com/microsoft/edit/releases/download/v1.2.0/edit-1.2.0-x86_64-windows.zip", + "img/png/edit.png")); flowPanel.Controls.Add(CreateAppCard( "github_cli", "https://ghproxy.cn/https://github.com/cli/cli/releases/download/v2.74.2/gh_2.74.2_windows_arm64.msi", "img/png/github_cli.png")); + + flowPanel.Controls.Add(CreateAppCard( + "VideoCaptioner", + "https://ghproxy.cn/https://github.com/WEIFENG2333/VideoCaptioner/releases/download/v1.3.3/VideoCaptioner-Setup-win64-v1.3.3.exe", + "img/png/VideoCaptioner.png")); flowPanel.Controls.Add(CreateAppCard( "ReactOS", diff --git a/inno/innosetup_x64.iss b/inno/innosetup_x64.iss index 75a72db..98620b3 100644 --- a/inno/innosetup_x64.iss +++ b/inno/innosetup_x64.iss @@ -2,7 +2,7 @@ ; 有关创建 Inno Setup 脚本文件的详细信息,请参阅帮助文档! #define MyAppName "kortapp-z" -#define MyAppVersion "1.2.4" +#define MyAppVersion "1.2.5" #define MyAppPublisher "zsyg" #define MyAppURL "https://github.com/zs-yg/kortapp-z" #define MyAppExeName "kortapp-z.exe" diff --git a/inno/innosetup_x86.iss b/inno/innosetup_x86.iss index c64afeb..76f94ba 100644 --- a/inno/innosetup_x86.iss +++ b/inno/innosetup_x86.iss @@ -2,7 +2,7 @@ ; 有关创建 Inno Setup 脚本文件的详细信息,请参阅帮助文档! #define MyAppName "kortapp-z" -#define MyAppVersion "1.2.4" +#define MyAppVersion "1.2.5" #define MyAppPublisher "zsyg" #define MyAppURL "https://github.com/zs-yg/kortapp-z" #define MyAppExeName "kortapp-z.exe"