Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ body:
label: System version
description: Choose a system version where you found the problem / 选择一个你发现问题的系统版本
options:
- label: Windows 10 (Build 19041+)
- label: Windows 11 21H2 (Build 22000)
- label: Others / 其它
- type: input
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

[![GitHub release (latest by date)](https://img.shields.io/github/v/release/Richasy/LoopbackManager.Desktop)](https://github.com/Richasy/LoopbackManager.Desktop/releases) ![GitHub Release Date](https://img.shields.io/github/release-date/Richasy/LoopbackManager.Desktop) ![GitHub All Releases](https://img.shields.io/github/downloads/Richasy/LoopbackManager.Desktop/total) ![GitHub stars](https://img.shields.io/github/stars/Richasy/LoopbackManager.Desktop?style=flat) ![GitHub forks](https://img.shields.io/github/forks/Richasy/LoopbackManager.Desktop)

Windows 11 的本地网络回环管理器
Windows 10 / Windows 11 的本地网络回环管理器

[English](README_EN.md)

Expand Down Expand Up @@ -49,7 +49,7 @@ Windows 11 的本地网络回环管理器

将链接 `ms-windows-store://pdp/?productid=9NTJ6CX698CL` 复制到浏览器地址栏打开,从 Microsoft Store 获取。获取后会永久保留在你的 Microsoft 账户下,可以通过 Store 进行下载加速与静默更新。

商店版本仅支持 Windows 11 及以上的系统。
最低系统要求为 Windows 10 2004(Build 19041),同时支持 Windows 11。

### 侧加载 (Sideload)

Expand Down
4 changes: 2 additions & 2 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

[![GitHub release (latest by date)](https://img.shields.io/github/v/release/Richasy/LoopbackManager.Desktop)](https://github.com/Richasy/LoopbackManager.Desktop/releases) ![GitHub Release Date](https://img.shields.io/github/release-date/Richasy/LoopbackManager.Desktop) ![GitHub All Releases](https://img.shields.io/github/downloads/Richasy/LoopbackManager.Desktop/total) ![GitHub stars](https://img.shields.io/github/stars/Richasy/LoopbackManager.Desktop?style=flat) ![GitHub forks](https://img.shields.io/github/forks/Richasy/LoopbackManager.Desktop)

Local Network Loopback Manager for Windows 11
Local Network Loopback Manager for Windows 10 / Windows 11

[简体中文](README.md)

Expand Down Expand Up @@ -54,7 +54,7 @@ packaging support.

Copy the link `ms-windows-store://pdp/?productid=9NTJ6CX698CL` to the browser address bar to open it and get it from the Microsoft Store. After you get it, it will remain permanently under your Microsoft account, and you can download accelerated and silent updates through the Store.

The store version only supports Windows 11 and above.
Requires Windows 10 version 2004 (build 19041) or later, including Windows 11.

### Sideload

Expand Down
11 changes: 6 additions & 5 deletions src/LoopbackManager.Shell/LoopbackManager.Shell.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<!-- NativeAOT: `dotnet publish -r win-x64` produces one self-contained native .exe. -->
<PublishAot>true</PublishAot>
<SproutPackageFormat>Msix</SproutPackageFormat>
<SproutAppxVersion>2.2609.5.0</SproutAppxVersion>

<!-- Windows App SDK, self-contained + unpackaged: the WinAppSDK runtime is bundled next to the app, so there is no
runtime to install, no bootstrapper, and no MSIX requirement — the app stays "just run the .exe" (Sprout's
Expand Down Expand Up @@ -56,18 +57,18 @@
Microsoft.WindowsAppSDK.WinUI, so no WinUI XAML is pulled in: Sprout draws the UI itself. -->
<PackageReference Include="Microsoft.WindowsAppSDK.Foundation" Version="2.1.0" />

<PackageReference Include="Sprout" Version="0.1.0-local.g449353c3d1e0" />
<PackageReference Include="Sprout.Backend.D2D" Version="0.1.0-local.g449353c3d1e0" />
<PackageReference Include="Sprout" Version="0.1.0-local.g3052b620dd96" />
<PackageReference Include="Sprout.Backend.D2D" Version="0.1.0-local.g3052b620dd96" />

<!-- The standalone Fluent System Icons package: Icon.Fluent(FluentSymbol.X, …) leaves (namespace Sprout.Controls). -->
<PackageReference Include="Sprout.FluentIcon" Version="0.1.0-local.g449353c3d1e0" />
<PackageReference Include="Sprout.FluentIcon" Version="0.1.0-local.g3052b620dd96" />

<!-- The Sprout to WinRT interop glue (Foundation-only, no WinUI): window.GetWindowId() / window.CreateFileOpenPicker()
/ picker.InitializeWithWindow(window), bridging a Sprout window to the Windows App SDK window handles. -->
<PackageReference Include="Sprout.WindowsAppSDK" Version="0.1.0-local.g449353c3d1e0" />
<PackageReference Include="Sprout.WindowsAppSDK" Version="0.1.0-local.g3052b620dd96" />
<!-- Opt-in MSIX packaging: `dotnet publish -r win-x64` then also produces a signed .msix (the self-contained
WinAppSDK runtime is bundled inside it). No Windows App SDK MSIX tooling — the same Sprout packer is used. -->
<PackageReference Include="Sprout.Packaging" Version="0.1.0-local.g449353c3d1e0" />
<PackageReference Include="Sprout.Packaging" Version="0.1.0-local.g3052b620dd96" />
</ItemGroup>

</Project>
Loading