Skip to content

Commit

Permalink
Finish task and publish 1.3.303.0 version
Browse files Browse the repository at this point in the history
Finish task and publish 1.3.303.0 version
  • Loading branch information
Gaoyifei1011 committed Mar 3, 2023
1 parent 964cd39 commit f4683bc
Show file tree
Hide file tree
Showing 9 changed files with 242 additions and 29 deletions.
3 changes: 2 additions & 1 deletion Description/README_EN-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Note: The app can't bypass the Microsoft Store's billing channels, and if the ap
| Access the web version of the docking download interface | Completed |
| Console applications (quickly download) | Completed |
| Program performance optimization | Completed |
| Interface modernization | Completed |

All the content of the program has been developed

Expand Down Expand Up @@ -81,7 +82,7 @@ All the content of the program has been developed
#### <p align="center">Tools that must be installed</p>

> * [Microsoft Visual Studio 2022](https://visualstudio.microsoft.com/)
> * . NET Desktop Development (Installed in Visual Studio Installer, .NET SDK Version 7.0)
> * . NET Desktop Development (Installed in Visual Studio Installer, .NET SDK Version 7.0 and .NET Framework SDK 4.8.1)
> * [Microsoft Edge WebView2 Runtime](https://developer.microsoft.com/zh-cn/microsoft-edge/webview2/) £¨install recommendedly£©
#### <p align="center">Compilation steps</p>
Expand Down
3 changes: 2 additions & 1 deletion Description/README_ZH-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
| 访问网页版对接下载接口 | 已完成 |
| 控制台应用程序(快速下载) | 已完成 |
| 程序性能优化 | 已完成 |
| 界面现代化改造 | 已完成 |

程序所有功能都已开发完成

Expand Down Expand Up @@ -81,7 +82,7 @@
#### <p align="center">必须安装的工具</p>

> * [Microsoft Visual Studio 2022](https://visualstudio.microsoft.com/)
> * .NET桌面开发(Visual Studio Installer中安装,.NET SDK 版本 7.0)
> * .NET桌面开发(Visual Studio Installer中安装,.NET SDK 版本 7.0 和 .NET Framework SDK 4.8.1
> * [Microsoft Edge WebView2 运行时](https://developer.microsoft.com/zh-cn/microsoft-edge/webview2/) (推荐安装)
#### <p align="center">编译步骤</p>
Expand Down
4 changes: 2 additions & 2 deletions GetStoreApp/GetStoreApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<EnableMsixTooling>false</EnableMsixTooling>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<FileAlignment>512</FileAlignment>
<FileVersion>1.2.302.1</FileVersion>
<FileVersion>1.3.303.0</FileVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTestArtifacts>True</GenerateTestArtifacts>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
Expand All @@ -42,7 +42,7 @@
<TargetFramework>net7.0-windows10.0.22621.0</TargetFramework>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<TrimMode>partial</TrimMode>
<Version>1.2.302.1</Version>
<Version>1.3.303.0</Version>
<UseWindowsForms>False</UseWindowsForms>
<UseWinUI>true</UseWinUI>
<UseWPF>False</UseWPF>
Expand Down
4 changes: 2 additions & 2 deletions GetStoreApp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
// 生成号
// 修订号
//
[assembly: AssemblyVersion("1.2.302.1")]
[assembly: AssemblyFileVersion("1.2.302.1")]
[assembly: AssemblyVersion("1.3.303.0")]
[assembly: AssemblyFileVersion("1.3.303.0")]
239 changes: 221 additions & 18 deletions GetStoreApp/WindowsAPI/PInvoke/User32/WindowMessage.cs

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion GetStoreAppHelper/GetStoreAppHelper.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ApplicationManifest>App.manifest</ApplicationManifest>
<AssemblyName>GetStoreAppHelper</AssemblyName>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<Copyright>高怡飞</Copyright>
<DisableXbfLineInfo>False</DisableXbfLineInfo>
<Deterministic>true</Deterministic>
<FileAlignment>512</FileAlignment>
<FileVersion>1.3.303.0</FileVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<LangVersion>latest</LangVersion>
<OutputType>WinExe</OutputType>
Expand All @@ -10,7 +18,6 @@
<TargetFramework>net481</TargetFramework>
<TargetPlatformVersion>10.0.22621.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<PropertyGroup Condition="'$(Platform)'=='x86'">
Expand Down
4 changes: 2 additions & 2 deletions GetStoreAppHelper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
// 生成号
// 修订号
//
[assembly: AssemblyVersion("1.2.302.1")]
[assembly: AssemblyFileVersion("1.2.302.1")]
[assembly: AssemblyVersion("1.3.303.0")]
[assembly: AssemblyFileVersion("1.3.303.0")]
2 changes: 1 addition & 1 deletion GetStoreAppPackage/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Identity
Name="Gaoyifei1011.GetStoreApp"
Publisher="CN=高怡飞"
Version="1.2.302.1" />
Version="1.3.303.0" />

<Properties>
<DisplayName>ms-resource:PackageDisplayName</DisplayName>
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
| 访问网页版对接下载接口 | 已完成 |
| 控制台应用程序(快速下载) | 已完成 |
| 程序性能优化 | 已完成 |
| 界面现代化改造 | 已完成 |

程序所有功能都已开发完成

Expand Down Expand Up @@ -88,7 +89,7 @@
#### <p align="center">必须安装的工具</p>

> * [Microsoft Visual Studio 2022](https://visualstudio.microsoft.com/)
> * .NET桌面开发(Visual Studio Installer中安装,.NET SDK 版本 7.0)
> * .NET桌面开发(Visual Studio Installer中安装,.NET SDK 版本 7.0 和 .NET Framework SDK 4.8.1
> * [Microsoft Edge WebView2 运行时](https://developer.microsoft.com/zh-cn/microsoft-edge/webview2/) (推荐安装)
#### <p align="center">编译步骤</p>
Expand Down

0 comments on commit f4683bc

Please sign in to comment.