Skip to content

Commit

Permalink
Remove osx FDE
Browse files Browse the repository at this point in the history
  • Loading branch information
AigioL committed Nov 17, 2021
1 parent 26037da commit bcff694
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 49 deletions.
2 changes: 1 addition & 1 deletion README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ OS | Version | Architectures
[Windows 10 Client][Windows-client] | Version 1607+(**\***) | x64 | [Windows][Windows-lifecycle]
[Windows Server][Windows-Server] | 2012+ | x64 | [Windows Server][Windows-Server-lifecycle]

**\*** Windows 7 SP1 is supported with KB3063858 [64 bit](https://www.microsoft.com/download/details.aspx?id=47442) installed.
**\*** 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.
**\*** Microsoft Store/Desktop Bridge Version 1809+

[Windows-client]: https://www.microsoft.com/windows/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ OS | Version | Architectures
[Windows 10 Client][Windows-client] | Version 1607+(**\***) | x64 | [Windows][Windows-lifecycle]
[Windows Server][Windows-Server] | 2012+ | x64 | [Windows Server][Windows-Server-lifecycle]

**\*** Windows 7 SP1 is supported with KB3063858 [64 位](https://www.microsoft.com/zh-cn/download/details.aspx?id=47442) installed.
**\*** 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.
**\*** Microsoft Store/Desktop Bridge Version 1809+

[Windows-client]: https://www.microsoft.com/windows/
Expand Down
9 changes: 3 additions & 6 deletions release-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@
- 如果你已安装了 [ASP.NET Core Runtime 6.0.0](https://dotnet.microsoft.com/download/dotnet/6.0) 则下载文件名中带有 **fde** 的文件,可减少磁盘占用空间
- [在 Windows 上安装 .NET](https://docs.microsoft.com/en-us/dotnet/core/install/windows)
- 在 Windows 上不需要 Hosting Bundle 和 IIS support
- [在 macOS 上安装 .NET](https://docs.microsoft.com/en-us/dotnet/core/install/macos)
- [在 Linux 上安装 .NET](https://docs.microsoft.com/en-us/dotnet/core/install/linux)
- Mobile
- Android
Expand All @@ -90,33 +89,31 @@
| Steam++_linux_x64_v2.6.0.7z | SHA256 |
| Steam++_linux_arm64_v2.6.0.7z | SHA256 |
| Steam++_linux_arm_v2.6.0.7z | SHA256 |
| | |
| Steam++_linux_x64_fde_v2.6.0.7z | SHA256 |
| Steam++_linux_arm64_fde_v2.6.0.7z | SHA256 |
| Steam++_linux_arm_fde_v2.6.0.7z | SHA256 |
| | |
| Steam++_linux_x64_v2.6.0.deb | SHA256 |
| Steam++_linux_arm64_v2.6.0.deb | SHA256 |
| Steam++_linux_arm_v2.6.0.deb | SHA256 |
| | |
| Steam++_linux_x64_fde_v2.6.0.deb | SHA256 |
| Steam++_linux_arm64_fde_v2.6.0.deb | SHA256 |
| Steam++_linux_arm_fde_v2.6.0.deb | SHA256 |
| | |
| Steam++_linux_x64_v2.6.0.rpm | SHA256 |
| Steam++_linux_arm64_v2.6.0.rpm | SHA256 |
| Steam++_linux_arm_v2.6.0.rpm | SHA256 |
| | |
| Steam++_linux_x64_fde_v2.6.0.rpm | SHA256 |
| Steam++_linux_arm64_fde_v2.6.0.rpm | SHA256 |
| Steam++_linux_arm_fde_v2.6.0.rpm | SHA256 |
| | |
| Steam++_macos_x64_v2.6.0.dmg | SHA256 |
| Steam++_macos_x64_fde_v2.6.0.dmg | SHA256 |
| Steam++_macos_arm64_v2.6.0.dmg | SHA256 |
| Steam++_macos_arm64_fde_v2.6.0.dmg | SHA256 |
| | |
| Steam++_macos_x64_v2.6.0.7z | SHA256 |
| Steam++_macos_x64_fde_v2.6.0.7z | SHA256 |
| Steam++_macos_arm64_v2.6.0.7z | SHA256 |
| Steam++_macos_arm64_fde_v2.6.0.7z | SHA256 |
| | |
| Steam++_android_arm64_v8a_v2.6.0.apk | SHA256 |
| Steam++_android_armeabi_v7a_v2.6.0.apk | SHA256 |
Expand Down

This file was deleted.

This file was deleted.

4 changes: 4 additions & 0 deletions src/ST.Tools.Publish/Steps/Step_start.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ internal static class Step5

foreach (var item in dirNames)
{
var isMacOS = item.Name.StartsWith("osx");
// ASP.NET Core Runtime 6.0.0 缺少 macOS Installers
if (isMacOS && d == DeploymentMode.FDE) continue;

if (!Directory.Exists(item.Path))
{
Console.WriteLine($"错误:找不到发布文件夹({item.Name}),{item.Path}");
Expand Down

0 comments on commit bcff694

Please sign in to comment.