Skip to content

Commit f15dc90

Browse files
authored
Merge pull request #857 from BeyondDimension/develop
v2.6.4
2 parents 35498b2 + a6102b9 commit f15dc90

File tree

467 files changed

+5720
-2736
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

467 files changed

+5720
-2736
lines changed

.github/workflows/dotnet.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,14 @@ jobs:
137137
with:
138138
name: '[${{ matrix.configuration }}]${{ env.ProjectName }}_macos_x64_${{ env.GITHUB_SHA_SHORT }}'
139139
path: src\ST.Client.Desktop.Avalonia.App\bin\${{ matrix.configuration }}\Publish\${{ env.ProjectName }}_macos_x64_${{ env.GITHUB_SHA_SHORT }}.7z
140+
141+
- name: Upload macos-arm64 App ${{ matrix.configuration }}
142+
continue-on-error: true
143+
if: ${{ matrix.os == 'windows-latest' && !startsWith(github.ref, 'refs/tags/') && github.event_name == 'push' }}
144+
uses: actions/upload-artifact@v2
145+
with:
146+
name: '[${{ matrix.configuration }}]${{ env.ProjectName }}_macos_arm64_${{ env.GITHUB_SHA_SHORT }}'
147+
path: src\ST.Client.Desktop.Avalonia.App\bin\${{ matrix.configuration }}\Publish\${{ env.ProjectName }}_macos_arm64_${{ env.GITHUB_SHA_SHORT }}.7z
140148

141149
- name: Upload linux-x64 App ${{ matrix.configuration }}
142150
continue-on-error: true

.github/workflows/publish.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
env:
113113
Token: ${{ secrets.PUBLISH_TOKEN }}
114114

115-
- name: Package fd-win-x64
115+
- name: Package fd-win-x64 7z
116116
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
117117
shell: pwsh
118118
run: |
@@ -128,7 +128,7 @@ jobs:
128128
Copy-Item ".\src\ST.Client.Desktop.Avalonia.App\bin\${env:Configuration}\Publish\${env:ProjectName}_win_x64_fde_v${{ steps.tag.outputs.tag }}.exe" "${env:PublishFilePath}"
129129
Write-Output "exe_fd_win_x64_SHA256=$(.\packaging\SHA256.ps1 ${env:PublishFilePath}\${env:ProjectName}_win_x64_fde_v${{ steps.tag.outputs.tag }}.exe)" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
130130
131-
- name: Package win-x64
131+
- name: Package win-x64 7z
132132
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
133133
shell: pwsh
134134
run: |
@@ -144,14 +144,22 @@ jobs:
144144
Copy-Item ".\src\ST.Client.Desktop.Avalonia.App\bin\${env:Configuration}\Publish\${env:ProjectName}_win_x64_v${{ steps.tag.outputs.tag }}.exe" "${env:PublishFilePath}"
145145
Write-Output "exe_win_x64_SHA256=$(.\packaging\SHA256.ps1 ${env:PublishFilePath}\${env:ProjectName}_win_x64_v${{ steps.tag.outputs.tag }}.exe)" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
146146
147-
- name: Package osx-64
147+
- name: Package osx-x64 7z
148148
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
149149
shell: pwsh
150150
run: |
151151
New-Item -ItemType Directory -Path ${env:PublishFilePath} -Force > $null
152152
Copy-Item ".\src\ST.Client.Desktop.Avalonia.App\bin\${env:Configuration}\Publish\${env:ProjectName}_macos_x64_v${{ steps.tag.outputs.tag }}.7z" "${env:PublishFilePath}"
153153
Write-Output "macos_x64_SHA256=$(.\packaging\SHA256.ps1 ${env:PublishFilePath}\${env:ProjectName}_macos_x64_v${{ steps.tag.outputs.tag }}.7z)" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
154154
155+
- name: Package osx-arm64 7z
156+
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
157+
shell: pwsh
158+
run: |
159+
New-Item -ItemType Directory -Path ${env:PublishFilePath} -Force > $null
160+
Copy-Item ".\src\ST.Client.Desktop.Avalonia.App\bin\${env:Configuration}\Publish\${env:ProjectName}_macos_arm64_v${{ steps.tag.outputs.tag }}.7z" "${env:PublishFilePath}"
161+
Write-Output "macos_arm64_SHA256=$(.\packaging\SHA256.ps1 ${env:PublishFilePath}\${env:ProjectName}_macos_arm64_v${{ steps.tag.outputs.tag }}.7z)" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
162+
155163
- name: Package linux-x64 7z
156164
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
157165
shell: pwsh
@@ -237,6 +245,7 @@ jobs:
237245
| <sub>${{ env.ProjectName }}_linux_arm64_v${{ steps.tag.outputs.tag }}.rpm</sub> | <sub>${{ env.rpm_linux_arm64_SHA256 }}</sub> |
238246
|||
239247
| <sub>${{ env.ProjectName }}_macos_x64_v${{ steps.tag.outputs.tag }}.7z</sub> | <sub>${{ env.macos_x64_SHA256 }}</sub> |
248+
| <sub>${{ env.ProjectName }}_macos_arm64_v${{ steps.tag.outputs.tag }}.7z</sub> | <sub>${{ env.macos_arm64_SHA256 }}</sub> |
240249
241250
242251
[![WebSite steampp.net](https://img.shields.io/badge/WebSite-steampp.net-brightgreen.svg?style=flat-square&color=61dafb)](https://steampp.net)

Directory.Packages.props

Lines changed: 48 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
<PackageVersion Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="3.1.21" />
1717
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="3.1.21" />
1818
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.21" />
19-
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="3.1.21" />
2019
</ItemGroup>
2120
<ItemGroup Condition=" $(TargetFramework.StartsWith('net5.0')) ">
2221
<!-- Microsoft.Extensions.* & AspNetCore & EntityFrameworkCore(NET50) -->
@@ -35,36 +34,34 @@
3534
<PackageVersion Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="5.0.12" />
3635
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="5.0.12" />
3736
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.12" />
38-
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="5.0.12" />
3937
</ItemGroup>
4038
<ItemGroup Condition=" $(TargetFramework.StartsWith('net6.0')) ">
4139
<!-- Microsoft.Extensions.* & AspNetCore & EntityFrameworkCore(NET60) -->
4240
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
4341
<PackageVersion Include="Microsoft.Extensions.Http" Version="6.0.0" />
4442
<PackageVersion Include="Microsoft.Extensions.Logging" Version="6.0.0" />
4543
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
46-
<PackageVersion Include="Microsoft.Extensions.Logging.AzureAppServices" Version="6.0.0" />
47-
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.0" />
48-
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
49-
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0" />
50-
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.0" />
51-
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.0" />
52-
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.0" />
53-
<PackageVersion Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
54-
<PackageVersion Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="6.0.0" />
55-
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.0" />
56-
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.0" />
57-
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.0" />
44+
<PackageVersion Include="Microsoft.Extensions.Logging.AzureAppServices" Version="6.0.1" />
45+
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.1" />
46+
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="6.0.1" />
47+
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.1" />
48+
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.1" />
49+
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.1" />
50+
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.1" />
51+
<PackageVersion Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.1" />
52+
<PackageVersion Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" Version="6.0.1" />
53+
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.1" />
54+
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.1" />
5855
</ItemGroup>
5956
<ItemGroup Condition=" $(TargetFramework.StartsWith('net6.0')) ">
6057
<!-- Entity Framework Plus -->
6158
<!-- A FREE & Open Source library to enhance EF6 and EF Core -->
62-
<PackageVersion Include="Z.EntityFramework.Plus.EFCore" Version="6.13.2" />
59+
<PackageVersion Include="Z.EntityFramework.Plus.EFCore" Version="6.13.5" />
6360

6461
<!-- AspNetCore 6 OpenId/OAuth -->
6562
<PackageVersion Include="AspNet.Security.OpenId.Steam" Version="6.0.0" />
66-
<PackageVersion Include="AspNet.Security.OAuth.QQ" Version="6.0.0" />
67-
<PackageVersion Include="AspNet.Security.OAuth.Apple" Version="6.0.0" />
63+
<PackageVersion Include="AspNet.Security.OAuth.QQ" Version="6.0.1" />
64+
<PackageVersion Include="AspNet.Security.OAuth.Apple" Version="6.0.1" />
6865
</ItemGroup>
6966
<ItemGroup>
7067
</ItemGroup>
@@ -82,7 +79,7 @@
8279
</ItemGroup>
8380
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) ">
8481
<!-- BCL(NETSTANDARD) -->
85-
<PackageVersion Include="System.Text.Json" Version="6.0.0" />
82+
<PackageVersion Include="System.Text.Json" Version="6.0.1" />
8683
<PackageVersion Include="System.Text.Encodings.Web" Version="6.0.0" />
8784
<PackageVersion Include="System.Drawing.Common" Version="6.0.0" />
8885
<PackageVersion Include="System.Security.Principal.Windows" Version="5.0.0" />
@@ -103,9 +100,9 @@
103100
<PackageVersion Include="Microsoft.AppCenter" Version="4.4.0" />
104101
<PackageVersion Include="Microsoft.AppCenter.Analytics" Version="4.4.0" />
105102
<PackageVersion Include="Microsoft.AppCenter.Crashes" Version="4.4.0" />
106-
<PackageVersion Include="Aigio.Avalonia.AppCenter" Version="4.4.0.1" />
107-
<PackageVersion Include="Aigio.Avalonia.AppCenter.Analytics" Version="4.4.0" />
108-
<PackageVersion Include="Aigio.Avalonia.AppCenter.Crashes" Version="4.4.0" />
103+
<PackageVersion Include="Aigio.Avalonia.AppCenter" Version="4.4.0.2" />
104+
<PackageVersion Include="Aigio.Avalonia.AppCenter.Analytics" Version="4.4.0.2" />
105+
<PackageVersion Include="Aigio.Avalonia.AppCenter.Crashes" Version="4.4.0.2" />
109106
<PackageVersion Include="nor0x.AppCenter" Version="4.4.0-XMAC" />
110107
<PackageVersion Include="nor0x.AppCenter.Analytics" Version="4.4.0-XMAC" />
111108
<PackageVersion Include="nor0x.AppCenter.Crashes" Version="4.4.0-XMAC" />
@@ -122,7 +119,7 @@
122119

123120
<!-- NUnit & NUnit.Xamarin & Moq -->
124121
<PackageVersion Include="NUnit" Version="3.13.2" />
125-
<PackageVersion Include="NUnit3TestAdapter" Version="4.1.0" />
122+
<PackageVersion Include="NUnit3TestAdapter" Version="4.2.0" />
126123
<PackageVersion Include="nunit.xamarin" Version="3.6.1" />
127124
<PackageVersion Include="PCLStorage" Version="1.0.2" />
128125
<PackageVersion Include="Moq" Version="4.16.1" />
@@ -134,18 +131,18 @@
134131

135132
<!-- ReactiveUI -->
136133
<PackageVersion Include="System.Reactive" Version="5.0.0" />
137-
<PackageVersion Include="Splat" Version="14.1.1" />
138-
<PackageVersion Include="DynamicData" Version="7.4.3" />
139-
<PackageVersion Include="ReactiveUI" Version="17.1.6" />
140-
<!--<PackageVersion Include="ReactiveUI.Fody" Version="17.1.6" /> -->
141-
<PackageVersion Include="ReactiveUI.XamForms" Version="17.1.6" />
134+
<PackageVersion Include="Splat" Version="14.1.17" />
135+
<PackageVersion Include="DynamicData" Version="7.4.9" />
136+
<PackageVersion Include="ReactiveUI" Version="17.1.17" />
137+
<!--<PackageVersion Include="ReactiveUI.Fody" Version="17.1.17" /> -->
138+
<PackageVersion Include="ReactiveUI.XamForms" Version="17.1.17" />
142139
<PackageVersion Include="ReactiveUI.AndroidX" Version="17.0.1" />
143140

144141
<!-- SkiaSharp & HarfBuzzSharp -->
145-
<PackageVersion Include="HarfBuzzSharp" Version="2.6.1.8" />
146-
<PackageVersion Include="HarfBuzzSharp.NativeAssets.Linux" Version="2.6.1.8" />
147-
<PackageVersion Include="SkiaSharp" Version="2.80.3" />
148-
<PackageVersion Include="SkiaSharp.NativeAssets.Linux" Version="2.80.3" />
142+
<PackageVersion Include="HarfBuzzSharp" Version="2.8.2-preview.179" />
143+
<PackageVersion Include="HarfBuzzSharp.NativeAssets.Linux" Version="2.8.2-preview.179" />
144+
<PackageVersion Include="SkiaSharp" Version="2.88.0-preview.179" />
145+
<PackageVersion Include="SkiaSharp.NativeAssets.Linux" Version="2.88.0-preview.179" />
149146

150147
<!-- AutoMapper -->
151148
<PackageVersion Include="AutoMapper" Version="10.1.1" />
@@ -156,13 +153,13 @@
156153

157154
<!-- QRCode -->
158155
<!--<PackageVersion Include="QRCoder" Version="1.4.2" />-->
159-
<PackageVersion Include="Net.Codecrete.QrCodeGenerator" Version="2.0.0" />
156+
<PackageVersion Include="Net.Codecrete.QrCodeGenerator" Version="2.0.1" />
160157

161158
<!-- NotifyIcon -->
162-
<PackageVersion Include="NotifyIcon.Base" Version="1.0.5" />
163-
<!--<PackageVersion Include="NotifyIcon.Linux" Version="1.0.5" />-->
164-
<!--<PackageVersion Include="NotifyIcon.Mac" Version="1.0.5" />-->
165-
<PackageVersion Include="NotifyIcon.Windows" Version="1.0.5" />
159+
<PackageVersion Include="NotifyIcon.Base" Version="1.0.5.1" />
160+
<!--<PackageVersion Include="NotifyIcon.Linux" Version="1.0.5.1" />-->
161+
<!--<PackageVersion Include="NotifyIcon.Mac" Version="1.0.5.1" />-->
162+
<PackageVersion Include="NotifyIcon.Windows" Version="1.0.5.1" />
166163
<!--<PackageVersion Include="GtkSharp" Version="3.24.24.34" />-->
167164

168165
<!-- Compression -->
@@ -181,7 +178,7 @@
181178
<PackageVersion Include="TinyPinyin.Net" Version="1.0.2" />
182179

183180
<!-- Win32/Windows -->
184-
<PackageVersion Include="TaskScheduler" Version="2.9.2" />
181+
<PackageVersion Include="TaskScheduler" Version="2.9.3" />
185182

186183
<!-- Swagger -->
187184
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.2.3" />
@@ -203,8 +200,8 @@
203200
<PackageVersion Include="MonoMac.NetStandard" Version="0.0.4" />
204201

205202
<!-- .NET Compat -->
206-
<PackageVersion Include="OperatingSystem2" Version="1.4.2" />
207-
<PackageVersion Include="JustArchiNET.Madness" Version="3.0.0" />
203+
<PackageVersion Include="OperatingSystem2" Version="1.4.2.1" />
204+
<PackageVersion Include="JustArchiNET.Madness" Version="3.1.1" />
208205

209206
<!-- Serialize -->
210207
<PackageVersion Include="MessagePack" Version="2.3.85" />
@@ -236,28 +233,29 @@
236233
<PackageVersion Include="Polly" Version="7.2.2" />
237234

238235
<!--Avalonia Start-->
239-
<PackageVersion Include="Avalonia" Version="0.10.10" />
240-
<PackageVersion Include="Avalonia.Desktop" Version="0.10.10" />
241-
<PackageVersion Include="Avalonia.Diagnostics" Version="0.10.10" />
242-
<PackageVersion Include="Avalonia.ReactiveUI" Version="0.10.10" />
243-
<!--<PackageVersion Include="Avalonia.Direct2D1" Version="0.10.9" />-->
244-
<PackageVersion Include="Avalonia.Controls.DataGrid" Version="0.10.10" />
245-
<PackageVersion Include="Avalonia.Xaml.Behaviors" Version="0.10.10.4" />
236+
<PackageVersion Include="Avalonia" Version="0.10.11" />
237+
<PackageVersion Include="Avalonia.Desktop" Version="0.10.11" />
238+
<PackageVersion Include="Avalonia.Skia" Version="0.10.11" />
239+
<PackageVersion Include="Avalonia.Diagnostics" Version="0.10.11" />
240+
<PackageVersion Include="Avalonia.ReactiveUI" Version="0.10.11" />
241+
<!--<PackageVersion Include="Avalonia.Direct2D1" Version="0.10.11" />-->
242+
<PackageVersion Include="Avalonia.Controls.DataGrid" Version="0.10.11" />
243+
<PackageVersion Include="Avalonia.Xaml.Behaviors" Version="0.10.11.5" />
246244
<!--<PackageVersion Include="Avalonia.AvaloniaEdit" Version="0.10.4" />-->
247245
<!--<PackageVersion Include="CefNet.Avalonia" Version="93.1.21240.857" />-->
248246
<!--<PackageVersion Include="LibVLCSharp.Avalonia" Version="3.5.1" />-->
249-
<!--<PackageVersion Include="FluentAvaloniaUI" Version="1.1.6" />-->
250-
<PackageVersion Include="JumpLists.Win32.Avalonia" Version="0.0.1" />
247+
<!--<PackageVersion Include="FluentAvaloniaUI" Version="1.1.8" />-->
248+
<PackageVersion Include="JumpLists.Win32.Avalonia" Version="1.0.0" />
251249
<!--Avalonia End-->
252250

253251
<!-- Xamarin.Android -->
254252
<PackageVersion Include="Xamarin.Google.Dagger" Version="2.39.1" />
255-
<PackageVersion Include="Xamarin.Google.MLKit.BarcodeScanning" Version="116.1.2.2" />
253+
<PackageVersion Include="Xamarin.Google.MLKit.BarcodeScanning" Version="116.1.2.3" />
256254
<PackageVersion Include="Plugin.CurrentActivity" Version="2.1.0.4" />
257255
<PackageVersion Include="de.hdodenhof.circleimageview" Version="3.1.0" />
258256
<PackageVersion Include="Square.OkHttp3" Version="4.9.2" />
259257
<PackageVersion Include="Square.Picasso" Version="2.71828.0" />
260-
<PackageVersion Include="LeakCanaryBinding" Version="1.5.1.1" />
258+
<!--<PackageVersion Include="LeakCanaryBinding" Version="1.5.1.1" />-->
261259
<!--<PackageVersion Include="TencentOpenApiSDK.Android" Version="3.5.4.11" />-->
262260

263261
<!-- Xamarin.AndroidX -->

README.en.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ English | [简体中文](./README.md)
3333
- [Gitee Releases](https://gitee.com/rmbgame/SteamTools/releases)
3434
- [Official WebSite](https://steampp.net)
3535
- [![Microsoft Store](./resources/MSStore_English.png)](https://www.microsoft.com/store/apps/9MTCFHS560NG)
36+
- [Arch Linux Package](https://aur.archlinux.org/packages/steam%2B%2B-bin)(By [zhanghua000](https://github.com/zhanghua000))
3637

3738
## ✨ Functions
3839
1. Local reverse proxy for Steam's community webpage to enable normal access in **the Chinese Mainland, Mainland of China**
@@ -52,8 +53,8 @@ English | [简体中文](./README.md)
5253
OS | Version | Architectures | Lifecycle
5354
--------------------------------------|-------------------------|-----------------|----------
5455
[Windows Client][Windows-client] | 7 SP1(**\***), 8.1 | x64 | [Windows][Windows-lifecycle]
55-
[Windows 10 Client][Windows-client] | Version 1607+(**\***) | x64 | [Windows][Windows-lifecycle]
56-
[Windows Server][Windows-Server] | 2012+ | x64 | [Windows Server][Windows-Server-lifecycle]
56+
[Windows 10 Client][Windows-client] | Version 1607+(**\***) | x64 | [Windows][Windows-lifecycle]
57+
[Windows Server][Windows-Server] | 2012+ | x64 | [Windows Server][Windows-Server-lifecycle]
5758

5859
**\*** Windows 7 SP1 is supported with [Extended Security Updates](https://docs.microsoft.com/troubleshoot/windows-client/windows-7-eos-faq/windows-7-extended-security-updates-faq) installed.
5960
**\*** Microsoft Store/Desktop Bridge Version 1809+
@@ -77,7 +78,8 @@ OS | Version | Architectures
7778
[Red Hat Enterprise Linux][RHEL] | 7+ | x64, Arm64 | [Red Hat][RHEL-lifecycle]
7879
[SUSE Enterprise Linux (SLES)][SLES] | 12 SP2+ | x64 | [SUSE][SLES-lifecycle]
7980
[Ubuntu][Ubuntu] | 16.04, 18.04, 20.04+ | x64, Arm64, Arm32 | [Ubuntu][Ubuntu-lifecycle]
80-
[Deepin / UOS][Deepin] | 20+ | x64 | [Deepin][Deepin-lifecycle]
81+
[Deepin / UOS][Deepin] | 20+ | x64 | [Deepin][Deepin-lifecycle]
82+
[Arch Linux][Arch] | | x64 |
8183

8284
[Alpine]: https://alpinelinux.org/
8385
[Alpine-lifecycle]: https://wiki.alpinelinux.org/wiki/Alpine_Linux:Releases
@@ -109,6 +111,7 @@ OS | Version | Architectures
109111
[Ubuntu-pm]: https://docs.microsoft.com/dotnet/core/install/linux-package-manager-ubuntu-2004
110112
[Deepin]: https://www.deepin.org/
111113
[Deepin-lifecycle]: https://www.deepin.org/release-notes
114+
[Arch]: https://archlinux.org/
112115

113116
### macOS
114117

0 commit comments

Comments
 (0)