mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-22 00:54:26 +08:00
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
57c5e41a5c | ||
|
|
ce2b218dfa | ||
|
|
efdfa68dab | ||
|
|
87110f1d69 | ||
|
|
e7a03404ce | ||
|
|
2781d7e0d9 | ||
|
|
5003ff1be2 | ||
|
|
e1be072b97 | ||
|
|
4df740e3df | ||
|
|
85f7a18cbc |
17
.github/FIX_REPORT.md
vendored
17
.github/FIX_REPORT.md
vendored
@@ -8,14 +8,14 @@ MSBUILD : error MSB1003: Specify a project or solution file.
|
|||||||
The current working directory does not contain a project or solution file.
|
The current working directory does not contain a project or solution file.
|
||||||
```
|
```
|
||||||
|
|
||||||
**原因**: 项目中缺少 `LanMountainDesktop.sln` 解决方案文件,但工作流尝试执行 `dotnet restore` 而没有指定项目。
|
**原因**: 项目中缺少 `LanMountainDesktop.slnx` 解决方案文件,但工作流尝试执行 `dotnet restore` 而没有指定项目。
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 🔧 已采取的修复
|
## 🔧 已采取的修复
|
||||||
|
|
||||||
### 1. 创建解决方案文件
|
### 1. 创建 `.slnx` 解决方案文件
|
||||||
✅ 创建了标准的 `LanMountainDesktop.sln` 文件,包含:
|
✅ 创建了标准的 `LanMountainDesktop.slnx` 文件,包含:
|
||||||
- `LanMountainDesktop/LanMountainDesktop.csproj`
|
- `LanMountainDesktop/LanMountainDesktop.csproj`
|
||||||
|
|
||||||
### 2. 验证本地构建工作
|
### 2. 验证本地构建工作
|
||||||
@@ -35,10 +35,10 @@ The current working directory does not contain a project or solution file.
|
|||||||
|
|
||||||
## 📋 解决方案文件内容
|
## 📋 解决方案文件内容
|
||||||
|
|
||||||
包含主桌面项目的标准 Visual Studio 解决方案格式:
|
包含主桌面项目的标准 XML 解决方案格式:
|
||||||
|
|
||||||
```
|
```
|
||||||
LanMountainDesktop.sln
|
LanMountainDesktop.slnx
|
||||||
└── LanMountainDesktop (Desktop UI - Avalonia)
|
└── LanMountainDesktop (Desktop UI - Avalonia)
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -50,10 +50,11 @@ LanMountainDesktop.sln
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 1. 添加新创建的解决方案文件
|
# 1. 添加新创建的解决方案文件
|
||||||
git add LanMountainDesktop.sln
|
git add LanMountainDesktop.slnx
|
||||||
|
git add global.json
|
||||||
|
|
||||||
# 2. 提交
|
# 2. 提交
|
||||||
git commit -m "Add solution file for desktop project"
|
git commit -m "Migrate desktop solution to .slnx"
|
||||||
|
|
||||||
# 3. 推送
|
# 3. 推送
|
||||||
git push origin main
|
git push origin main
|
||||||
@@ -92,7 +93,7 @@ git push origin v1.0.1
|
|||||||
| `.github/workflows/code-quality.yml` | 代码质量检查 | ✅ 可用 |
|
| `.github/workflows/code-quality.yml` | 代码质量检查 | ✅ 可用 |
|
||||||
| `.github/workflows/release.yml` | 多平台发布 | ✅ 可用 |
|
| `.github/workflows/release.yml` | 多平台发布 | ✅ 可用 |
|
||||||
| `.github/workflows/issue-management.yml` | Issue自动管理 | ✅ 可用 |
|
| `.github/workflows/issue-management.yml` | Issue自动管理 | ✅ 可用 |
|
||||||
| `LanMountainDesktop.sln` | 解决方案文件 | ✅ 已修复 |
|
| `LanMountainDesktop.slnx` | 解决方案文件 | ✅ 已修复 |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
3
.github/README.md
vendored
3
.github/README.md
vendored
@@ -36,9 +36,10 @@
|
|||||||
- 扩展契约与字段说明见组件系统文档:`LanMountainDesktop/ComponentSystem/README.md`。
|
- 扩展契约与字段说明见组件系统文档:`LanMountainDesktop/ComponentSystem/README.md`。
|
||||||
|
|
||||||
## 当前状态
|
## 当前状态
|
||||||
- 项目包含桌面端与推荐后端两个子项目,并在同一 solution 中维护。
|
- 项目包含桌面端与推荐后端两个子项目,并在同一 `LanMountainDesktop.slnx` 工作区中维护。
|
||||||
- 配置默认写入本地:`%LOCALAPPDATA%\LanMountainDesktop\settings.json`。
|
- 配置默认写入本地:`%LOCALAPPDATA%\LanMountainDesktop\settings.json`。
|
||||||
- 当前体验以 Windows 为主要目标平台。
|
- 当前体验以 Windows 为主要目标平台。
|
||||||
|
- SDK 版本由仓库根目录 `global.json` 锁定。
|
||||||
|
|
||||||
## 运行说明
|
## 运行说明
|
||||||
运行与环境准备已拆分到独立文档:[`run.md`](./run.md)
|
运行与环境准备已拆分到独立文档:[`run.md`](./run.md)
|
||||||
|
|||||||
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -9,7 +9,7 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
DOTNET_VERSION: '10.0.x'
|
DOTNET_VERSION: '10.0.x'
|
||||||
Solution_Name: LanMountainDesktop.sln
|
Solution_Name: LanMountainDesktop.slnx
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-windows:
|
build-windows:
|
||||||
|
|||||||
2
.github/workflows/code-quality.yml
vendored
2
.github/workflows/code-quality.yml
vendored
@@ -8,7 +8,7 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
DOTNET_VERSION: '10.0.x'
|
DOTNET_VERSION: '10.0.x'
|
||||||
Solution_Name: LanMountainDesktop.sln
|
Solution_Name: LanMountainDesktop.slnx
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
|
|||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -18,7 +18,7 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
DOTNET_VERSION: '10.0.x'
|
DOTNET_VERSION: '10.0.x'
|
||||||
Solution_Name: LanMountainDesktop.sln
|
Solution_Name: LanMountainDesktop.slnx
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
prepare:
|
prepare:
|
||||||
|
|||||||
10
.gitignore
vendored
10
.gitignore
vendored
@@ -492,3 +492,13 @@ nul
|
|||||||
/_build_verify_plugin_services
|
/_build_verify_plugin_services
|
||||||
/LanMountainDesktop.PluginSdk/_build_verify_*/
|
/LanMountainDesktop.PluginSdk/_build_verify_*/
|
||||||
/_build_obj
|
/_build_obj
|
||||||
|
|
||||||
|
# LanMountainDesktop local workspace files
|
||||||
|
/.arts/
|
||||||
|
/.knox/
|
||||||
|
/.lingma/
|
||||||
|
/.tmp/
|
||||||
|
/publish-test/
|
||||||
|
/validator-restore.log
|
||||||
|
/temp_old_main.axaml
|
||||||
|
/temp_old_main_utf8.axaml
|
||||||
|
|||||||
@@ -1,27 +1,21 @@
|
|||||||
# LanAirApp
|
# LanAirApp
|
||||||
|
|
||||||
`LanAirApp` 是阑山桌面插件生态的对外发布工作区。
|
## 中文
|
||||||
|
|
||||||
这里集中放置:
|
`LanAirApp` 是阑山桌面插件生态的对外工作区。这个目录是宿主仓库中的镜像副本,权威版本以独立 `LanAirApp` 仓库为准。
|
||||||
- 插件开发标准
|
|
||||||
- 插件打包与构建工具
|
|
||||||
- 插件开发与打包文档
|
|
||||||
- 示例插件
|
|
||||||
|
|
||||||
目录结构:
|
### 目录说明
|
||||||
- `docs/`:插件开发文档、打包文档
|
|
||||||
- `plugins/`:第一方插件项目,例如插件市场插件
|
|
||||||
- `releases/`:已经打包完成、可直接分享与安装的 `.laapp` 插件包
|
|
||||||
- `samples/`:示例插件,其中 `LanMountainDesktop.SamplePlugin` 是示例开发插件
|
|
||||||
- `standards/`:插件标准文件与模板
|
|
||||||
- `tools/`:插件打包与构建工具
|
|
||||||
|
|
||||||
面向用户的安装流程:
|
- `docs/`:插件开发与打包文档。
|
||||||
1. 将插件构建或打包为 `.laapp` 文件。
|
- `samples/`:示例插件与参考项目。
|
||||||
2. 打开 `设置 -> 插件`。
|
- `standards/`:插件清单和目录结构约定。
|
||||||
3. 点击 `打开 .laapp 插件包`。
|
- `tools/`:插件打包与辅助工具。
|
||||||
4. 选择插件包完成安装。
|
|
||||||
|
|
||||||
宿主侧的插件加载、安装、发现、解析与设置页接入逻辑,保留在 `LanMountainDesktop/plugins/`。
|
### 与宿主的关系
|
||||||
|
|
||||||
`LanMountainDesktop.PluginSdk` 仅作为插件开发 SDK 使用,提供 `IPlugin`、`IPluginContext`、清单模型与扩展注册接口。
|
- 宿主程序只连接独立 `LanAirApp` 仓库中的官方市场索引。
|
||||||
|
- 每个插件项目应在仓库根目录提供 `.laapp` 和 `README.md`。
|
||||||
|
|
||||||
|
## English
|
||||||
|
|
||||||
|
`LanAirApp` is the external-facing workspace for the LanMountainDesktop plugin ecosystem. This copy is only a mirror inside the host repository; the standalone `LanAirApp` repository remains the source of truth.
|
||||||
|
|||||||
@@ -1,41 +1,16 @@
|
|||||||
# 插件开发文档
|
# 插件开发指南
|
||||||
|
|
||||||
LanMountainDesktop 插件基于 `LanMountainDesktop.PluginSdk` 开发。
|
## 中文
|
||||||
|
|
||||||
`LanAirApp/` 负责对外发布插件开发标准、示例插件和打包工具;宿主应用内部的插件加载与解析逻辑位于 `LanMountainDesktop/plugins/`。
|
使用 `LanMountainDesktop.PluginSdk` 开发插件时,至少需要准备:
|
||||||
`LanMountainDesktop.PluginSdk` 只提供插件作者需要依赖的开发契约,不再承载宿主侧运行时加载实现。
|
|
||||||
|
|
||||||
## 必需文件
|
|
||||||
- `plugin.json`
|
- `plugin.json`
|
||||||
- `plugin.json` 中声明的入口程序集
|
- 插件入口程序集
|
||||||
- 使用插件入口特性标记的入口类型
|
- 入口类
|
||||||
|
- 本地化资源
|
||||||
|
|
||||||
## 推荐开发流程
|
推荐从示例插件开始,先完成清单、入口、设置页和桌面组件,再逐步扩展业务逻辑。
|
||||||
1. 以 `LanAirApp/samples/LanMountainDesktop.SamplePlugin` 为起点。
|
|
||||||
2. 修改 `plugin.json`,填写你自己的插件 `id`、名称、作者、版本和入口程序集。
|
|
||||||
3. 实现 `IPlugin` 或继承 `PluginBase`。
|
|
||||||
4. 通过 `IPluginContext` 注册服务、设置页和桌面组件。
|
|
||||||
5. 将输出内容打包为 `.laapp` 文件。
|
|
||||||
|
|
||||||
## 运行时能力
|
## English
|
||||||
- 插件可以注册自己的设置页。
|
|
||||||
- 插件可以注册自己的桌面组件。
|
|
||||||
- 插件可以注册自己的服务,并通过插件消息总线进行通信。
|
|
||||||
- 宿主优先加载 `.laapp` 包,其次才是散装清单。
|
|
||||||
|
|
||||||
## 多语言建议
|
To build a plugin with `LanMountainDesktop.PluginSdk`, prepare the manifest, plugin assembly, entrance class, and localization resources first.
|
||||||
- 插件应当内置 `Localization/zh-CN.json` 与 `Localization/en-US.json`。
|
|
||||||
- 插件界面文案、组件文案、状态文案建议统一通过插件本地化层读取。
|
|
||||||
- 建议优先读取宿主传入的语言代码,再回退到插件默认语言。
|
|
||||||
|
|
||||||
## 目录建议
|
|
||||||
一个标准插件项目建议至少包含:
|
|
||||||
- `plugin.json`
|
|
||||||
- `Localization/zh-CN.json`
|
|
||||||
- `Localization/en-US.json`
|
|
||||||
- 插件程序集与依赖文件
|
|
||||||
|
|
||||||
## 示例项目与工具
|
|
||||||
- 示例插件:`LanAirApp/samples/LanMountainDesktop.SamplePlugin`
|
|
||||||
- 打包工具:`LanAirApp/tools/LanMountainDesktop.PluginPackager`
|
|
||||||
- 标准模板:`LanAirApp/standards/plugin.template.json`
|
|
||||||
|
|||||||
@@ -1,34 +1,14 @@
|
|||||||
# 插件打包文档
|
# 插件打包指南
|
||||||
|
|
||||||
LanMountainDesktop 插件的安装包格式固定为 `.laapp`。
|
## 中文
|
||||||
|
|
||||||
`LanAirApp/` 负责提供打包标准与打包工具;`.laapp` 的安装、发现和运行时加载由 `LanMountainDesktop/plugins/` 负责。
|
阑山桌面插件的标准安装格式为 `.laapp`。插件项目应在仓库根目录提供:
|
||||||
|
|
||||||
## `.laapp` 格式说明
|
- `.laapp` 安装包
|
||||||
- 本质上是一个标准 zip 压缩包
|
- `README.md`
|
||||||
- 包根目录必须包含 `plugin.json`
|
|
||||||
- 包根目录还必须包含入口程序集及其依赖
|
|
||||||
|
|
||||||
## 建议打包内容
|
官方市场索引只负责记录链接和校验信息。
|
||||||
- `plugin.json`
|
|
||||||
- `YourPlugin.dll`
|
|
||||||
- 依赖程序集
|
|
||||||
- `Localization/zh-CN.json`
|
|
||||||
- `Localization/en-US.json`
|
|
||||||
- 插件运行所需的其他资源文件
|
|
||||||
|
|
||||||
## 使用打包工具
|
## English
|
||||||
```powershell
|
|
||||||
dotnet run --project .\LanAirApp\tools\LanMountainDesktop.PluginPackager -- --input .\path\to\plugin-output --output .\artifacts\YourPlugin.laapp --overwrite
|
|
||||||
```
|
|
||||||
|
|
||||||
## 应用内安装流程
|
The standard package format is `.laapp`. Plugin repositories should keep the package and `README.md` in the repository root, while the official market index stores metadata and validation data.
|
||||||
1. 打开 `设置 -> 插件`
|
|
||||||
2. 点击 `打开 .laapp 插件包`
|
|
||||||
3. 选择要安装的插件包
|
|
||||||
4. 如果插件注册了设置页或组件,安装后重启应用
|
|
||||||
|
|
||||||
## 注意事项
|
|
||||||
- `plugin.json` 中的 `entranceAssembly` 必须能在包内找到。
|
|
||||||
- 包内应尽量避免无关开发产物。
|
|
||||||
- `.laapp` 是标准安装格式,建议不要对外分发散装目录。
|
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
namespace LanMountainDesktop.PluginMarketplace;
|
|
||||||
|
|
||||||
internal sealed class AirAppMarketCacheService
|
|
||||||
{
|
|
||||||
private readonly string _cacheDirectory;
|
|
||||||
|
|
||||||
public AirAppMarketCacheService(string dataDirectory)
|
|
||||||
{
|
|
||||||
ArgumentException.ThrowIfNullOrWhiteSpace(dataDirectory);
|
|
||||||
_cacheDirectory = Path.Combine(dataDirectory, "cache");
|
|
||||||
}
|
|
||||||
|
|
||||||
public string CacheFilePath => Path.Combine(_cacheDirectory, "index.json");
|
|
||||||
|
|
||||||
public void SaveIndexJson(string json)
|
|
||||||
{
|
|
||||||
ArgumentException.ThrowIfNullOrWhiteSpace(json);
|
|
||||||
Directory.CreateDirectory(_cacheDirectory);
|
|
||||||
File.WriteAllText(CacheFilePath, json);
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool TryReadIndexJson(out string json)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
if (!File.Exists(CacheFilePath))
|
|
||||||
{
|
|
||||||
json = string.Empty;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
json = File.ReadAllText(CacheFilePath);
|
|
||||||
return !string.IsNullOrWhiteSpace(json);
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
json = string.Empty;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,77 +0,0 @@
|
|||||||
using System.Net.Http.Headers;
|
|
||||||
|
|
||||||
namespace LanMountainDesktop.PluginMarketplace;
|
|
||||||
|
|
||||||
internal sealed class AirAppMarketIndexService : IDisposable
|
|
||||||
{
|
|
||||||
private readonly AirAppMarketCacheService _cacheService;
|
|
||||||
private readonly HttpClient _httpClient;
|
|
||||||
|
|
||||||
public AirAppMarketIndexService(AirAppMarketCacheService cacheService)
|
|
||||||
{
|
|
||||||
_cacheService = cacheService;
|
|
||||||
_httpClient = new HttpClient
|
|
||||||
{
|
|
||||||
Timeout = TimeSpan.FromSeconds(20)
|
|
||||||
};
|
|
||||||
_httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("LanMountainDesktop-PluginMarketplace/1.0");
|
|
||||||
_httpClient.DefaultRequestHeaders.Accept.Add(
|
|
||||||
new MediaTypeWithQualityHeaderValue("application/json"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<AirAppMarketLoadResult> LoadAsync(CancellationToken cancellationToken = default)
|
|
||||||
{
|
|
||||||
Exception? networkError = null;
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
using var response = await _httpClient.GetAsync(
|
|
||||||
AirAppMarketDefaults.DefaultIndexUrl,
|
|
||||||
cancellationToken);
|
|
||||||
var json = await response.Content.ReadAsStringAsync(cancellationToken);
|
|
||||||
response.EnsureSuccessStatusCode();
|
|
||||||
|
|
||||||
var document = AirAppMarketIndexDocument.Load(json, AirAppMarketDefaults.DefaultIndexUrl);
|
|
||||||
_cacheService.SaveIndexJson(json);
|
|
||||||
return new AirAppMarketLoadResult(true, document, AirAppMarketLoadSource.Network, null, null);
|
|
||||||
}
|
|
||||||
catch (OperationCanceledException)
|
|
||||||
{
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
networkError = ex;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_cacheService.TryReadIndexJson(out var cachedJson))
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var cachedDocument = AirAppMarketIndexDocument.Load(cachedJson, _cacheService.CacheFilePath);
|
|
||||||
return new AirAppMarketLoadResult(
|
|
||||||
true,
|
|
||||||
cachedDocument,
|
|
||||||
AirAppMarketLoadSource.Cache,
|
|
||||||
networkError?.Message,
|
|
||||||
null);
|
|
||||||
}
|
|
||||||
catch (Exception cacheEx)
|
|
||||||
{
|
|
||||||
return new AirAppMarketLoadResult(
|
|
||||||
false,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
$"{networkError?.Message ?? "Unknown network error"} | Cached index invalid: {cacheEx.Message}");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return new AirAppMarketLoadResult(false, null, null, null, networkError?.Message ?? "Unknown network error");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Dispose()
|
|
||||||
{
|
|
||||||
_httpClient.Dispose();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
using System.Security.Cryptography;
|
|
||||||
using LanMountainDesktop.PluginSdk;
|
|
||||||
|
|
||||||
namespace LanMountainDesktop.PluginMarketplace;
|
|
||||||
|
|
||||||
internal sealed class AirAppMarketInstallService : IDisposable
|
|
||||||
{
|
|
||||||
private readonly IPluginPackageManager _packageManager;
|
|
||||||
private readonly HttpClient _httpClient;
|
|
||||||
private readonly string _downloadsDirectory;
|
|
||||||
|
|
||||||
public AirAppMarketInstallService(IPluginPackageManager packageManager, string dataDirectory)
|
|
||||||
{
|
|
||||||
_packageManager = packageManager;
|
|
||||||
_downloadsDirectory = Path.Combine(dataDirectory, "downloads");
|
|
||||||
_httpClient = new HttpClient
|
|
||||||
{
|
|
||||||
Timeout = TimeSpan.FromMinutes(2)
|
|
||||||
};
|
|
||||||
_httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("LanMountainDesktop-PluginMarketplace/1.0");
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<AirAppMarketInstallResult> InstallAsync(
|
|
||||||
AirAppMarketPluginEntry plugin,
|
|
||||||
CancellationToken cancellationToken = default)
|
|
||||||
{
|
|
||||||
ArgumentNullException.ThrowIfNull(plugin);
|
|
||||||
|
|
||||||
Directory.CreateDirectory(_downloadsDirectory);
|
|
||||||
var downloadPath = Path.Combine(
|
|
||||||
_downloadsDirectory,
|
|
||||||
$"{SanitizeFileName(plugin.Id)}-{SanitizeFileName(plugin.Version)}.laapp");
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
using var response = await _httpClient.GetAsync(
|
|
||||||
plugin.DownloadUrl,
|
|
||||||
HttpCompletionOption.ResponseHeadersRead,
|
|
||||||
cancellationToken);
|
|
||||||
response.EnsureSuccessStatusCode();
|
|
||||||
|
|
||||||
await using (var responseStream = await response.Content.ReadAsStreamAsync(cancellationToken))
|
|
||||||
await using (var destinationStream = File.Create(downloadPath))
|
|
||||||
{
|
|
||||||
await responseStream.CopyToAsync(destinationStream, cancellationToken);
|
|
||||||
}
|
|
||||||
|
|
||||||
await using var hashStream = File.OpenRead(downloadPath);
|
|
||||||
var hashBytes = await SHA256.HashDataAsync(hashStream, cancellationToken);
|
|
||||||
var actualHash = Convert.ToHexString(hashBytes).ToLowerInvariant();
|
|
||||||
if (!string.Equals(actualHash, plugin.Sha256, StringComparison.OrdinalIgnoreCase))
|
|
||||||
{
|
|
||||||
File.Delete(downloadPath);
|
|
||||||
return new AirAppMarketInstallResult(
|
|
||||||
false,
|
|
||||||
null,
|
|
||||||
$"SHA-256 mismatch. Expected {plugin.Sha256}, actual {actualHash}.");
|
|
||||||
}
|
|
||||||
|
|
||||||
var installResult = _packageManager.InstallPackage(downloadPath);
|
|
||||||
return new AirAppMarketInstallResult(true, installResult, null);
|
|
||||||
}
|
|
||||||
catch (OperationCanceledException)
|
|
||||||
{
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
return new AirAppMarketInstallResult(false, null, ex.Message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Dispose()
|
|
||||||
{
|
|
||||||
_httpClient.Dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string SanitizeFileName(string value)
|
|
||||||
{
|
|
||||||
var invalidChars = Path.GetInvalidFileNameChars();
|
|
||||||
return new string(value.Select(ch => invalidChars.Contains(ch) ? '_' : ch).ToArray());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,299 +0,0 @@
|
|||||||
using System.Globalization;
|
|
||||||
using System.Text.Json;
|
|
||||||
using LanMountainDesktop.PluginSdk;
|
|
||||||
|
|
||||||
namespace LanMountainDesktop.PluginMarketplace;
|
|
||||||
|
|
||||||
internal static class AirAppMarketDefaults
|
|
||||||
{
|
|
||||||
public const string DefaultIndexUrl =
|
|
||||||
"https://raw.githubusercontent.com/wwiinnddyy/LanMountainDesktop/main/airappmarket/index.json";
|
|
||||||
}
|
|
||||||
|
|
||||||
internal enum AirAppMarketLoadSource
|
|
||||||
{
|
|
||||||
Network = 0,
|
|
||||||
Cache = 1
|
|
||||||
}
|
|
||||||
|
|
||||||
internal enum AirAppMarketInstallState
|
|
||||||
{
|
|
||||||
NotInstalled = 0,
|
|
||||||
UpdateAvailable = 1,
|
|
||||||
Installed = 2
|
|
||||||
}
|
|
||||||
|
|
||||||
internal sealed record AirAppMarketLoadResult(
|
|
||||||
bool Success,
|
|
||||||
AirAppMarketIndexDocument? Document,
|
|
||||||
AirAppMarketLoadSource? Source,
|
|
||||||
string? WarningMessage,
|
|
||||||
string? ErrorMessage);
|
|
||||||
|
|
||||||
internal sealed record AirAppMarketInstallResult(
|
|
||||||
bool Success,
|
|
||||||
PluginPackageInstallResult? InstallResult,
|
|
||||||
string? ErrorMessage);
|
|
||||||
|
|
||||||
internal sealed class AirAppMarketIndexDocument
|
|
||||||
{
|
|
||||||
private static readonly JsonSerializerOptions SerializerOptions = new()
|
|
||||||
{
|
|
||||||
PropertyNameCaseInsensitive = true,
|
|
||||||
ReadCommentHandling = JsonCommentHandling.Skip,
|
|
||||||
AllowTrailingCommas = true
|
|
||||||
};
|
|
||||||
|
|
||||||
public string SchemaVersion { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string SourceId { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string SourceName { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public DateTimeOffset GeneratedAt { get; init; }
|
|
||||||
|
|
||||||
public List<AirAppMarketPluginEntry> Plugins { get; init; } = [];
|
|
||||||
|
|
||||||
public static AirAppMarketIndexDocument Load(string json, string sourceName)
|
|
||||||
{
|
|
||||||
ArgumentException.ThrowIfNullOrWhiteSpace(json);
|
|
||||||
ArgumentException.ThrowIfNullOrWhiteSpace(sourceName);
|
|
||||||
|
|
||||||
var document = JsonSerializer.Deserialize<AirAppMarketIndexDocument>(
|
|
||||||
json.TrimStart('\uFEFF'),
|
|
||||||
SerializerOptions);
|
|
||||||
|
|
||||||
if (document is null)
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException($"Failed to parse market index '{sourceName}'.");
|
|
||||||
}
|
|
||||||
|
|
||||||
return document.ValidateAndNormalize(sourceName);
|
|
||||||
}
|
|
||||||
|
|
||||||
private AirAppMarketIndexDocument ValidateAndNormalize(string sourceName)
|
|
||||||
{
|
|
||||||
var plugins = Plugins ?? [];
|
|
||||||
var normalizedPlugins = new List<AirAppMarketPluginEntry>(plugins.Count);
|
|
||||||
var seenIds = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
|
|
||||||
|
|
||||||
foreach (var plugin in plugins)
|
|
||||||
{
|
|
||||||
var normalizedPlugin = plugin.ValidateAndNormalize(sourceName);
|
|
||||||
if (!seenIds.Add(normalizedPlugin.Id))
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' contains duplicate plugin id '{normalizedPlugin.Id}'.");
|
|
||||||
}
|
|
||||||
|
|
||||||
normalizedPlugins.Add(normalizedPlugin);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new AirAppMarketIndexDocument
|
|
||||||
{
|
|
||||||
SchemaVersion = RequireValue(SchemaVersion, nameof(SchemaVersion), sourceName),
|
|
||||||
SourceId = RequireValue(SourceId, nameof(SourceId), sourceName),
|
|
||||||
SourceName = RequireValue(SourceName, nameof(SourceName), sourceName),
|
|
||||||
GeneratedAt = GeneratedAt == default
|
|
||||||
? throw new InvalidOperationException($"Market index '{sourceName}' is missing a valid generatedAt timestamp.")
|
|
||||||
: GeneratedAt,
|
|
||||||
Plugins = normalizedPlugins
|
|
||||||
.OrderBy(plugin => plugin.Name, StringComparer.OrdinalIgnoreCase)
|
|
||||||
.ToList()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string RequireValue(string? value, string propertyName, string sourceName)
|
|
||||||
{
|
|
||||||
var normalized = NormalizeValue(value);
|
|
||||||
if (string.IsNullOrWhiteSpace(normalized))
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException($"Market index '{sourceName}' is missing required property '{propertyName}'.");
|
|
||||||
}
|
|
||||||
|
|
||||||
return normalized;
|
|
||||||
}
|
|
||||||
|
|
||||||
internal static string? NormalizeValue(string? value)
|
|
||||||
{
|
|
||||||
return string.IsNullOrWhiteSpace(value) ? null : value.Trim();
|
|
||||||
}
|
|
||||||
|
|
||||||
internal static string NormalizeVersion(string? value, string propertyName, string sourceName)
|
|
||||||
{
|
|
||||||
var normalized = RequireValue(value, propertyName, sourceName);
|
|
||||||
if (!TryParseVersion(normalized, out _))
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' declares invalid version '{normalized}' for '{propertyName}'.");
|
|
||||||
}
|
|
||||||
|
|
||||||
return normalized;
|
|
||||||
}
|
|
||||||
|
|
||||||
internal static void EnsureUrl(string url, string propertyName, string sourceName)
|
|
||||||
{
|
|
||||||
if (!Uri.TryCreate(url, UriKind.Absolute, out var uri) ||
|
|
||||||
(uri.Scheme != Uri.UriSchemeHttp && uri.Scheme != Uri.UriSchemeHttps))
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' declares invalid URL '{url}' for '{propertyName}'.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
internal static bool TryParseVersion(string? value, out Version? version)
|
|
||||||
{
|
|
||||||
version = null;
|
|
||||||
var normalized = NormalizeValue(value);
|
|
||||||
if (string.IsNullOrWhiteSpace(normalized))
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (normalized.StartsWith("v", StringComparison.OrdinalIgnoreCase))
|
|
||||||
{
|
|
||||||
normalized = normalized[1..];
|
|
||||||
}
|
|
||||||
|
|
||||||
var separatorIndex = normalized.IndexOfAny(['-', '+', ' ']);
|
|
||||||
if (separatorIndex > 0)
|
|
||||||
{
|
|
||||||
normalized = normalized[..separatorIndex];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!Version.TryParse(normalized, out var parsed))
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
version = new Version(
|
|
||||||
Math.Max(0, parsed.Major),
|
|
||||||
Math.Max(0, parsed.Minor),
|
|
||||||
Math.Max(0, parsed.Build));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
internal sealed class AirAppMarketPluginEntry
|
|
||||||
{
|
|
||||||
public string Id { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string Name { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string Description { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string Author { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string Version { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string ApiVersion { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string MinHostVersion { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string DownloadUrl { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string Sha256 { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public long PackageSizeBytes { get; init; }
|
|
||||||
|
|
||||||
public string IconUrl { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string HomepageUrl { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public string RepositoryUrl { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public List<string> Tags { get; init; } = [];
|
|
||||||
|
|
||||||
public DateTimeOffset PublishedAt { get; init; }
|
|
||||||
|
|
||||||
public DateTimeOffset UpdatedAt { get; init; }
|
|
||||||
|
|
||||||
public string ReleaseNotes { get; init; } = string.Empty;
|
|
||||||
|
|
||||||
public AirAppMarketPluginEntry ValidateAndNormalize(string sourceName)
|
|
||||||
{
|
|
||||||
var normalizedTags = (Tags ?? [])
|
|
||||||
.Select(tag => AirAppMarketIndexDocument.NormalizeValue(tag))
|
|
||||||
.Where(tag => !string.IsNullOrWhiteSpace(tag))
|
|
||||||
.Select(tag => tag!)
|
|
||||||
.Distinct(StringComparer.OrdinalIgnoreCase)
|
|
||||||
.OrderBy(tag => tag, StringComparer.OrdinalIgnoreCase)
|
|
||||||
.ToList();
|
|
||||||
|
|
||||||
var normalizedSha = AirAppMarketIndexDocument.NormalizeValue(Sha256)?.ToLowerInvariant()
|
|
||||||
?? throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' is missing required property '{nameof(Sha256)}'.");
|
|
||||||
|
|
||||||
if (normalizedSha.Length != 64 || normalizedSha.Any(ch => !Uri.IsHexDigit(ch)))
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' declares invalid SHA-256 '{normalizedSha}' for plugin '{Id}'.");
|
|
||||||
}
|
|
||||||
|
|
||||||
var normalizedDownloadUrl = AirAppMarketIndexDocument.NormalizeValue(DownloadUrl)
|
|
||||||
?? throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' is missing required property '{nameof(DownloadUrl)}'.");
|
|
||||||
var normalizedIconUrl = AirAppMarketIndexDocument.NormalizeValue(IconUrl)
|
|
||||||
?? throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' is missing required property '{nameof(IconUrl)}'.");
|
|
||||||
var normalizedHomepageUrl = AirAppMarketIndexDocument.NormalizeValue(HomepageUrl)
|
|
||||||
?? throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' is missing required property '{nameof(HomepageUrl)}'.");
|
|
||||||
var normalizedRepositoryUrl = AirAppMarketIndexDocument.NormalizeValue(RepositoryUrl)
|
|
||||||
?? throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' is missing required property '{nameof(RepositoryUrl)}'.");
|
|
||||||
|
|
||||||
AirAppMarketIndexDocument.EnsureUrl(normalizedDownloadUrl, nameof(DownloadUrl), sourceName);
|
|
||||||
AirAppMarketIndexDocument.EnsureUrl(normalizedIconUrl, nameof(IconUrl), sourceName);
|
|
||||||
AirAppMarketIndexDocument.EnsureUrl(normalizedHomepageUrl, nameof(HomepageUrl), sourceName);
|
|
||||||
AirAppMarketIndexDocument.EnsureUrl(normalizedRepositoryUrl, nameof(RepositoryUrl), sourceName);
|
|
||||||
|
|
||||||
if (PackageSizeBytes <= 0)
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' declares invalid packageSizeBytes '{PackageSizeBytes}' for plugin '{Id}'.");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (PublishedAt == default || UpdatedAt == default)
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException(
|
|
||||||
$"Market index '{sourceName}' is missing valid publish timestamps for plugin '{Id}'.");
|
|
||||||
}
|
|
||||||
|
|
||||||
return new AirAppMarketPluginEntry
|
|
||||||
{
|
|
||||||
Id = AirAppMarketIndexDocument.NormalizeValue(Id)
|
|
||||||
?? throw new InvalidOperationException($"Market index '{sourceName}' is missing plugin id."),
|
|
||||||
Name = AirAppMarketIndexDocument.NormalizeValue(Name)
|
|
||||||
?? throw new InvalidOperationException($"Market index '{sourceName}' is missing plugin name."),
|
|
||||||
Description = AirAppMarketIndexDocument.NormalizeValue(Description)
|
|
||||||
?? throw new InvalidOperationException($"Market index '{sourceName}' is missing plugin description."),
|
|
||||||
Author = AirAppMarketIndexDocument.NormalizeValue(Author)
|
|
||||||
?? throw new InvalidOperationException($"Market index '{sourceName}' is missing plugin author."),
|
|
||||||
Version = AirAppMarketIndexDocument.NormalizeVersion(Version, nameof(Version), sourceName),
|
|
||||||
ApiVersion = AirAppMarketIndexDocument.NormalizeVersion(ApiVersion, nameof(ApiVersion), sourceName),
|
|
||||||
MinHostVersion = AirAppMarketIndexDocument.NormalizeVersion(MinHostVersion, nameof(MinHostVersion), sourceName),
|
|
||||||
DownloadUrl = normalizedDownloadUrl,
|
|
||||||
Sha256 = normalizedSha,
|
|
||||||
PackageSizeBytes = PackageSizeBytes,
|
|
||||||
IconUrl = normalizedIconUrl,
|
|
||||||
HomepageUrl = normalizedHomepageUrl,
|
|
||||||
RepositoryUrl = normalizedRepositoryUrl,
|
|
||||||
Tags = normalizedTags,
|
|
||||||
PublishedAt = PublishedAt,
|
|
||||||
UpdatedAt = UpdatedAt,
|
|
||||||
ReleaseNotes = AirAppMarketIndexDocument.NormalizeValue(ReleaseNotes)
|
|
||||||
?? throw new InvalidOperationException($"Market index '{sourceName}' is missing release notes for plugin '{Id}'.")
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
public string GetVersionSummary()
|
|
||||||
{
|
|
||||||
return string.Format(
|
|
||||||
CultureInfo.InvariantCulture,
|
|
||||||
"v{0} | API {1} | Host >= {2}",
|
|
||||||
Version,
|
|
||||||
ApiVersion,
|
|
||||||
MinHostVersion);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<Version>1.0.0</Version>
|
|
||||||
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
||||||
<OutputPath>bin\$(Configuration)\$(TargetFramework)\content\</OutputPath>
|
|
||||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
||||||
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
||||||
<PluginPackageOutputDirectory>..\..\..\LanMountainDesktop\bin\$(Configuration)\$(TargetFramework)\Extensions\Plugins\</PluginPackageOutputDirectory>
|
|
||||||
<PluginPackagePath>$(PluginPackageOutputDirectory)$(AssemblyName).laapp</PluginPackagePath>
|
|
||||||
<PluginReleaseOutputDirectory>..\..\releases\</PluginReleaseOutputDirectory>
|
|
||||||
<PluginReleasePackagePath>$(PluginReleaseOutputDirectory)$(AssemblyName).$(Version).laapp</PluginReleasePackagePath>
|
|
||||||
<LegacyLoosePluginOutputDirectory>..\..\..\LanMountainDesktop\bin\$(Configuration)\$(TargetFramework)\Extensions\Plugins\PluginMarketplace\</LegacyLoosePluginOutputDirectory>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\..\..\LanMountainDesktop.PluginSdk\LanMountainDesktop.PluginSdk.csproj" Private="false" />
|
|
||||||
<None Include="plugin.json" CopyToOutputDirectory="PreserveNewest" />
|
|
||||||
<None Include="Localization\*.json" CopyToOutputDirectory="PreserveNewest" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<Target Name="CreateLaappPackage" AfterTargets="Build">
|
|
||||||
<MakeDir Directories="$(PluginPackageOutputDirectory)" />
|
|
||||||
<MakeDir Directories="$(PluginReleaseOutputDirectory)" />
|
|
||||||
<RemoveDir Directories="$(LegacyLoosePluginOutputDirectory)" />
|
|
||||||
<Delete Files="$(PluginPackagePath)" TreatErrorsAsWarnings="true" />
|
|
||||||
<Delete Files="$(PluginReleasePackagePath)" TreatErrorsAsWarnings="true" />
|
|
||||||
<ZipDirectory SourceDirectory="$(OutputPath)" DestinationFile="$(PluginPackagePath)" />
|
|
||||||
<Copy SourceFiles="$(PluginPackagePath)" DestinationFiles="$(PluginReleasePackagePath)" />
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"market.page_title": "Plugin Marketplace",
|
|
||||||
"market.toolbar.search_placeholder": "Search plugins",
|
|
||||||
"market.toolbar.refresh": "Refresh",
|
|
||||||
"market.status.loading": "Loading the official plugin marketplace...",
|
|
||||||
"market.status.loaded_network_format": "Loaded {0} plugin(s) from the official source.",
|
|
||||||
"market.status.loaded_cache_format": "Official source unavailable. Loaded {0} plugin(s) from cache. Reason: {1}",
|
|
||||||
"market.status.load_failed_format": "Failed to load plugin marketplace: {0}",
|
|
||||||
"market.status.installing_format": "Downloading and staging plugin '{0}'...",
|
|
||||||
"market.status.install_success_format": "Plugin '{0}' has been staged. Restart the app to apply it.",
|
|
||||||
"market.status.install_failed_format": "Failed to install plugin: {0}",
|
|
||||||
"market.status.host_incompatible_format": "This host is too old. Version {0} or newer is required.",
|
|
||||||
"market.list.empty": "The plugin marketplace has not been loaded yet.",
|
|
||||||
"market.list.no_results": "No plugins match the current search.",
|
|
||||||
"market.card.subtitle_format": "{0} · v{1}",
|
|
||||||
"market.card.loaded": "Loaded",
|
|
||||||
"market.card.pending_restart": "Restart required",
|
|
||||||
"market.detail.placeholder": "Select a plugin from the left to inspect details.",
|
|
||||||
"market.detail.author": "Author",
|
|
||||||
"market.detail.version": "Version",
|
|
||||||
"market.detail.api_version": "API Version",
|
|
||||||
"market.detail.min_host_version": "Minimum Host Version",
|
|
||||||
"market.detail.installed_version": "Installed Version",
|
|
||||||
"market.detail.not_installed": "Not installed",
|
|
||||||
"market.detail.market_source": "Market Source",
|
|
||||||
"market.detail.homepage": "Homepage",
|
|
||||||
"market.detail.repository": "Repository",
|
|
||||||
"market.detail.release_notes": "Release Notes",
|
|
||||||
"market.detail.state.not_installed": "Not installed",
|
|
||||||
"market.detail.state.update_available": "Update available",
|
|
||||||
"market.detail.state.installed": "Installed",
|
|
||||||
"market.detail.unknown": "Unknown",
|
|
||||||
"market.button.install": "Install",
|
|
||||||
"market.button.update": "Update",
|
|
||||||
"market.button.installed": "Installed",
|
|
||||||
"market.button.installing": "Installing..."
|
|
||||||
}
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"market.page_title": "插件市场",
|
|
||||||
"market.toolbar.search_placeholder": "搜索插件",
|
|
||||||
"market.toolbar.refresh": "刷新",
|
|
||||||
"market.status.loading": "正在加载官方插件市场…",
|
|
||||||
"market.status.loaded_network_format": "已从官方源加载 {0} 个插件。",
|
|
||||||
"market.status.loaded_cache_format": "官方源不可用,已从缓存加载 {0} 个插件。原因:{1}",
|
|
||||||
"market.status.load_failed_format": "加载插件市场失败:{0}",
|
|
||||||
"market.status.installing_format": "正在下载并暂存插件“{0}”…",
|
|
||||||
"market.status.install_success_format": "插件“{0}”已暂存完成,重启应用后生效。",
|
|
||||||
"market.status.install_failed_format": "安装插件失败:{0}",
|
|
||||||
"market.status.host_incompatible_format": "当前宿主版本过低,至少需要 {0}。",
|
|
||||||
"market.list.empty": "插件市场尚未加载。",
|
|
||||||
"market.list.no_results": "没有匹配的插件。",
|
|
||||||
"market.card.subtitle_format": "{0} · v{1}",
|
|
||||||
"market.card.loaded": "已加载",
|
|
||||||
"market.card.pending_restart": "需重启",
|
|
||||||
"market.detail.placeholder": "从左侧选择一个插件以查看详情。",
|
|
||||||
"market.detail.author": "作者",
|
|
||||||
"market.detail.version": "版本",
|
|
||||||
"market.detail.api_version": "API 版本",
|
|
||||||
"market.detail.min_host_version": "最低宿主版本",
|
|
||||||
"market.detail.installed_version": "当前已安装版本",
|
|
||||||
"market.detail.not_installed": "未安装",
|
|
||||||
"market.detail.market_source": "市场源",
|
|
||||||
"market.detail.homepage": "主页",
|
|
||||||
"market.detail.repository": "仓库",
|
|
||||||
"market.detail.release_notes": "发布说明",
|
|
||||||
"market.detail.state.not_installed": "未安装",
|
|
||||||
"market.detail.state.update_available": "可更新",
|
|
||||||
"market.detail.state.installed": "已安装",
|
|
||||||
"market.detail.unknown": "未知",
|
|
||||||
"market.button.install": "安装",
|
|
||||||
"market.button.update": "更新",
|
|
||||||
"market.button.installed": "已安装",
|
|
||||||
"market.button.installing": "安装中…"
|
|
||||||
}
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
using LanMountainDesktop.PluginSdk;
|
|
||||||
|
|
||||||
namespace LanMountainDesktop.PluginMarketplace;
|
|
||||||
|
|
||||||
[PluginEntrance]
|
|
||||||
public sealed class PluginMarketplacePlugin : PluginBase, IDisposable
|
|
||||||
{
|
|
||||||
private AirAppMarketIndexService? _indexService;
|
|
||||||
private AirAppMarketInstallService? _installService;
|
|
||||||
|
|
||||||
public override void Initialize(IPluginContext context)
|
|
||||||
{
|
|
||||||
Directory.CreateDirectory(context.DataDirectory);
|
|
||||||
|
|
||||||
var localizer = PluginLocalizer.Create(context);
|
|
||||||
var packageManager = context.GetService<IPluginPackageManager>()
|
|
||||||
?? throw new InvalidOperationException(
|
|
||||||
"The host does not expose IPluginPackageManager. LanMountainDesktop.PluginMarketplace requires a newer host build.");
|
|
||||||
|
|
||||||
var cacheService = new AirAppMarketCacheService(context.DataDirectory);
|
|
||||||
_indexService = new AirAppMarketIndexService(cacheService);
|
|
||||||
_installService = new AirAppMarketInstallService(packageManager, context.DataDirectory);
|
|
||||||
|
|
||||||
context.RegisterService(cacheService);
|
|
||||||
context.RegisterService(_indexService);
|
|
||||||
context.RegisterService(_installService);
|
|
||||||
|
|
||||||
context.RegisterSettingsPage(new PluginSettingsPageRegistration(
|
|
||||||
"marketplace",
|
|
||||||
localizer.GetString("market.page_title", "插件市场"),
|
|
||||||
() => new PluginMarketplaceSettingsView(
|
|
||||||
context,
|
|
||||||
localizer,
|
|
||||||
packageManager,
|
|
||||||
_indexService,
|
|
||||||
_installService),
|
|
||||||
sortOrder: -100));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Dispose()
|
|
||||||
{
|
|
||||||
_installService?.Dispose();
|
|
||||||
_indexService?.Dispose();
|
|
||||||
_installService = null;
|
|
||||||
_indexService = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,727 +0,0 @@
|
|||||||
using System.Globalization;
|
|
||||||
using Avalonia;
|
|
||||||
using Avalonia.Controls;
|
|
||||||
using Avalonia.Interactivity;
|
|
||||||
using Avalonia.Layout;
|
|
||||||
using Avalonia.Media;
|
|
||||||
using LanMountainDesktop.PluginSdk;
|
|
||||||
|
|
||||||
namespace LanMountainDesktop.PluginMarketplace;
|
|
||||||
|
|
||||||
internal sealed class PluginMarketplaceSettingsView : UserControl
|
|
||||||
{
|
|
||||||
private static readonly IBrush SurfaceBrush = new SolidColorBrush(Color.Parse("#14000000"));
|
|
||||||
private static readonly IBrush SelectedSurfaceBrush = new SolidColorBrush(Color.Parse("#1F0EA5E9"));
|
|
||||||
private static readonly IBrush SuccessBrush = new SolidColorBrush(Color.Parse("#FF0F766E"));
|
|
||||||
private static readonly IBrush WarningBrush = new SolidColorBrush(Color.Parse("#FF9A6700"));
|
|
||||||
private static readonly IBrush ErrorBrush = new SolidColorBrush(Color.Parse("#FFC42B1C"));
|
|
||||||
|
|
||||||
private readonly PluginLocalizer _localizer;
|
|
||||||
private readonly IPluginPackageManager _packageManager;
|
|
||||||
private readonly AirAppMarketIndexService _indexService;
|
|
||||||
private readonly AirAppMarketInstallService _installService;
|
|
||||||
private readonly Version? _hostVersion;
|
|
||||||
|
|
||||||
private readonly TextBox _searchTextBox;
|
|
||||||
private readonly Button _refreshButton;
|
|
||||||
private readonly TextBlock _statusTextBlock;
|
|
||||||
private readonly StackPanel _pluginListHost;
|
|
||||||
private readonly Border _detailBorder;
|
|
||||||
|
|
||||||
private AirAppMarketIndexDocument? _document;
|
|
||||||
private AirAppMarketPluginEntry? _selectedPlugin;
|
|
||||||
private Dictionary<string, InstalledPluginInfo> _installedPlugins = new(StringComparer.OrdinalIgnoreCase);
|
|
||||||
private bool _isRefreshing;
|
|
||||||
private bool _isInstalling;
|
|
||||||
private bool _hasLoadedOnce;
|
|
||||||
|
|
||||||
public PluginMarketplaceSettingsView(
|
|
||||||
IPluginContext context,
|
|
||||||
PluginLocalizer localizer,
|
|
||||||
IPluginPackageManager packageManager,
|
|
||||||
AirAppMarketIndexService indexService,
|
|
||||||
AirAppMarketInstallService installService)
|
|
||||||
{
|
|
||||||
_localizer = localizer;
|
|
||||||
_packageManager = packageManager;
|
|
||||||
_indexService = indexService;
|
|
||||||
_installService = installService;
|
|
||||||
_hostVersion = context.TryGetProperty<string>(PluginHostPropertyKeys.HostVersion, out var hostVersionText) &&
|
|
||||||
AirAppMarketIndexDocument.TryParseVersion(hostVersionText, out var parsedHostVersion)
|
|
||||||
? parsedHostVersion
|
|
||||||
: null;
|
|
||||||
|
|
||||||
_searchTextBox = new TextBox
|
|
||||||
{
|
|
||||||
MinWidth = 240,
|
|
||||||
Watermark = T("market.toolbar.search_placeholder", "搜索插件")
|
|
||||||
};
|
|
||||||
_searchTextBox.PropertyChanged += (_, e) =>
|
|
||||||
{
|
|
||||||
if (e.Property == TextBox.TextProperty)
|
|
||||||
{
|
|
||||||
RebuildSurface();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
_refreshButton = new Button
|
|
||||||
{
|
|
||||||
Content = T("market.toolbar.refresh", "刷新"),
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Left
|
|
||||||
};
|
|
||||||
_refreshButton.Click += OnRefreshClick;
|
|
||||||
|
|
||||||
_statusTextBlock = new TextBlock
|
|
||||||
{
|
|
||||||
Text = T("market.status.loading", "正在加载官方插件市场…"),
|
|
||||||
TextWrapping = TextWrapping.Wrap,
|
|
||||||
Foreground = WarningBrush
|
|
||||||
};
|
|
||||||
|
|
||||||
_pluginListHost = new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 10
|
|
||||||
};
|
|
||||||
|
|
||||||
_detailBorder = CreatePanelShell();
|
|
||||||
|
|
||||||
Content = BuildLayout();
|
|
||||||
AttachedToVisualTree += async (_, _) =>
|
|
||||||
{
|
|
||||||
if (_hasLoadedOnce)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
_hasLoadedOnce = true;
|
|
||||||
await RefreshAsync();
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private Control BuildLayout()
|
|
||||||
{
|
|
||||||
var root = new Grid
|
|
||||||
{
|
|
||||||
RowDefinitions = new RowDefinitions("Auto,*"),
|
|
||||||
RowSpacing = 16
|
|
||||||
};
|
|
||||||
|
|
||||||
var toolbar = new Grid
|
|
||||||
{
|
|
||||||
ColumnDefinitions = new ColumnDefinitions("*,Auto"),
|
|
||||||
ColumnSpacing = 12
|
|
||||||
};
|
|
||||||
|
|
||||||
toolbar.Children.Add(new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 8,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
new StackPanel
|
|
||||||
{
|
|
||||||
Orientation = Orientation.Horizontal,
|
|
||||||
Spacing = 10,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
_searchTextBox,
|
|
||||||
_refreshButton
|
|
||||||
}
|
|
||||||
},
|
|
||||||
_statusTextBlock
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var contentGrid = new Grid
|
|
||||||
{
|
|
||||||
ColumnDefinitions = new ColumnDefinitions("360,*"),
|
|
||||||
ColumnSpacing = 16
|
|
||||||
};
|
|
||||||
|
|
||||||
var listShell = CreatePanelShell();
|
|
||||||
listShell.Child = new ScrollViewer
|
|
||||||
{
|
|
||||||
Content = _pluginListHost
|
|
||||||
};
|
|
||||||
|
|
||||||
contentGrid.Children.Add(listShell);
|
|
||||||
contentGrid.Children.Add(_detailBorder);
|
|
||||||
Grid.SetColumn(_detailBorder, 1);
|
|
||||||
|
|
||||||
root.Children.Add(toolbar);
|
|
||||||
root.Children.Add(contentGrid);
|
|
||||||
Grid.SetRow(contentGrid, 1);
|
|
||||||
|
|
||||||
return root;
|
|
||||||
}
|
|
||||||
|
|
||||||
private async void OnRefreshClick(object? sender, RoutedEventArgs e)
|
|
||||||
{
|
|
||||||
await RefreshAsync();
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task RefreshAsync()
|
|
||||||
{
|
|
||||||
if (_isRefreshing)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
_isRefreshing = true;
|
|
||||||
_refreshButton.IsEnabled = false;
|
|
||||||
SetStatus(T("market.status.loading", "正在加载官方插件市场…"), WarningBrush);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
_installedPlugins = _packageManager
|
|
||||||
.GetInstalledPlugins()
|
|
||||||
.ToDictionary(plugin => plugin.Manifest.Id, StringComparer.OrdinalIgnoreCase);
|
|
||||||
|
|
||||||
var result = await _indexService.LoadAsync();
|
|
||||||
if (!result.Success || result.Document is null)
|
|
||||||
{
|
|
||||||
_document = null;
|
|
||||||
_selectedPlugin = null;
|
|
||||||
SetStatus(
|
|
||||||
F("market.status.load_failed_format", "加载插件市场失败:{0}", result.ErrorMessage ?? T("market.detail.unknown", "未知错误")),
|
|
||||||
ErrorBrush);
|
|
||||||
RebuildSurface();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
_document = result.Document;
|
|
||||||
_selectedPlugin = ResolveSelectedPlugin(_selectedPlugin?.Id, result.Document.Plugins);
|
|
||||||
|
|
||||||
var statusMessage = result.Source == AirAppMarketLoadSource.Cache
|
|
||||||
? F(
|
|
||||||
"market.status.loaded_cache_format",
|
|
||||||
"官方源不可用,已从缓存加载 {0} 个插件。原因:{1}",
|
|
||||||
result.Document.Plugins.Count,
|
|
||||||
result.WarningMessage ?? T("market.detail.unknown", "未知错误"))
|
|
||||||
: F(
|
|
||||||
"market.status.loaded_network_format",
|
|
||||||
"已从官方源加载 {0} 个插件。",
|
|
||||||
result.Document.Plugins.Count);
|
|
||||||
|
|
||||||
SetStatus(statusMessage, result.Source == AirAppMarketLoadSource.Cache ? WarningBrush : SuccessBrush);
|
|
||||||
RebuildSurface();
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
_isRefreshing = false;
|
|
||||||
_refreshButton.IsEnabled = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void RebuildSurface()
|
|
||||||
{
|
|
||||||
var filteredPlugins = GetFilteredPlugins();
|
|
||||||
if (filteredPlugins.Count > 0)
|
|
||||||
{
|
|
||||||
_selectedPlugin = ResolveSelectedPlugin(_selectedPlugin?.Id, filteredPlugins);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
_selectedPlugin = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
BuildPluginList(filteredPlugins);
|
|
||||||
BuildDetailPanel();
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<AirAppMarketPluginEntry> GetFilteredPlugins()
|
|
||||||
{
|
|
||||||
if (_document is null)
|
|
||||||
{
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
var query = (_searchTextBox.Text ?? string.Empty).Trim();
|
|
||||||
var source = _document.Plugins;
|
|
||||||
if (string.IsNullOrWhiteSpace(query))
|
|
||||||
{
|
|
||||||
return source.ToList();
|
|
||||||
}
|
|
||||||
|
|
||||||
return source
|
|
||||||
.Where(plugin =>
|
|
||||||
plugin.Name.Contains(query, StringComparison.OrdinalIgnoreCase) ||
|
|
||||||
plugin.Description.Contains(query, StringComparison.OrdinalIgnoreCase) ||
|
|
||||||
plugin.Author.Contains(query, StringComparison.OrdinalIgnoreCase) ||
|
|
||||||
plugin.Id.Contains(query, StringComparison.OrdinalIgnoreCase) ||
|
|
||||||
plugin.Tags.Any(tag => tag.Contains(query, StringComparison.OrdinalIgnoreCase)))
|
|
||||||
.ToList();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void BuildPluginList(IReadOnlyList<AirAppMarketPluginEntry> plugins)
|
|
||||||
{
|
|
||||||
_pluginListHost.Children.Clear();
|
|
||||||
|
|
||||||
if (_document is null)
|
|
||||||
{
|
|
||||||
_pluginListHost.Children.Add(CreateEmptyState(T("market.list.empty", "插件市场尚未加载。")));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (plugins.Count == 0)
|
|
||||||
{
|
|
||||||
_pluginListHost.Children.Add(CreateEmptyState(T("market.list.no_results", "没有匹配的插件。")));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach (var plugin in plugins)
|
|
||||||
{
|
|
||||||
_pluginListHost.Children.Add(CreatePluginCard(plugin));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private Control CreatePluginCard(AirAppMarketPluginEntry plugin)
|
|
||||||
{
|
|
||||||
var installState = ResolveInstallState(plugin, out var installedPlugin);
|
|
||||||
var isSelected = string.Equals(_selectedPlugin?.Id, plugin.Id, StringComparison.OrdinalIgnoreCase);
|
|
||||||
|
|
||||||
var button = new Button
|
|
||||||
{
|
|
||||||
HorizontalContentAlignment = HorizontalAlignment.Stretch,
|
|
||||||
Padding = new Thickness(0),
|
|
||||||
Background = Brushes.Transparent,
|
|
||||||
BorderThickness = new Thickness(0),
|
|
||||||
Content = new Border
|
|
||||||
{
|
|
||||||
Background = isSelected ? SelectedSurfaceBrush : SurfaceBrush,
|
|
||||||
CornerRadius = new CornerRadius(16),
|
|
||||||
Padding = new Thickness(14),
|
|
||||||
Child = new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 10,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
new Grid
|
|
||||||
{
|
|
||||||
ColumnDefinitions = new ColumnDefinitions("Auto,*"),
|
|
||||||
ColumnSpacing = 12,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
CreateMonogramIcon(plugin.Name, 42),
|
|
||||||
new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 4,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = plugin.Name,
|
|
||||||
FontSize = 16,
|
|
||||||
FontWeight = FontWeight.SemiBold,
|
|
||||||
TextWrapping = TextWrapping.Wrap
|
|
||||||
},
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = F("market.card.subtitle_format", "{0} · v{1}", plugin.Author, plugin.Version),
|
|
||||||
Foreground = Brushes.Gray,
|
|
||||||
TextWrapping = TextWrapping.Wrap
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = plugin.Description,
|
|
||||||
TextWrapping = TextWrapping.Wrap,
|
|
||||||
MaxHeight = 56
|
|
||||||
},
|
|
||||||
new StackPanel
|
|
||||||
{
|
|
||||||
Orientation = Orientation.Horizontal,
|
|
||||||
Spacing = 8,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
CreateStateChip(T(StateKey(installState), StateFallback(installState))),
|
|
||||||
CreateStateChip(installedPlugin?.IsLoaded == true
|
|
||||||
? T("market.card.loaded", "已加载")
|
|
||||||
: T("market.card.pending_restart", "需重启")),
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = string.Join(" ", plugin.Tags.Take(3)),
|
|
||||||
VerticalAlignment = VerticalAlignment.Center,
|
|
||||||
Foreground = Brushes.Gray
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
button.Click += (_, _) =>
|
|
||||||
{
|
|
||||||
_selectedPlugin = plugin;
|
|
||||||
RebuildSurface();
|
|
||||||
};
|
|
||||||
|
|
||||||
return button;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void BuildDetailPanel()
|
|
||||||
{
|
|
||||||
if (_selectedPlugin is null)
|
|
||||||
{
|
|
||||||
_detailBorder.Child = CreateEmptyState(T("market.detail.placeholder", "从左侧选择一个插件以查看详情。"));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var plugin = _selectedPlugin;
|
|
||||||
var installState = ResolveInstallState(plugin, out var installedPlugin);
|
|
||||||
var isCompatible = IsCompatibleWithHost(plugin);
|
|
||||||
var installButton = new Button
|
|
||||||
{
|
|
||||||
Content = _isInstalling
|
|
||||||
? T("market.button.installing", "安装中…")
|
|
||||||
: T(ButtonKey(installState), ButtonFallback(installState)),
|
|
||||||
IsEnabled = !_isInstalling && isCompatible && installState != AirAppMarketInstallState.Installed,
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Left,
|
|
||||||
MinWidth = 120
|
|
||||||
};
|
|
||||||
installButton.Click += async (_, _) => await InstallSelectedPluginAsync(plugin);
|
|
||||||
|
|
||||||
var detailPanel = new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 14,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
new Grid
|
|
||||||
{
|
|
||||||
ColumnDefinitions = new ColumnDefinitions("Auto,*"),
|
|
||||||
ColumnSpacing = 14,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
CreateMonogramIcon(plugin.Name, 64),
|
|
||||||
new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 4,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = plugin.Name,
|
|
||||||
FontSize = 24,
|
|
||||||
FontWeight = FontWeight.SemiBold,
|
|
||||||
TextWrapping = TextWrapping.Wrap
|
|
||||||
},
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = plugin.Description,
|
|
||||||
TextWrapping = TextWrapping.Wrap
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
new StackPanel
|
|
||||||
{
|
|
||||||
Orientation = Orientation.Horizontal,
|
|
||||||
Spacing = 8,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
CreateStateChip(T(StateKey(installState), StateFallback(installState))),
|
|
||||||
CreateStateChip(plugin.GetVersionSummary()),
|
|
||||||
CreateStateChip(string.Join(", ", plugin.Tags))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
installButton,
|
|
||||||
CreateInfoRow(T("market.detail.author", "作者"), plugin.Author),
|
|
||||||
CreateInfoRow(T("market.detail.version", "版本"), plugin.Version),
|
|
||||||
CreateInfoRow(T("market.detail.api_version", "API 版本"), plugin.ApiVersion),
|
|
||||||
CreateInfoRow(T("market.detail.min_host_version", "最低宿主版本"), plugin.MinHostVersion),
|
|
||||||
CreateInfoRow(T("market.detail.installed_version", "当前已安装版本"), installedPlugin?.Manifest.Version ?? T("market.detail.not_installed", "未安装")),
|
|
||||||
CreateInfoRow(T("market.detail.market_source", "市场源"), AirAppMarketDefaults.DefaultIndexUrl),
|
|
||||||
CreateInfoRow(T("market.detail.homepage", "主页"), plugin.HomepageUrl),
|
|
||||||
CreateInfoRow(T("market.detail.repository", "仓库"), plugin.RepositoryUrl),
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = T("market.detail.release_notes", "发布说明"),
|
|
||||||
FontSize = 18,
|
|
||||||
FontWeight = FontWeight.SemiBold
|
|
||||||
},
|
|
||||||
new Border
|
|
||||||
{
|
|
||||||
Background = SurfaceBrush,
|
|
||||||
CornerRadius = new CornerRadius(16),
|
|
||||||
Padding = new Thickness(14),
|
|
||||||
Child = new TextBlock
|
|
||||||
{
|
|
||||||
Text = plugin.ReleaseNotes,
|
|
||||||
TextWrapping = TextWrapping.Wrap
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if (!isCompatible)
|
|
||||||
{
|
|
||||||
detailPanel.Children.Insert(
|
|
||||||
3,
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = F(
|
|
||||||
"market.status.host_incompatible_format",
|
|
||||||
"当前宿主版本过低,至少需要 {0}。",
|
|
||||||
plugin.MinHostVersion),
|
|
||||||
Foreground = ErrorBrush,
|
|
||||||
TextWrapping = TextWrapping.Wrap
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
_detailBorder.Child = new ScrollViewer
|
|
||||||
{
|
|
||||||
Content = detailPanel
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task InstallSelectedPluginAsync(AirAppMarketPluginEntry plugin)
|
|
||||||
{
|
|
||||||
if (_isInstalling)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
_isInstalling = true;
|
|
||||||
BuildDetailPanel();
|
|
||||||
SetStatus(
|
|
||||||
F("market.status.installing_format", "正在下载并暂存插件“{0}”…", plugin.Name),
|
|
||||||
WarningBrush);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var result = await _installService.InstallAsync(plugin);
|
|
||||||
if (!result.Success || result.InstallResult is null)
|
|
||||||
{
|
|
||||||
SetStatus(
|
|
||||||
F(
|
|
||||||
"market.status.install_failed_format",
|
|
||||||
"安装插件失败:{0}",
|
|
||||||
result.ErrorMessage ?? T("market.detail.unknown", "未知错误")),
|
|
||||||
ErrorBrush);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
_installedPlugins = _packageManager
|
|
||||||
.GetInstalledPlugins()
|
|
||||||
.ToDictionary(item => item.Manifest.Id, StringComparer.OrdinalIgnoreCase);
|
|
||||||
SetStatus(
|
|
||||||
F(
|
|
||||||
"market.status.install_success_format",
|
|
||||||
"插件“{0}”已暂存完成,重启应用后生效。",
|
|
||||||
result.InstallResult.Manifest.Name),
|
|
||||||
SuccessBrush);
|
|
||||||
RebuildSurface();
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
_isInstalling = false;
|
|
||||||
BuildDetailPanel();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private AirAppMarketPluginEntry? ResolveSelectedPlugin(
|
|
||||||
string? selectedPluginId,
|
|
||||||
IReadOnlyList<AirAppMarketPluginEntry> plugins)
|
|
||||||
{
|
|
||||||
if (plugins.Count == 0)
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(selectedPluginId))
|
|
||||||
{
|
|
||||||
var existing = plugins.FirstOrDefault(plugin =>
|
|
||||||
string.Equals(plugin.Id, selectedPluginId, StringComparison.OrdinalIgnoreCase));
|
|
||||||
if (existing is not null)
|
|
||||||
{
|
|
||||||
return existing;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return plugins[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
private AirAppMarketInstallState ResolveInstallState(
|
|
||||||
AirAppMarketPluginEntry plugin,
|
|
||||||
out InstalledPluginInfo? installedPlugin)
|
|
||||||
{
|
|
||||||
if (!_installedPlugins.TryGetValue(plugin.Id, out installedPlugin))
|
|
||||||
{
|
|
||||||
return AirAppMarketInstallState.NotInstalled;
|
|
||||||
}
|
|
||||||
|
|
||||||
return CompareVersions(plugin.Version, installedPlugin.Manifest.Version) > 0
|
|
||||||
? AirAppMarketInstallState.UpdateAvailable
|
|
||||||
: AirAppMarketInstallState.Installed;
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool IsCompatibleWithHost(AirAppMarketPluginEntry plugin)
|
|
||||||
{
|
|
||||||
if (_hostVersion is null ||
|
|
||||||
!AirAppMarketIndexDocument.TryParseVersion(plugin.MinHostVersion, out var minHostVersion) ||
|
|
||||||
minHostVersion is null)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return _hostVersion >= minHostVersion;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void SetStatus(string message, IBrush foreground)
|
|
||||||
{
|
|
||||||
_statusTextBlock.Text = message;
|
|
||||||
_statusTextBlock.Foreground = foreground;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static int CompareVersions(string? left, string? right)
|
|
||||||
{
|
|
||||||
if (!AirAppMarketIndexDocument.TryParseVersion(left, out var leftVersion))
|
|
||||||
{
|
|
||||||
leftVersion = new Version(0, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!AirAppMarketIndexDocument.TryParseVersion(right, out var rightVersion))
|
|
||||||
{
|
|
||||||
rightVersion = new Version(0, 0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (leftVersion ?? new Version(0, 0, 0)).CompareTo(rightVersion ?? new Version(0, 0, 0));
|
|
||||||
}
|
|
||||||
|
|
||||||
private Border CreatePanelShell()
|
|
||||||
{
|
|
||||||
return new Border
|
|
||||||
{
|
|
||||||
Background = SurfaceBrush,
|
|
||||||
CornerRadius = new CornerRadius(18),
|
|
||||||
Padding = new Thickness(16)
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private Control CreateEmptyState(string text)
|
|
||||||
{
|
|
||||||
return new Border
|
|
||||||
{
|
|
||||||
Background = SurfaceBrush,
|
|
||||||
CornerRadius = new CornerRadius(16),
|
|
||||||
Padding = new Thickness(18),
|
|
||||||
Child = new TextBlock
|
|
||||||
{
|
|
||||||
Text = text,
|
|
||||||
TextWrapping = TextWrapping.Wrap
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private Border CreateMonogramIcon(string text, double size)
|
|
||||||
{
|
|
||||||
var glyph = string.IsNullOrWhiteSpace(text) ? "?" : text.Trim()[0].ToString().ToUpperInvariant();
|
|
||||||
return new Border
|
|
||||||
{
|
|
||||||
Width = size,
|
|
||||||
Height = size,
|
|
||||||
CornerRadius = new CornerRadius(size / 2),
|
|
||||||
Background = new SolidColorBrush(Color.Parse("#FF0EA5E9")),
|
|
||||||
Child = new TextBlock
|
|
||||||
{
|
|
||||||
Text = glyph,
|
|
||||||
FontSize = Math.Max(16, size * 0.36),
|
|
||||||
FontWeight = FontWeight.Bold,
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Center,
|
|
||||||
VerticalAlignment = VerticalAlignment.Center,
|
|
||||||
TextAlignment = TextAlignment.Center
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private Border CreateStateChip(string text)
|
|
||||||
{
|
|
||||||
return new Border
|
|
||||||
{
|
|
||||||
Background = new SolidColorBrush(Color.Parse("#22000000")),
|
|
||||||
CornerRadius = new CornerRadius(999),
|
|
||||||
Padding = new Thickness(10, 4),
|
|
||||||
Child = new TextBlock
|
|
||||||
{
|
|
||||||
Text = text,
|
|
||||||
FontSize = 12
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private Control CreateInfoRow(string label, string value)
|
|
||||||
{
|
|
||||||
return new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 4,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = label,
|
|
||||||
FontSize = 12,
|
|
||||||
Foreground = Brushes.Gray
|
|
||||||
},
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = string.IsNullOrWhiteSpace(value) ? T("market.detail.unknown", "未知") : value,
|
|
||||||
TextWrapping = TextWrapping.Wrap
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private string T(string key, string fallback)
|
|
||||||
{
|
|
||||||
return _localizer.GetString(key, fallback);
|
|
||||||
}
|
|
||||||
|
|
||||||
private string F(string key, string fallback, params object[] args)
|
|
||||||
{
|
|
||||||
return string.Format(CultureInfo.CurrentCulture, T(key, fallback), args);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string StateKey(AirAppMarketInstallState state)
|
|
||||||
{
|
|
||||||
return state switch
|
|
||||||
{
|
|
||||||
AirAppMarketInstallState.UpdateAvailable => "market.detail.state.update_available",
|
|
||||||
AirAppMarketInstallState.Installed => "market.detail.state.installed",
|
|
||||||
_ => "market.detail.state.not_installed"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string StateFallback(AirAppMarketInstallState state)
|
|
||||||
{
|
|
||||||
return state switch
|
|
||||||
{
|
|
||||||
AirAppMarketInstallState.UpdateAvailable => "可更新",
|
|
||||||
AirAppMarketInstallState.Installed => "已安装",
|
|
||||||
_ => "未安装"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string ButtonKey(AirAppMarketInstallState state)
|
|
||||||
{
|
|
||||||
return state switch
|
|
||||||
{
|
|
||||||
AirAppMarketInstallState.UpdateAvailable => "market.button.update",
|
|
||||||
AirAppMarketInstallState.Installed => "market.button.installed",
|
|
||||||
_ => "market.button.install"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string ButtonFallback(AirAppMarketInstallState state)
|
|
||||||
{
|
|
||||||
return state switch
|
|
||||||
{
|
|
||||||
AirAppMarketInstallState.UpdateAvailable => "更新",
|
|
||||||
AirAppMarketInstallState.Installed => "已安装",
|
|
||||||
_ => "安装"
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"id": "LanMountainDesktop.PluginMarketplace",
|
|
||||||
"name": "LanMountain Plugin Marketplace",
|
|
||||||
"description": "Official plugin marketplace for browsing and installing LanMountainDesktop plugins.",
|
|
||||||
"author": "LanMountainDesktop",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"apiVersion": "1.0.0",
|
|
||||||
"entranceAssembly": "LanMountainDesktop.PluginMarketplace.dll"
|
|
||||||
}
|
|
||||||
@@ -67,6 +67,11 @@
|
|||||||
"capability.message_bus.detail": "This sample plugin uses IPluginMessageBus to push clock ticks and state change notifications into plugin UI surfaces.",
|
"capability.message_bus.detail": "This sample plugin uses IPluginMessageBus to push clock ticks and state change notifications into plugin UI surfaces.",
|
||||||
"capability.widget_context.title": "PluginDesktopComponentContext",
|
"capability.widget_context.title": "PluginDesktopComponentContext",
|
||||||
"capability.widget_context.detail": "Widgets can read ComponentId, PlacementId, CellSize, and call GetService<T>() against the same plugin service container.",
|
"capability.widget_context.detail": "Widgets can read ComponentId, PlacementId, CellSize, and call GetService<T>() against the same plugin service container.",
|
||||||
|
"widget.close_desktop.display_name": "Close Desktop",
|
||||||
|
"widget.close_desktop.text": "Close Desktop",
|
||||||
|
"widget.close_desktop.hint": "Exit LanMountainDesktop on click",
|
||||||
|
"widget.close_desktop.unavailable": "Host lifecycle API is unavailable",
|
||||||
|
"widget.close_desktop.failed": "Host rejected the exit request",
|
||||||
"widget.subtitle.preview": "Preview surface | placed: {0}",
|
"widget.subtitle.preview": "Preview surface | placed: {0}",
|
||||||
"widget.subtitle.placement": "Placement {0} | placed: {1}",
|
"widget.subtitle.placement": "Placement {0} | placed: {1}",
|
||||||
"common.dev": "dev",
|
"common.dev": "dev",
|
||||||
|
|||||||
@@ -1,16 +1,9 @@
|
|||||||
# LanMountainDesktop.SamplePlugin
|
# LanMountainDesktop.SamplePlugin
|
||||||
|
|
||||||
这是阑山桌面的**示例开发插件**。
|
## 中文
|
||||||
|
|
||||||
它用于演示以下能力:
|
这是阑山桌面的标准示例插件,用于演示插件清单、设置页、桌面组件、服务注册、本地化和 `.laapp` 打包流程。
|
||||||
- 插件入口与 `plugin.json` 清单
|
|
||||||
- 插件服务注册
|
|
||||||
- 插件设置页注册
|
|
||||||
- 插件桌面组件注册
|
|
||||||
- 插件内通信与状态更新
|
|
||||||
- `.laapp` 打包与安装流程
|
|
||||||
- 插件多语言资源组织方式
|
|
||||||
|
|
||||||
如果你要开发自己的插件,建议以这个目录为模板开始。
|
## English
|
||||||
|
|
||||||
这个目录仅用于示例开发与打包发布,不承载宿主应用内部的插件加载逻辑。
|
This is the standard sample plugin used to demonstrate manifests, settings pages, desktop components, service registration, localization, and `.laapp` packaging.
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ public sealed class SamplePlugin : PluginBase, IDisposable
|
|||||||
var hostName = GetHostProperty(context, PluginHostPropertyKeys.HostApplicationName, "UnknownHost");
|
var hostName = GetHostProperty(context, PluginHostPropertyKeys.HostApplicationName, "UnknownHost");
|
||||||
var hostVersion = GetHostProperty(context, PluginHostPropertyKeys.HostVersion, "UnknownVersion");
|
var hostVersion = GetHostProperty(context, PluginHostPropertyKeys.HostVersion, "UnknownVersion");
|
||||||
var sdkApiVersion = GetHostProperty(context, PluginHostPropertyKeys.PluginSdkApiVersion, "UnknownApiVersion");
|
var sdkApiVersion = GetHostProperty(context, PluginHostPropertyKeys.PluginSdkApiVersion, "UnknownApiVersion");
|
||||||
|
var hostApplicationLifecycle = context.GetService<IHostApplicationLifecycle>();
|
||||||
var messageBus = context.GetService<IPluginMessageBus>()
|
var messageBus = context.GetService<IPluginMessageBus>()
|
||||||
?? throw new InvalidOperationException("Plugin message bus is not available.");
|
?? throw new InvalidOperationException("Plugin message bus is not available.");
|
||||||
|
|
||||||
@@ -74,6 +75,19 @@ public sealed class SamplePlugin : PluginBase, IDisposable
|
|||||||
allowStatusBarPlacement: false,
|
allowStatusBarPlacement: false,
|
||||||
resizeMode: PluginDesktopComponentResizeMode.Proportional,
|
resizeMode: PluginDesktopComponentResizeMode.Proportional,
|
||||||
cornerRadiusResolver: cellSize => Math.Clamp(cellSize * 0.34, 18, 34)));
|
cornerRadiusResolver: cellSize => Math.Clamp(cellSize * 0.34, 18, 34)));
|
||||||
|
|
||||||
|
context.RegisterDesktopComponent(new PluginDesktopComponentRegistration(
|
||||||
|
"LanMountainDesktop.SamplePlugin.CloseDesktop",
|
||||||
|
localizer.GetString("widget.close_desktop.display_name", "关闭桌面"),
|
||||||
|
widgetContext => new SamplePluginCloseDesktopWidget(widgetContext),
|
||||||
|
iconKey: "DismissCircle",
|
||||||
|
category: localizer.GetString("widget.category", "鎻掍欢"),
|
||||||
|
minWidthCells: 2,
|
||||||
|
minHeightCells: 1,
|
||||||
|
allowDesktopPlacement: true,
|
||||||
|
allowStatusBarPlacement: false,
|
||||||
|
resizeMode: PluginDesktopComponentResizeMode.Free,
|
||||||
|
cornerRadiusResolver: cellSize => Math.Clamp(cellSize * 0.28, 14, 22)));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
|
|||||||
@@ -0,0 +1,166 @@
|
|||||||
|
using Avalonia;
|
||||||
|
using Avalonia.Controls;
|
||||||
|
using Avalonia.Layout;
|
||||||
|
using Avalonia.Media;
|
||||||
|
using LanMountainDesktop.PluginSdk;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.SamplePlugin;
|
||||||
|
|
||||||
|
internal sealed class SamplePluginCloseDesktopWidget : Border
|
||||||
|
{
|
||||||
|
private readonly PluginLocalizer _localizer;
|
||||||
|
private readonly IHostApplicationLifecycle? _hostApplicationLifecycle;
|
||||||
|
private readonly TextBlock _titleTextBlock;
|
||||||
|
private readonly TextBlock _statusTextBlock;
|
||||||
|
|
||||||
|
public SamplePluginCloseDesktopWidget(PluginDesktopComponentContext context)
|
||||||
|
{
|
||||||
|
_localizer = PluginLocalizer.Create(context);
|
||||||
|
_hostApplicationLifecycle = context.GetService<IHostApplicationLifecycle>();
|
||||||
|
|
||||||
|
_titleTextBlock = new TextBlock
|
||||||
|
{
|
||||||
|
Text = T("widget.close_desktop.text", "关闭桌面"),
|
||||||
|
Foreground = Brushes.White,
|
||||||
|
FontWeight = FontWeight.SemiBold,
|
||||||
|
VerticalAlignment = VerticalAlignment.Center
|
||||||
|
};
|
||||||
|
|
||||||
|
_statusTextBlock = new TextBlock
|
||||||
|
{
|
||||||
|
Text = _hostApplicationLifecycle is null
|
||||||
|
? T("widget.close_desktop.unavailable", "宿主未提供退出接口")
|
||||||
|
: T("widget.close_desktop.hint", "点击后退出阑山桌面"),
|
||||||
|
Foreground = new SolidColorBrush(Color.Parse("#FFD4E7F6")),
|
||||||
|
VerticalAlignment = VerticalAlignment.Center
|
||||||
|
};
|
||||||
|
|
||||||
|
var contentGrid = new Grid
|
||||||
|
{
|
||||||
|
ColumnDefinitions = new ColumnDefinitions("Auto,*"),
|
||||||
|
ColumnSpacing = 14,
|
||||||
|
VerticalAlignment = VerticalAlignment.Center,
|
||||||
|
Children =
|
||||||
|
{
|
||||||
|
CreateIconShell(),
|
||||||
|
new StackPanel
|
||||||
|
{
|
||||||
|
Spacing = 2,
|
||||||
|
VerticalAlignment = VerticalAlignment.Center,
|
||||||
|
Children =
|
||||||
|
{
|
||||||
|
_titleTextBlock,
|
||||||
|
_statusTextBlock
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Grid.SetColumn(contentGrid.Children[1], 1);
|
||||||
|
|
||||||
|
var actionButton = new Button
|
||||||
|
{
|
||||||
|
HorizontalAlignment = HorizontalAlignment.Stretch,
|
||||||
|
VerticalAlignment = VerticalAlignment.Stretch,
|
||||||
|
HorizontalContentAlignment = HorizontalAlignment.Stretch,
|
||||||
|
VerticalContentAlignment = VerticalAlignment.Stretch,
|
||||||
|
Background = Brushes.Transparent,
|
||||||
|
BorderThickness = new Thickness(0),
|
||||||
|
Padding = new Thickness(0),
|
||||||
|
IsEnabled = _hostApplicationLifecycle is not null,
|
||||||
|
Content = contentGrid
|
||||||
|
};
|
||||||
|
actionButton.Click += OnButtonClick;
|
||||||
|
|
||||||
|
Background = new LinearGradientBrush
|
||||||
|
{
|
||||||
|
StartPoint = new RelativePoint(0, 0, RelativeUnit.Relative),
|
||||||
|
EndPoint = new RelativePoint(1, 1, RelativeUnit.Relative),
|
||||||
|
GradientStops =
|
||||||
|
[
|
||||||
|
new GradientStop(Color.Parse("#FF0B1220"), 0),
|
||||||
|
new GradientStop(Color.Parse("#FF172554"), 0.55),
|
||||||
|
new GradientStop(Color.Parse("#FF7F1D1D"), 1)
|
||||||
|
]
|
||||||
|
};
|
||||||
|
BorderBrush = new SolidColorBrush(Color.Parse("#66FB7185"));
|
||||||
|
BorderThickness = new Thickness(1);
|
||||||
|
CornerRadius = new CornerRadius(18);
|
||||||
|
Padding = new Thickness(14, 10);
|
||||||
|
Child = actionButton;
|
||||||
|
|
||||||
|
SizeChanged += OnSizeChanged;
|
||||||
|
ApplyScale();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Border CreateIconShell()
|
||||||
|
{
|
||||||
|
return new Border
|
||||||
|
{
|
||||||
|
Width = 36,
|
||||||
|
Height = 36,
|
||||||
|
CornerRadius = new CornerRadius(999),
|
||||||
|
Background = new SolidColorBrush(Color.Parse("#33F87171")),
|
||||||
|
BorderBrush = new SolidColorBrush(Color.Parse("#88FCA5A5")),
|
||||||
|
BorderThickness = new Thickness(1),
|
||||||
|
VerticalAlignment = VerticalAlignment.Center,
|
||||||
|
Child = new TextBlock
|
||||||
|
{
|
||||||
|
Text = "⏻",
|
||||||
|
FontSize = 18,
|
||||||
|
Foreground = Brushes.White,
|
||||||
|
HorizontalAlignment = HorizontalAlignment.Center,
|
||||||
|
VerticalAlignment = VerticalAlignment.Center,
|
||||||
|
TextAlignment = TextAlignment.Center
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnButtonClick(object? sender, Avalonia.Interactivity.RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
if (_hostApplicationLifecycle?.TryExit(new HostApplicationLifecycleRequest(
|
||||||
|
Source: "SamplePlugin.CloseDesktopWidget",
|
||||||
|
Reason: "User invoked the sample plugin close-desktop widget.")) == true)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_statusTextBlock.Text = T("widget.close_desktop.failed", "宿主未接受退出请求");
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnSizeChanged(object? sender, SizeChangedEventArgs e)
|
||||||
|
{
|
||||||
|
ApplyScale();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ApplyScale()
|
||||||
|
{
|
||||||
|
var basis = Bounds.Height > 1 ? Bounds.Height : 72;
|
||||||
|
Padding = new Thickness(Math.Clamp(basis * 0.18, 12, 18), Math.Clamp(basis * 0.14, 8, 14));
|
||||||
|
CornerRadius = new CornerRadius(Math.Clamp(basis * 0.32, 16, 24));
|
||||||
|
|
||||||
|
if (Child is not Button actionButton || actionButton.Content is not Grid contentGrid)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (contentGrid.Children[0] is Border iconShell)
|
||||||
|
{
|
||||||
|
var iconSize = Math.Clamp(basis * 0.58, 28, 40);
|
||||||
|
iconShell.Width = iconSize;
|
||||||
|
iconShell.Height = iconSize;
|
||||||
|
if (iconShell.Child is TextBlock iconText)
|
||||||
|
{
|
||||||
|
iconText.FontSize = Math.Clamp(iconSize * 0.5, 14, 20);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_titleTextBlock.FontSize = Math.Clamp(basis * 0.28, 14, 20);
|
||||||
|
_statusTextBlock.FontSize = Math.Clamp(basis * 0.18, 10, 13);
|
||||||
|
}
|
||||||
|
|
||||||
|
private string T(string key, string fallback)
|
||||||
|
{
|
||||||
|
return _localizer.GetString(key, fallback);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
# 示例插件
|
# 示例插件目录
|
||||||
|
|
||||||
本目录用于存放阑山桌面的示例开发插件。
|
## 中文
|
||||||
|
|
||||||
当前示例:
|
本目录用于存放阑山桌面的示例插件和参考实现。
|
||||||
- `LanMountainDesktop.SamplePlugin`
|
|
||||||
|
|
||||||
说明:
|
当前标准示例为 `LanMountainDesktop.SamplePlugin`。
|
||||||
- 这个插件是**示例开发插件**,用于演示插件项目结构、服务注册、设置页注册、桌面组件注册、`.laapp` 打包与安装流程。
|
|
||||||
- 开发新插件时,建议直接从这个示例插件复制一份再修改。
|
## English
|
||||||
- 示例插件属于 `LanAirApp/` 对外开发工作区;宿主应用里的插件运行时与解析实现位于 `LanMountainDesktop/plugins/`。
|
|
||||||
|
This directory stores sample plugins and reference implementations. The current standard sample is `LanMountainDesktop.SamplePlugin`.
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
# 插件标准文件
|
# 插件标准说明
|
||||||
|
|
||||||
这里存放 LanMountainDesktop 插件开发所使用的标准模板与约定文件。
|
## 中文
|
||||||
|
|
||||||
当前标准:
|
本目录存放插件开发需要遵循的基础约定,包括 `.laapp`、`plugin.json`、`Localization/` 以及仓库根目录 README 和安装包等要求。
|
||||||
- 安装包扩展名:`.laapp`
|
|
||||||
- 插件清单文件名:`plugin.json`
|
|
||||||
- 多语言资源目录:`Localization/`
|
|
||||||
- 建议内置语言文件:`zh-CN.json`、`en-US.json`
|
|
||||||
|
|
||||||
创建新插件时,建议优先参考本目录中的模板文件。
|
## English
|
||||||
|
|
||||||
|
This directory stores the baseline conventions for plugin development, including `.laapp`, `plugin.json`, `Localization/`, and repository-root deliverables.
|
||||||
|
|||||||
12
LanMountainDesktop.PluginSdk/IHostApplicationLifecycle.cs
Normal file
12
LanMountainDesktop.PluginSdk/IHostApplicationLifecycle.cs
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
namespace LanMountainDesktop.PluginSdk;
|
||||||
|
|
||||||
|
public sealed record HostApplicationLifecycleRequest(
|
||||||
|
string? Source = null,
|
||||||
|
string? Reason = null);
|
||||||
|
|
||||||
|
public interface IHostApplicationLifecycle
|
||||||
|
{
|
||||||
|
bool TryExit(HostApplicationLifecycleRequest? request = null);
|
||||||
|
|
||||||
|
bool TryRestart(HostApplicationLifecycleRequest? request = null);
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk" TreatAsLocalProperty="Version;PackageVersion;InformationalVersion;AssemblyVersion;FileVersion">
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Version>1.0.0</Version>
|
||||||
|
<PackageVersion>$(Version)</PackageVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\LanMountainDesktop.PluginSdk\LanMountainDesktop.PluginSdk.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
242
LanMountainDesktop.PluginsInstallHelper/Program.cs
Normal file
242
LanMountainDesktop.PluginsInstallHelper/Program.cs
Normal file
@@ -0,0 +1,242 @@
|
|||||||
|
using System.IO.Compression;
|
||||||
|
using System.Security.Cryptography;
|
||||||
|
using System.Text;
|
||||||
|
using System.Text.Json;
|
||||||
|
using LanMountainDesktop.PluginSdk;
|
||||||
|
|
||||||
|
internal static class Program
|
||||||
|
{
|
||||||
|
private static readonly TimeSpan[] RetryDelays =
|
||||||
|
[
|
||||||
|
TimeSpan.FromMilliseconds(120),
|
||||||
|
TimeSpan.FromMilliseconds(250),
|
||||||
|
TimeSpan.FromMilliseconds(500)
|
||||||
|
];
|
||||||
|
|
||||||
|
private static async Task<int> Main(string[] args)
|
||||||
|
{
|
||||||
|
var result = new HelperResult();
|
||||||
|
string? resultPath = null;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var parsedArgs = ParseArgs(args);
|
||||||
|
if (!parsedArgs.TryGetValue("source", out var sourcePath) ||
|
||||||
|
!parsedArgs.TryGetValue("plugins-dir", out var pluginsDirectory) ||
|
||||||
|
!parsedArgs.TryGetValue("result", out resultPath) ||
|
||||||
|
string.IsNullOrWhiteSpace(sourcePath) ||
|
||||||
|
string.IsNullOrWhiteSpace(pluginsDirectory) ||
|
||||||
|
string.IsNullOrWhiteSpace(resultPath))
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException("Required arguments: --source <path> --plugins-dir <path> --result <path>.");
|
||||||
|
}
|
||||||
|
|
||||||
|
var fullSourcePath = Path.GetFullPath(sourcePath);
|
||||||
|
var fullPluginsDirectory = Path.GetFullPath(pluginsDirectory);
|
||||||
|
resultPath = Path.GetFullPath(resultPath);
|
||||||
|
|
||||||
|
if (!File.Exists(fullSourcePath))
|
||||||
|
{
|
||||||
|
throw new FileNotFoundException($"Plugin package '{fullSourcePath}' was not found.", fullSourcePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
var manifest = ReadManifestFromPackage(fullSourcePath);
|
||||||
|
Directory.CreateDirectory(fullPluginsDirectory);
|
||||||
|
var destinationPath = Path.Combine(fullPluginsDirectory, BuildInstalledPackageFileName(manifest.Id));
|
||||||
|
var stagingPath = destinationPath + ".incoming";
|
||||||
|
DeleteFileWithRetry(stagingPath);
|
||||||
|
CopyWithRetry(fullSourcePath, stagingPath, overwrite: true);
|
||||||
|
RemoveExistingPluginPackages(fullPluginsDirectory, manifest.Id, destinationPath, stagingPath);
|
||||||
|
MoveWithOverwriteRetry(stagingPath, destinationPath);
|
||||||
|
|
||||||
|
result = new HelperResult
|
||||||
|
{
|
||||||
|
Success = true,
|
||||||
|
InstalledPackagePath = destinationPath,
|
||||||
|
ManifestId = manifest.Id,
|
||||||
|
ManifestName = manifest.Name
|
||||||
|
};
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
result = new HelperResult
|
||||||
|
{
|
||||||
|
Success = false,
|
||||||
|
ErrorMessage = ex.Message
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(resultPath))
|
||||||
|
{
|
||||||
|
var resultDirectory = Path.GetDirectoryName(resultPath);
|
||||||
|
if (!string.IsNullOrWhiteSpace(resultDirectory))
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(resultDirectory);
|
||||||
|
}
|
||||||
|
|
||||||
|
await File.WriteAllTextAsync(
|
||||||
|
resultPath,
|
||||||
|
JsonSerializer.Serialize(result, new JsonSerializerOptions
|
||||||
|
{
|
||||||
|
WriteIndented = true
|
||||||
|
}),
|
||||||
|
Encoding.UTF8);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result.Success ? 0 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Dictionary<string, string> ParseArgs(string[] args)
|
||||||
|
{
|
||||||
|
var values = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
||||||
|
for (var i = 0; i < args.Length; i++)
|
||||||
|
{
|
||||||
|
var current = args[i];
|
||||||
|
if (!current.StartsWith("--", StringComparison.Ordinal))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var key = current[2..];
|
||||||
|
if (string.IsNullOrWhiteSpace(key) || i + 1 >= args.Length)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
values[key] = args[++i];
|
||||||
|
}
|
||||||
|
|
||||||
|
return values;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static PluginManifest ReadManifestFromPackage(string packagePath)
|
||||||
|
{
|
||||||
|
using var archive = ZipFile.OpenRead(packagePath);
|
||||||
|
var entries = archive.Entries
|
||||||
|
.Where(entry => string.Equals(entry.Name, PluginSdkInfo.ManifestFileName, StringComparison.OrdinalIgnoreCase))
|
||||||
|
.ToArray();
|
||||||
|
|
||||||
|
if (entries.Length == 0)
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException(
|
||||||
|
$"Plugin package '{packagePath}' does not contain '{PluginSdkInfo.ManifestFileName}'.");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (entries.Length > 1)
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException(
|
||||||
|
$"Plugin package '{packagePath}' contains multiple '{PluginSdkInfo.ManifestFileName}' files.");
|
||||||
|
}
|
||||||
|
|
||||||
|
using var stream = entries[0].Open();
|
||||||
|
return PluginManifest.Load(stream, $"{packagePath}!/{entries[0].FullName}");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void RemoveExistingPluginPackages(string pluginsDirectory, string pluginId, string destinationPath, string stagingPath)
|
||||||
|
{
|
||||||
|
var runtimeRootDirectory = EnsureTrailingSeparator(Path.Combine(Path.GetFullPath(pluginsDirectory), PluginSdkInfo.RuntimeDirectoryName));
|
||||||
|
foreach (var existingPackagePath in Directory
|
||||||
|
.EnumerateFiles(pluginsDirectory, "*" + PluginSdkInfo.PackageFileExtension, SearchOption.AllDirectories)
|
||||||
|
.Select(Path.GetFullPath)
|
||||||
|
.Where(path => !path.StartsWith(runtimeRootDirectory, StringComparison.OrdinalIgnoreCase)))
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (string.Equals(existingPackagePath, Path.GetFullPath(destinationPath), StringComparison.OrdinalIgnoreCase) ||
|
||||||
|
string.Equals(existingPackagePath, Path.GetFullPath(stagingPath), StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var existingManifest = ReadManifestFromPackage(existingPackagePath);
|
||||||
|
if (!string.Equals(existingManifest.Id, pluginId, StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
DeleteFileWithRetry(existingPackagePath);
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
// Ignore unrelated or malformed packages while replacing an install target.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void CopyWithRetry(string sourcePath, string destinationPath, bool overwrite)
|
||||||
|
{
|
||||||
|
Retry(() => File.Copy(sourcePath, destinationPath, overwrite));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void MoveWithOverwriteRetry(string sourcePath, string destinationPath)
|
||||||
|
{
|
||||||
|
Retry(() => File.Move(sourcePath, destinationPath, overwrite: true));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void DeleteFileWithRetry(string filePath)
|
||||||
|
{
|
||||||
|
Retry(() =>
|
||||||
|
{
|
||||||
|
if (File.Exists(filePath))
|
||||||
|
{
|
||||||
|
File.Delete(filePath);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void Retry(Action action)
|
||||||
|
{
|
||||||
|
Exception? lastException = null;
|
||||||
|
|
||||||
|
for (var attempt = 0; attempt <= RetryDelays.Length; attempt++)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
action();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
catch (Exception ex) when (ex is IOException or UnauthorizedAccessException)
|
||||||
|
{
|
||||||
|
lastException = ex;
|
||||||
|
if (attempt >= RetryDelays.Length)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
Thread.Sleep(RetryDelays[attempt]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lastException is not null)
|
||||||
|
{
|
||||||
|
throw lastException;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string BuildInstalledPackageFileName(string pluginId)
|
||||||
|
{
|
||||||
|
var invalidChars = Path.GetInvalidFileNameChars();
|
||||||
|
var fileName = new string(pluginId.Select(ch => invalidChars.Contains(ch) ? '_' : ch).ToArray());
|
||||||
|
return fileName + PluginSdkInfo.PackageFileExtension;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string EnsureTrailingSeparator(string path)
|
||||||
|
{
|
||||||
|
return path.EndsWith(Path.DirectorySeparatorChar.ToString(), StringComparison.Ordinal)
|
||||||
|
? path
|
||||||
|
: path + Path.DirectorySeparatorChar;
|
||||||
|
}
|
||||||
|
|
||||||
|
private sealed class HelperResult
|
||||||
|
{
|
||||||
|
public bool Success { get; init; }
|
||||||
|
|
||||||
|
public string? InstalledPackagePath { get; init; }
|
||||||
|
|
||||||
|
public string? ManifestId { get; init; }
|
||||||
|
|
||||||
|
public string? ManifestName { get; init; }
|
||||||
|
|
||||||
|
public string? ErrorMessage { get; init; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
||||||
# Visual Studio Version 17
|
|
||||||
VisualStudioVersion = 17.0.31903.59
|
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LanMountainDesktop", "LanMountainDesktop\LanMountainDesktop.csproj", "{00000001-0000-0000-0000-000000000001}"
|
|
||||||
EndProject
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LanMountainDesktop.SamplePlugin", "LanAirApp\samples\LanMountainDesktop.SamplePlugin\LanMountainDesktop.SamplePlugin.csproj", "{BDCD028D-DB6E-4BD5-994A-65889DBDEE0C}"
|
|
||||||
EndProject
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LanMountainDesktop.PluginPackager", "LanAirApp\tools\LanMountainDesktop.PluginPackager\LanMountainDesktop.PluginPackager.csproj", "{AAE8578B-1F9D-4D4F-8B2E-0A98C55B0C31}"
|
|
||||||
EndProject
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LanMountainDesktop.PluginSdk", "LanMountainDesktop.PluginSdk\LanMountainDesktop.PluginSdk.csproj", "{30A0F689-AACC-48C8-8BFE-BC7BFBA6CC55}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Any CPU = Debug|Any CPU
|
|
||||||
Release|Any CPU = Release|Any CPU
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{00000001-0000-0000-0000-000000000001}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{00000001-0000-0000-0000-000000000001}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{00000001-0000-0000-0000-000000000001}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{00000001-0000-0000-0000-000000000001}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
{BDCD028D-DB6E-4BD5-994A-65889DBDEE0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{BDCD028D-DB6E-4BD5-994A-65889DBDEE0C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{BDCD028D-DB6E-4BD5-994A-65889DBDEE0C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{BDCD028D-DB6E-4BD5-994A-65889DBDEE0C}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
{AAE8578B-1F9D-4D4F-8B2E-0A98C55B0C31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{AAE8578B-1F9D-4D4F-8B2E-0A98C55B0C31}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{AAE8578B-1F9D-4D4F-8B2E-0A98C55B0C31}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{AAE8578B-1F9D-4D4F-8B2E-0A98C55B0C31}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
{30A0F689-AACC-48C8-8BFE-BC7BFBA6CC55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{30A0F689-AACC-48C8-8BFE-BC7BFBA6CC55}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{30A0F689-AACC-48C8-8BFE-BC7BFBA6CC55}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{30A0F689-AACC-48C8-8BFE-BC7BFBA6CC55}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
||||||
7
LanMountainDesktop.slnx
Normal file
7
LanMountainDesktop.slnx
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<Solution>
|
||||||
|
<Project Path="LanAirApp/samples/LanMountainDesktop.SamplePlugin/LanMountainDesktop.SamplePlugin.csproj" />
|
||||||
|
<Project Path="LanAirApp/tools/LanMountainDesktop.PluginPackager/LanMountainDesktop.PluginPackager.csproj" />
|
||||||
|
<Project Path="LanMountainDesktop.PluginSdk/LanMountainDesktop.PluginSdk.csproj" />
|
||||||
|
<Project Path="LanMountainDesktop.PluginsInstallHelper/LanMountainDesktop.PluginsInstallHelper.csproj" />
|
||||||
|
<Project Path="LanMountainDesktop/LanMountainDesktop.csproj" />
|
||||||
|
</Solution>
|
||||||
@@ -16,23 +16,6 @@
|
|||||||
<local:ViewLocator/>
|
<local:ViewLocator/>
|
||||||
</Application.DataTemplates>
|
</Application.DataTemplates>
|
||||||
|
|
||||||
<TrayIcon.Icons>
|
|
||||||
<TrayIcons>
|
|
||||||
<TrayIcon Icon="/Assets/avalonia-logo.ico"
|
|
||||||
ToolTipText="LanMountainDesktop">
|
|
||||||
<TrayIcon.Menu>
|
|
||||||
<NativeMenu>
|
|
||||||
<NativeMenuItem Header="设置" Click="OnTraySettingsClick" />
|
|
||||||
<NativeMenuItemSeparator />
|
|
||||||
<NativeMenuItem Header="重启应用" Click="OnTrayRestartClick" />
|
|
||||||
<NativeMenuItemSeparator />
|
|
||||||
<NativeMenuItem Header="退出应用" Click="OnTrayExitClick" />
|
|
||||||
</NativeMenu>
|
|
||||||
</TrayIcon.Menu>
|
|
||||||
</TrayIcon>
|
|
||||||
</TrayIcons>
|
|
||||||
</TrayIcon.Icons>
|
|
||||||
|
|
||||||
<Application.Styles>
|
<Application.Styles>
|
||||||
<sty:FluentAvaloniaTheme />
|
<sty:FluentAvaloniaTheme />
|
||||||
<mi:MaterialIconStyles />
|
<mi:MaterialIconStyles />
|
||||||
|
|||||||
@@ -1,28 +1,42 @@
|
|||||||
using Avalonia;
|
using Avalonia;
|
||||||
|
using Avalonia.Controls;
|
||||||
using Avalonia.Controls.ApplicationLifetimes;
|
using Avalonia.Controls.ApplicationLifetimes;
|
||||||
using Avalonia.Data.Core;
|
using Avalonia.Data.Core;
|
||||||
using Avalonia.Data.Core.Plugins;
|
using Avalonia.Data.Core.Plugins;
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Avalonia.Markup.Xaml;
|
using Avalonia.Markup.Xaml;
|
||||||
|
using Avalonia.Platform;
|
||||||
using Avalonia.Threading;
|
using Avalonia.Threading;
|
||||||
using LanMountainDesktop.Services;
|
using LanMountainDesktop.Services;
|
||||||
using LanMountainDesktop.ViewModels;
|
using LanMountainDesktop.ViewModels;
|
||||||
using LanMountainDesktop.Views;
|
using LanMountainDesktop.Views;
|
||||||
using AvaloniaWebView;
|
using AvaloniaWebView;
|
||||||
|
using LanMountainDesktop.PluginSdk;
|
||||||
|
|
||||||
namespace LanMountainDesktop;
|
namespace LanMountainDesktop;
|
||||||
|
|
||||||
public partial class App : Application
|
public partial class App : Application
|
||||||
{
|
{
|
||||||
|
private readonly AppSettingsService _appSettingsService = new();
|
||||||
|
private readonly LocalizationService _localizationService = new();
|
||||||
|
private readonly IHostApplicationLifecycle _hostApplicationLifecycle = new HostApplicationLifecycleService();
|
||||||
|
private bool _exitCleanupCompleted;
|
||||||
|
|
||||||
private SettingsWindow? _traySettingsWindow;
|
private SettingsWindow? _traySettingsWindow;
|
||||||
|
private TrayIcons? _trayIcons;
|
||||||
private PluginRuntimeService? _pluginRuntimeService;
|
private PluginRuntimeService? _pluginRuntimeService;
|
||||||
|
|
||||||
|
internal static SingleInstanceService? CurrentSingleInstanceService { get; set; }
|
||||||
|
internal static IHostApplicationLifecycle? CurrentHostApplicationLifecycle =>
|
||||||
|
(Current as App)?._hostApplicationLifecycle;
|
||||||
|
|
||||||
public PluginRuntimeService? PluginRuntimeService => _pluginRuntimeService;
|
public PluginRuntimeService? PluginRuntimeService => _pluginRuntimeService;
|
||||||
|
public IHostApplicationLifecycle HostApplicationLifecycle => _hostApplicationLifecycle;
|
||||||
|
|
||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
|
AppLogger.Info("App", "Initializing application resources.");
|
||||||
ConfigureWebViewUserDataFolder();
|
ConfigureWebViewUserDataFolder();
|
||||||
AvaloniaWebViewBuilder.Initialize(default);
|
AvaloniaWebViewBuilder.Initialize(default);
|
||||||
AvaloniaXamlLoader.Load(this);
|
AvaloniaXamlLoader.Load(this);
|
||||||
@@ -30,19 +44,29 @@ public partial class App : Application
|
|||||||
|
|
||||||
public override void OnFrameworkInitializationCompleted()
|
public override void OnFrameworkInitializationCompleted()
|
||||||
{
|
{
|
||||||
|
AppLogger.Info("App", "Framework initialization completed.");
|
||||||
LinuxDesktopEntryInstaller.EnsureInstalled();
|
LinuxDesktopEntryInstaller.EnsureInstalled();
|
||||||
InitializePluginRuntime();
|
InitializePluginRuntime();
|
||||||
|
AppSettingsService.SettingsSaved += OnAppSettingsSaved;
|
||||||
|
InitializeTrayIcon();
|
||||||
|
|
||||||
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
||||||
{
|
{
|
||||||
// Avoid duplicate validations from both Avalonia and the CommunityToolkit.
|
// Avoid duplicate validations from both Avalonia and the CommunityToolkit.
|
||||||
// More info: https://docs.avaloniaui.net/docs/guides/development-guides/data-validation#manage-validationplugins
|
// More info: https://docs.avaloniaui.net/docs/guides/development-guides/data-validation#manage-validationplugins
|
||||||
DisableAvaloniaDataAnnotationValidation();
|
DisableAvaloniaDataAnnotationValidation();
|
||||||
desktop.ShutdownMode = Avalonia.Controls.ShutdownMode.OnExplicitShutdown;
|
desktop.ShutdownMode = Avalonia.Controls.ShutdownMode.OnExplicitShutdown;
|
||||||
|
desktop.Exit += (_, _) =>
|
||||||
|
{
|
||||||
|
AppLogger.Info("App", "Desktop lifetime exit triggered.");
|
||||||
|
PerformExitCleanup();
|
||||||
|
};
|
||||||
desktop.MainWindow = new MainWindow
|
desktop.MainWindow = new MainWindow
|
||||||
{
|
{
|
||||||
DataContext = new MainWindowViewModel(),
|
DataContext = new MainWindowViewModel(),
|
||||||
};
|
};
|
||||||
|
AppLogger.Info("App", $"Main window created. LogFile={AppLogger.LogFilePath}");
|
||||||
|
CurrentSingleInstanceService?.StartActivationListener(ActivateMainWindow);
|
||||||
}
|
}
|
||||||
|
|
||||||
base.OnFrameworkInitializationCompleted();
|
base.OnFrameworkInitializationCompleted();
|
||||||
@@ -50,10 +74,9 @@ public partial class App : Application
|
|||||||
|
|
||||||
private void OnTrayExitClick(object? sender, EventArgs e)
|
private void OnTrayExitClick(object? sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
_ = _hostApplicationLifecycle.TryExit(new HostApplicationLifecycleRequest(
|
||||||
{
|
Source: "TrayMenu",
|
||||||
desktop.Shutdown();
|
Reason: "User selected Exit App from the tray menu."));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnTraySettingsClick(object? sender, EventArgs e)
|
private void OnTraySettingsClick(object? sender, EventArgs e)
|
||||||
@@ -89,14 +112,16 @@ public partial class App : Application
|
|||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Debug.WriteLine($"[TraySettings] Failed to open settings window: {ex}");
|
AppLogger.Warn("TraySettings", "Failed to open settings window.", ex);
|
||||||
}
|
}
|
||||||
}, DispatcherPriority.Normal);
|
}, DispatcherPriority.Normal);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnTrayRestartClick(object? sender, EventArgs e)
|
private void OnTrayRestartClick(object? sender, EventArgs e)
|
||||||
{
|
{
|
||||||
AppRestartService.TryRestartApplication();
|
_ = _hostApplicationLifecycle.TryRestart(new HostApplicationLifecycleRequest(
|
||||||
|
Source: "TrayMenu",
|
||||||
|
Reason: "User selected Restart App from the tray menu."));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DisableAvaloniaDataAnnotationValidation()
|
private void DisableAvaloniaDataAnnotationValidation()
|
||||||
@@ -133,9 +158,10 @@ public partial class App : Application
|
|||||||
userDataFolder,
|
userDataFolder,
|
||||||
EnvironmentVariableTarget.Process);
|
EnvironmentVariableTarget.Process);
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
// Keep startup resilient if user profile folders are unavailable.
|
// Keep startup resilient if user profile folders are unavailable.
|
||||||
|
AppLogger.Warn("WebView2", "Failed to configure WebView2 user data folder.", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -149,7 +175,170 @@ public partial class App : Application
|
|||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Debug.WriteLine($"[PluginRuntime] Failed to initialize plugin runtime: {ex}");
|
AppLogger.Warn("PluginRuntime", "Failed to initialize plugin runtime.", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void InitializeTrayIcon()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
DisposeTrayIcon();
|
||||||
|
|
||||||
|
using var iconStream = AssetLoader.Open(new Uri("avares://LanMountainDesktop/Assets/avalonia-logo.ico"));
|
||||||
|
var trayIcon = new TrayIcon
|
||||||
|
{
|
||||||
|
Icon = new WindowIcon(iconStream),
|
||||||
|
ToolTipText = L("tray.tooltip", "LanMountainDesktop"),
|
||||||
|
Menu = BuildTrayMenu(),
|
||||||
|
IsVisible = true
|
||||||
|
};
|
||||||
|
|
||||||
|
_trayIcons = [trayIcon];
|
||||||
|
TrayIcon.SetIcons(this, _trayIcons);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("TrayIcon", "Failed to initialize tray icon.", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private NativeMenu BuildTrayMenu()
|
||||||
|
{
|
||||||
|
var menu = new NativeMenu();
|
||||||
|
|
||||||
|
var settingsItem = new NativeMenuItem(L("tray.menu.settings", "设置"));
|
||||||
|
settingsItem.Click += OnTraySettingsClick;
|
||||||
|
menu.Items.Add(settingsItem);
|
||||||
|
|
||||||
|
menu.Items.Add(new NativeMenuItemSeparator());
|
||||||
|
|
||||||
|
var restartItem = new NativeMenuItem(L("tray.menu.restart", "重启应用"));
|
||||||
|
restartItem.Click += OnTrayRestartClick;
|
||||||
|
menu.Items.Add(restartItem);
|
||||||
|
|
||||||
|
menu.Items.Add(new NativeMenuItemSeparator());
|
||||||
|
|
||||||
|
var exitItem = new NativeMenuItem(L("tray.menu.exit", "退出应用"));
|
||||||
|
exitItem.Click += OnTrayExitClick;
|
||||||
|
menu.Items.Add(exitItem);
|
||||||
|
|
||||||
|
return menu;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void DisposeTrayIcon()
|
||||||
|
{
|
||||||
|
if (_trayIcons is null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
TrayIcon.SetIcons(this, null);
|
||||||
|
foreach (var trayIcon in _trayIcons)
|
||||||
|
{
|
||||||
|
trayIcon.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
_trayIcons = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ActivateMainWindow()
|
||||||
|
{
|
||||||
|
Dispatcher.UIThread.Post(() =>
|
||||||
|
{
|
||||||
|
if (ApplicationLifetime is not IClassicDesktopStyleApplicationLifetime desktop)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (desktop.MainWindow is not Window mainWindow)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!mainWindow.IsVisible)
|
||||||
|
{
|
||||||
|
mainWindow.Show();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mainWindow.WindowState == WindowState.Minimized)
|
||||||
|
{
|
||||||
|
mainWindow.WindowState = WindowState.Normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
mainWindow.Activate();
|
||||||
|
mainWindow.Topmost = true;
|
||||||
|
mainWindow.Topmost = false;
|
||||||
|
if (mainWindow is MainWindow lanMountainMainWindow)
|
||||||
|
{
|
||||||
|
lanMountainMainWindow.ShowSingleInstanceNotice();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("SingleInstance", "Failed to activate the existing main window.", ex);
|
||||||
|
}
|
||||||
|
}, DispatcherPriority.Send);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnAppSettingsSaved(string _)
|
||||||
|
{
|
||||||
|
Dispatcher.UIThread.Post(() =>
|
||||||
|
{
|
||||||
|
if (_trayIcons is not null)
|
||||||
|
{
|
||||||
|
InitializeTrayIcon();
|
||||||
|
}
|
||||||
|
}, DispatcherPriority.Background);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void PerformExitCleanup()
|
||||||
|
{
|
||||||
|
if (_exitCleanupCompleted)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_exitCleanupCompleted = true;
|
||||||
|
AppSettingsService.SettingsSaved -= OnAppSettingsSaved;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_traySettingsWindow?.Close();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("App", "Failed to close tray-opened settings window during shutdown.", ex);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_traySettingsWindow = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_pluginRuntimeService?.Dispose();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("PluginRuntime", "Failed to dispose plugin runtime during shutdown.", ex);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_pluginRuntimeService = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
AudioRecorderServiceFactory.DisposeSharedServices();
|
||||||
|
StudyAnalyticsServiceFactory.DisposeSharedService();
|
||||||
|
DisposeTrayIcon();
|
||||||
|
}
|
||||||
|
|
||||||
|
private string L(string key, string fallback)
|
||||||
|
{
|
||||||
|
var snapshot = _appSettingsService.Load();
|
||||||
|
var languageCode = _localizationService.NormalizeLanguageCode(snapshot.LanguageCode);
|
||||||
|
return _localizationService.GetString(languageCode, key, fallback);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,22 +1,35 @@
|
|||||||
# MiSans Font Notice
|
# MiSans 字体说明
|
||||||
|
|
||||||
This app bundles MiSans fonts for consistent cross-device rendering.
|
## 中文
|
||||||
|
|
||||||
## Included files
|
本项目内置 MiSans 字体,用于在不同设备上保持相对一致的文字渲染效果。
|
||||||
|
|
||||||
|
### 包含文件
|
||||||
|
|
||||||
- `MiSans-Regular.ttf`
|
- `MiSans-Regular.ttf`
|
||||||
- `MiSans-Semibold.ttf`
|
- `MiSans-Semibold.ttf`
|
||||||
- `MiSans-Bold.ttf`
|
- `MiSans-Bold.ttf`
|
||||||
|
|
||||||
## Source
|
### 来源
|
||||||
|
|
||||||
|
- 上游仓库:https://github.com/dsrkafuu/misans
|
||||||
|
- 上游所引用的小米字体页面:https://hyperos.mi.com/font/zh/
|
||||||
|
|
||||||
|
### 许可与使用说明
|
||||||
|
|
||||||
|
- 上游脚本或打包仓库使用 Apache-2.0 许可。
|
||||||
|
- MiSans 字体本身的版权和补充使用条款以小米官方说明为准:
|
||||||
|
- https://hyperos.mi.com/font-download/MiSans%E5%AD%97%E4%BD%93%E7%9F%A5%E8%AF%86%E4%BA%A7%E6%9D%83%E8%AE%B8%E5%8F%AF%E5%8D%8F%E8%AE%AE.pdf
|
||||||
|
|
||||||
|
在重新分发本项目时,请自行确认并遵守 MiSans 字体的相关条款。
|
||||||
|
|
||||||
|
## English
|
||||||
|
|
||||||
|
This project bundles MiSans fonts for more consistent cross-device rendering.
|
||||||
|
|
||||||
|
### Sources
|
||||||
|
|
||||||
- Upstream package repository: https://github.com/dsrkafuu/misans
|
- Upstream package repository: https://github.com/dsrkafuu/misans
|
||||||
- Original font source referenced by upstream: https://hyperos.mi.com/font/zh/
|
- Xiaomi font source page: https://hyperos.mi.com/font/zh/
|
||||||
|
|
||||||
## License and usage notes
|
Please review and comply with the MiSans font terms before redistributing this application.
|
||||||
|
|
||||||
- Script/package license in upstream repository: Apache-2.0
|
|
||||||
- MiSans font copyright and additional usage terms:
|
|
||||||
https://hyperos.mi.com/font-download/MiSans%E5%AD%97%E4%BD%93%E7%9F%A5%E8%AF%86%E4%BA%A7%E6%9D%83%E8%AE%B8%E5%8F%AF%E5%8D%8F%E8%AE%AE.pdf
|
|
||||||
|
|
||||||
Please review and comply with the MiSans font terms when distributing this app.
|
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
# Weather Background Assets
|
# 天气背景资源署名
|
||||||
|
|
||||||
Weather card background images are sourced from **Pexels** and used under the Pexels license:
|
## 中文
|
||||||
https://www.pexels.com/license/
|
|
||||||
|
|
||||||
## Sources
|
本目录中的天气背景图像主要来自 **Pexels**,并按 Pexels License 使用:
|
||||||
|
|
||||||
|
- License: https://www.pexels.com/license/
|
||||||
|
|
||||||
|
### 原始来源
|
||||||
|
|
||||||
- `clear_sky.jpg`
|
- `clear_sky.jpg`
|
||||||
- https://www.pexels.com/photo/a-clear-blue-sky-with-few-clouds-on-a-sunny-day-29390199/
|
- https://www.pexels.com/photo/a-clear-blue-sky-with-few-clouds-on-a-sunny-day-29390199/
|
||||||
@@ -14,16 +17,24 @@ https://www.pexels.com/license/
|
|||||||
- `storm.jpg`
|
- `storm.jpg`
|
||||||
- https://www.pexels.com/photo/sea-under-a-stormy-sky-4609228/
|
- https://www.pexels.com/photo/sea-under-a-stormy-sky-4609228/
|
||||||
|
|
||||||
## Derived Variants (for widget scene mapping)
|
### 派生资源
|
||||||
|
|
||||||
The following files are generated from the above base assets by color grading/brightness adjustments to match the ColorOS-like weather card style:
|
以下文件由上述基础图片经过色彩、亮度或风格调整后生成,用于适配阑山桌面的天气组件视觉:
|
||||||
|
|
||||||
- `clear_day.jpg` (from `clear_sky.jpg`)
|
- `clear_day.jpg`
|
||||||
- `clear_night.jpg` (from `clear_sky.jpg`)
|
- `clear_night.jpg`
|
||||||
- `cloudy_day.jpg` (from `clear_sky.jpg`)
|
- `cloudy_day.jpg`
|
||||||
- `cloudy_night.jpg` (from `clear_sky.jpg`)
|
- `cloudy_night.jpg`
|
||||||
- `rain_light.jpg` (from `rain.jpg`)
|
- `rain_light.jpg`
|
||||||
- `rain_heavy.jpg` (from `rain.jpg`)
|
- `rain_heavy.jpg`
|
||||||
- `storm_dark.jpg` (from `storm.jpg`)
|
- `storm_dark.jpg`
|
||||||
- `fog_haze.jpg` (from `storm.jpg`)
|
- `fog_haze.jpg`
|
||||||
- `snow_soft.jpg` (from `snow.jpg`)
|
- `snow_soft.jpg`
|
||||||
|
|
||||||
|
## English
|
||||||
|
|
||||||
|
The weather background images in this directory are primarily sourced from **Pexels** and used under the Pexels License:
|
||||||
|
|
||||||
|
- License: https://www.pexels.com/license/
|
||||||
|
|
||||||
|
Derived variants in this repository are adjusted from the listed base assets for widget presentation.
|
||||||
|
|||||||
@@ -1,45 +1,23 @@
|
|||||||
# HyperOS3 Weather Assets (Official Xiaomi Package)
|
# HyperOS3 天气资源署名
|
||||||
|
|
||||||
|
## 中文
|
||||||
|
|
||||||
|
本目录中的 HyperOS3 风格天气资源来自用户提供的 Xiaomi Weather 安装包提取内容,以及基于该视觉方向制作的项目内派生资源。
|
||||||
|
|
||||||
|
### 提取来源
|
||||||
|
|
||||||
These assets were extracted from the official Xiaomi Weather APK provided by the user:
|
|
||||||
- Source APK: `c:\Program Files\Netease\GameViewer\Download\MI SKY 12.apk`
|
- Source APK: `c:\Program Files\Netease\GameViewer\Download\MI SKY 12.apk`
|
||||||
- Package: `com.miui.weather2` (Mi Weather)
|
- Package: `com.miui.weather2`
|
||||||
- Extraction date: 2026-03-03
|
- Extraction date: `2026-03-03`
|
||||||
|
|
||||||
Extracted source paths inside APK:
|
### 用途说明
|
||||||
- `assets/map_custom/particle/sun_0.png` -> `hyper_sun_core.png`
|
|
||||||
- `assets/map_custom/particle/sun_1.png` -> `hyper_sun_ring.png`
|
|
||||||
- `assets/map_custom/particle/fog.png` -> `hyper_fog.png`
|
|
||||||
- `assets/map_custom/particle/haze.png` -> `hyper_haze.png`
|
|
||||||
- `assets/map_custom/particle/rain.png` -> `hyper_rain_drop.png`
|
|
||||||
- `assets/map_custom/particle/snow.png` -> `hyper_snow_flake.png`
|
|
||||||
- `assets/map_custom/skybox/top.png` -> `hyper_sky_top.png`
|
|
||||||
- `assets/map_custom/skybox/back.png` -> `hyper_sky_back.png`
|
|
||||||
- `assets/map_custom/skybox/front.png` -> `hyper_sky_front.png`
|
|
||||||
- `assets/map_custom/skybox/left.png` -> `hyper_sky_left.png`
|
|
||||||
- `assets/map_custom/skybox/right.png` -> `hyper_sky_right.png`
|
|
||||||
- `assets/map_custom/skybox/bottom.png` -> `hyper_sky_bottom.png`
|
|
||||||
- `assets/map_assets/VM3DRes/cross_sky_day.png` -> `hyper_cross_sky_day.png`
|
|
||||||
- `assets/map_assets/VM3DRes/cross_sky_night.png` -> `hyper_cross_sky_night.png`
|
|
||||||
|
|
||||||
Extracted weather icon paths inside APK (`res/*.webp`):
|
- 这些资源仅用于项目内部视觉研究、原型还原和界面适配。
|
||||||
- `res/aO.webp` -> `Icons/icon_sunny_day.webp`
|
- 使用时应遵守小米相关许可与使用条款。
|
||||||
- `res/k2.webp` -> `Icons/icon_moon_clear.webp`
|
|
||||||
- `res/Ip.webp` -> `Icons/icon_partly_cloudy_day.webp`
|
|
||||||
- `res/HI.webp` -> `Icons/icon_partly_cloudy_night.webp`
|
|
||||||
- `res/E4.webp` -> `Icons/icon_cloudy.webp`
|
|
||||||
- `res/5f.webp` -> `Icons/icon_rain_light.webp`
|
|
||||||
- `res/fO.webp` -> `Icons/icon_rain_heavy.webp`
|
|
||||||
- `res/lV1.webp` -> `Icons/icon_thunder.webp`
|
|
||||||
- `res/mH1.webp` -> `Icons/icon_snow.webp`
|
|
||||||
- `res/jB.webp` -> `Icons/icon_sleet.webp`
|
|
||||||
- `res/Wl.webp` -> `Icons/icon_haze.webp`
|
|
||||||
- `res/Mg.webp` -> `Icons/icon_windy.webp`
|
|
||||||
|
|
||||||
Use only according to Xiaomi's applicable license and usage terms.
|
### 额外派生资源
|
||||||
|
|
||||||
## Soft Widget Icon Set (2026-03-05)
|
以下文件为项目内基于上述视觉方向制作的派生素材:
|
||||||
|
|
||||||
To better match the Xiaomi weather time-card visual hierarchy, an additional local icon set was generated for this project:
|
|
||||||
|
|
||||||
- `Icons/icon_hero_sun_soft.png`
|
- `Icons/icon_hero_sun_soft.png`
|
||||||
- `Icons/icon_hero_moon_soft.png`
|
- `Icons/icon_hero_moon_soft.png`
|
||||||
@@ -52,4 +30,8 @@ To better match the Xiaomi weather time-card visual hierarchy, an additional loc
|
|||||||
- `Icons/icon_mini_snow_soft.png`
|
- `Icons/icon_mini_snow_soft.png`
|
||||||
- `Icons/icon_mini_fog_soft.png`
|
- `Icons/icon_mini_fog_soft.png`
|
||||||
|
|
||||||
These files are original derivative assets generated in-repo with local tooling, using the extracted Xiaomi package visual direction as reference (soft glow hero icon + lightweight forecast icons).
|
## English
|
||||||
|
|
||||||
|
The HyperOS3-style weather assets in this directory were extracted from a Xiaomi Weather APK provided by the user, together with additional derivative assets created in-repo to match the same visual direction.
|
||||||
|
|
||||||
|
Use these resources only in accordance with Xiaomi's applicable license and usage terms.
|
||||||
|
|||||||
@@ -1,77 +1,38 @@
|
|||||||
# 组件系统模块(Component System Module)
|
# 组件系统说明
|
||||||
|
|
||||||
本目录提供组件系统的模块化基础,用于支持内置组件管理与第三方扩展接入。
|
## 中文
|
||||||
This directory provides the modular foundation for built-in component management and third-party extension integration.
|
|
||||||
|
|
||||||
## 核心文件职责(Core Files)
|
`ComponentSystem/` 提供阑山桌面组件定义、注册和扩展的基础能力。
|
||||||
- `BuiltInComponentIds.cs`:内置组件 ID 常量(例如 `Clock`)。
|
|
||||||
Built-in component ID constants (for example `Clock`).
|
|
||||||
- `DesktopComponentDefinition.cs`:组件元数据定义(名称、类别、最小尺寸、可放置区域等)。
|
|
||||||
Component metadata model (name, category, minimum size, placement permissions).
|
|
||||||
- `ComponentPlacementRules.cs`:组件放置规则(最小尺寸、状态栏高度限制、网格边界约束)。
|
|
||||||
Placement rules (minimum size, status-bar height rule, grid clamping).
|
|
||||||
- `ComponentRegistry.cs`:组件注册中心,负责内置组件与扩展组件合并。
|
|
||||||
Registry that merges built-in and extension components.
|
|
||||||
- `Extensions/IComponentExtensionProvider.cs`:扩展提供者接口契约。
|
|
||||||
Extension provider interface contract.
|
|
||||||
- `Extensions/JsonComponentExtensionProvider.cs`:基于 JSON 的扩展加载器。
|
|
||||||
JSON-based extension loader.
|
|
||||||
|
|
||||||
## 第三方扩展契约(Extension Contract)
|
### 主要职责
|
||||||
- 第三方可通过实现 `IComponentExtensionProvider` 提供组件定义。
|
|
||||||
Third parties can provide component definitions via `IComponentExtensionProvider`.
|
|
||||||
- 当前内置了 JSON 提供者,运行时扫描目录:
|
|
||||||
Built-in JSON provider scans at runtime:
|
|
||||||
- `Extensions/Components/*.json`(相对应用输出目录)
|
|
||||||
`Extensions/Components/*.json` (relative to app output directory)
|
|
||||||
|
|
||||||
## 加载流程(Load Flow)
|
- 管理内置组件 ID 和元数据
|
||||||
1. `ComponentRegistry.CreateDefault()` 先注册内置组件。
|
- 约束组件最小尺寸与可放置区域
|
||||||
Register built-in components first via `ComponentRegistry.CreateDefault()`.
|
- 合并内置组件与扩展组件
|
||||||
2. 调用 `.RegisterExtensions(...)` 合并扩展组件。
|
- 通过 JSON 或扩展提供者接入第三方组件
|
||||||
Merge extension components via `.RegisterExtensions(...)`.
|
|
||||||
3. 主窗口通过注册中心校验组件合法性与放置权限。
|
|
||||||
Main window validates component identity and placement permission through the registry.
|
|
||||||
|
|
||||||
## JSON 清单格式(Manifest Schema)
|
### 关键文件
|
||||||
JSON 文件为数组,每一项代表一个组件定义。
|
|
||||||
The JSON file is an array, where each item represents one component definition.
|
|
||||||
|
|
||||||
```json
|
- `BuiltInComponentIds.cs`:内置组件 ID 常量
|
||||||
[
|
- `DesktopComponentDefinition.cs`:组件元数据模型
|
||||||
{
|
- `ComponentPlacementRules.cs`:放置规则
|
||||||
"id": "Weather",
|
- `ComponentRegistry.cs`:组件注册中心
|
||||||
"displayName": "Weather",
|
- `Extensions/IComponentExtensionProvider.cs`:扩展提供者接口
|
||||||
"iconKey": "WeatherSunny",
|
- `Extensions/JsonComponentExtensionProvider.cs`:JSON 扩展加载器
|
||||||
"category": "Status",
|
|
||||||
"minWidthCells": 1,
|
|
||||||
"minHeightCells": 1,
|
|
||||||
"allowStatusBarPlacement": true,
|
|
||||||
"allowDesktopPlacement": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
```
|
|
||||||
|
|
||||||
字段说明(Field notes):
|
### 扩展方式
|
||||||
- `id`:组件唯一 ID(建议英文、稳定不变)。
|
|
||||||
Unique component ID (prefer stable English key).
|
|
||||||
- `displayName`:显示名。
|
|
||||||
Display name.
|
|
||||||
- `iconKey`:图标键(由上层 UI 解释)。
|
|
||||||
Icon key resolved by UI layer.
|
|
||||||
- `category`:组件分类。
|
|
||||||
Component category.
|
|
||||||
- `minWidthCells` / `minHeightCells`:最小占格,必须满足 `>= 1`。
|
|
||||||
Minimum cell size, must satisfy `>= 1`.
|
|
||||||
- `allowStatusBarPlacement`:是否允许放到顶部状态栏。
|
|
||||||
Whether placing in top status bar is allowed.
|
|
||||||
- `allowDesktopPlacement`:是否允许放到桌面区域。
|
|
||||||
Whether placing in desktop area is allowed.
|
|
||||||
|
|
||||||
## 放置规则摘要(Placement Rules Summary)
|
- 当前默认扫描 `Extensions/Components/*.json`
|
||||||
- 最小尺寸约束:`minWidthCells >= 1` 且 `minHeightCells >= 1`。
|
- 组件清单定义显示名、分类、最小尺寸和可放置区域
|
||||||
Minimum size constraint: `minWidthCells >= 1` and `minHeightCells >= 1`.
|
- 主程序通过注册中心统一验证组件是否合法
|
||||||
- 状态栏约束:状态栏组件高度必须为 `1` 格。
|
|
||||||
Status bar constraint: component height must be exactly `1` cell.
|
## English
|
||||||
- 越界约束:所有组件坐标会被网格边界钳制(clamp)。
|
|
||||||
Out-of-bounds constraint: component coordinates are clamped to grid bounds.
|
`ComponentSystem/` contains the foundation for component definition, registration, and extension in LanMountainDesktop.
|
||||||
|
|
||||||
|
### Responsibilities
|
||||||
|
|
||||||
|
- manage built-in component IDs and metadata
|
||||||
|
- enforce placement rules
|
||||||
|
- merge built-in and extension components
|
||||||
|
- support third-party registration through JSON or provider contracts
|
||||||
|
|||||||
@@ -26,6 +26,8 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\LanMountainDesktop.PluginSdk\LanMountainDesktop.PluginSdk.csproj" />
|
<ProjectReference Include="..\LanMountainDesktop.PluginSdk\LanMountainDesktop.PluginSdk.csproj" />
|
||||||
|
<ProjectReference Include="..\LanMountainDesktop.PluginsInstallHelper\LanMountainDesktop.PluginsInstallHelper.csproj"
|
||||||
|
ReferenceOutputAssembly="false" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -40,6 +42,7 @@
|
|||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
|
||||||
<PackageReference Include="DotNetCampus.AvaloniaInkCanvas" Version="1.0.1" />
|
<PackageReference Include="DotNetCampus.AvaloniaInkCanvas" Version="1.0.1" />
|
||||||
|
<PackageReference Include="Downloader" Version="4.1.1" />
|
||||||
<PackageReference Include="FluentAvaloniaUI" Version="2.5.0" />
|
<PackageReference Include="FluentAvaloniaUI" Version="2.5.0" />
|
||||||
<PackageReference Include="FluentIcons.Avalonia" Version="2.0.319" />
|
<PackageReference Include="FluentIcons.Avalonia" Version="2.0.319" />
|
||||||
<PackageReference Include="FluentIcons.Avalonia.Fluent" Version="2.0.319" />
|
<PackageReference Include="FluentIcons.Avalonia.Fluent" Version="2.0.319" />
|
||||||
@@ -55,4 +58,22 @@
|
|||||||
<PackageReference Include="WebView.Avalonia.Desktop" Version="11.0.0.1" />
|
<PackageReference Include="WebView.Avalonia.Desktop" Version="11.0.0.1" />
|
||||||
<PackageReference Include="YamlDotNet" Version="16.3.0" />
|
<PackageReference Include="YamlDotNet" Version="16.3.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<Target Name="CopyPluginsInstallHelperToOutput" AfterTargets="Build">
|
||||||
|
<ItemGroup>
|
||||||
|
<PluginsInstallHelperFiles Include="..\LanMountainDesktop.PluginsInstallHelper\bin\$(Configuration)\net10.0\**\*.*" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Copy SourceFiles="@(PluginsInstallHelperFiles)"
|
||||||
|
DestinationFiles="@(PluginsInstallHelperFiles->'$(OutDir)PluginsInstallHelper\%(RecursiveDir)%(Filename)%(Extension)')"
|
||||||
|
SkipUnchangedFiles="true" />
|
||||||
|
</Target>
|
||||||
|
|
||||||
|
<Target Name="CopyPluginsInstallHelperToPublish" AfterTargets="Publish" Condition="'$(PublishDir)' != ''">
|
||||||
|
<ItemGroup>
|
||||||
|
<PluginsInstallHelperPublishFiles Include="..\LanMountainDesktop.PluginsInstallHelper\bin\$(Configuration)\net10.0\**\*.*" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Copy SourceFiles="@(PluginsInstallHelperPublishFiles)"
|
||||||
|
DestinationFiles="@(PluginsInstallHelperPublishFiles->'$(PublishDir)PluginsInstallHelper\%(RecursiveDir)%(Filename)%(Extension)')"
|
||||||
|
SkipUnchangedFiles="true" />
|
||||||
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{
|
{
|
||||||
"app.title": "LanMountainDesktop",
|
"app.title": "LanMountainDesktop",
|
||||||
|
"tray.tooltip": "LanMountainDesktop",
|
||||||
|
"tray.menu.settings": "Settings",
|
||||||
|
"tray.menu.restart": "Restart App",
|
||||||
|
"tray.menu.exit": "Exit App",
|
||||||
"button.back_to_windows": "Back to Windows",
|
"button.back_to_windows": "Back to Windows",
|
||||||
"tooltip.back_to_windows": "Back to Windows",
|
"tooltip.back_to_windows": "Back to Windows",
|
||||||
"tooltip.open_settings": "Settings",
|
"tooltip.open_settings": "Settings",
|
||||||
@@ -247,6 +251,7 @@
|
|||||||
"settings.update.status_launching_installer": "Download complete. Launching installer...",
|
"settings.update.status_launching_installer": "Download complete. Launching installer...",
|
||||||
"settings.update.status_installer_missing": "Installer file was not found after download.",
|
"settings.update.status_installer_missing": "Installer file was not found after download.",
|
||||||
"settings.update.status_installer_started": "Installer started. The app will close for update.",
|
"settings.update.status_installer_started": "Installer started. The app will close for update.",
|
||||||
|
"settings.update.status_elevation_cancelled": "Administrator permission was not granted. Update was cancelled.",
|
||||||
"settings.update.status_launch_failed_format": "Failed to start installer: {0}",
|
"settings.update.status_launch_failed_format": "Failed to start installer: {0}",
|
||||||
"settings.about.title": "About",
|
"settings.about.title": "About",
|
||||||
"settings.about.version_format": "Version: {0}",
|
"settings.about.version_format": "Version: {0}",
|
||||||
@@ -302,15 +307,17 @@
|
|||||||
"settings.launcher.hidden_empty": "No hidden items.",
|
"settings.launcher.hidden_empty": "No hidden items.",
|
||||||
"settings.launcher.hidden_type_folder": "Folder",
|
"settings.launcher.hidden_type_folder": "Folder",
|
||||||
"settings.launcher.hidden_type_shortcut": "Shortcut",
|
"settings.launcher.hidden_type_shortcut": "Shortcut",
|
||||||
"settings.launcher.restore_button": "Show Again",
|
"settings.launcher.restore_button": "Unhide",
|
||||||
"settings.plugins.title": "Plugins",
|
"settings.plugins.title": "Plugins",
|
||||||
"settings.plugins.runtime_header": "Plugin Runtime",
|
"settings.plugins.runtime_header": "Plugin Runtime",
|
||||||
"settings.plugins.runtime_desc": "Review plugin runtime state and load results.",
|
"settings.plugins.runtime_desc": "Review plugin runtime state and load results.",
|
||||||
"settings.plugins.runtime_hint": "This page shows discovery status, load results, and runtime diagnostics for installed plugins.",
|
"settings.plugins.runtime_hint": "This page shows discovery status, load results, and runtime diagnostics for installed plugins.",
|
||||||
"settings.plugins.runtime_status": "Plugin runtime status will appear here after plugin discovery completes.",
|
"settings.plugins.runtime_status": "Plugin runtime status will appear here after plugin discovery completes.",
|
||||||
"settings.plugins.installed_header": "Installed Plugins",
|
"settings.plugins.installed_header": "Installed Plugins",
|
||||||
"settings.plugins.installed_desc": "Enable or disable plugins here. Detailed plugin settings appear as separate settings pages.",
|
"settings.plugins.installed_desc": "Review installed plugins and remove them here.",
|
||||||
"settings.plugins.restart_hint": "Plugin enable state changes take effect after restarting the app.",
|
"settings.plugins.import_header": "Install From Package",
|
||||||
|
"settings.plugins.import_desc": "Open a .laapp package and stage it into the local plugin directory.",
|
||||||
|
"settings.plugins.restart_hint": "Plugin installation and deletion changes take effect after restarting the app.",
|
||||||
"settings.plugins.empty": "No plugins found.",
|
"settings.plugins.empty": "No plugins found.",
|
||||||
"settings.plugins.runtime_unavailable": "Plugin runtime is not available.",
|
"settings.plugins.runtime_unavailable": "Plugin runtime is not available.",
|
||||||
"settings.plugins.summary_format": "Detected {0} plugin(s); enabled {1}; loaded {2}; settings pages {3}; widgets {4}; failures {5}.",
|
"settings.plugins.summary_format": "Detected {0} plugin(s); enabled {1}; loaded {2}; settings pages {3}; widgets {4}; failures {5}.",
|
||||||
@@ -325,6 +332,7 @@
|
|||||||
"settings.plugins.toggle_result_format": "Plugin '{0}' was {1} for the next launch. Restart the app to apply page and widget changes.",
|
"settings.plugins.toggle_result_format": "Plugin '{0}' was {1} for the next launch. Restart the app to apply page and widget changes.",
|
||||||
"settings.plugins.toggle_state_enabled": "enabled",
|
"settings.plugins.toggle_state_enabled": "enabled",
|
||||||
"settings.plugins.toggle_state_disabled": "disabled",
|
"settings.plugins.toggle_state_disabled": "disabled",
|
||||||
|
"settings.plugins.toggle_failed_detail_format": "Failed to update plugin '{0}': {1}",
|
||||||
"settings.plugins.install_button": "Open .laapp package",
|
"settings.plugins.install_button": "Open .laapp package",
|
||||||
"settings.plugins.install_unavailable": "Plugin runtime is unavailable, so .laapp packages cannot be installed right now.",
|
"settings.plugins.install_unavailable": "Plugin runtime is unavailable, so .laapp packages cannot be installed right now.",
|
||||||
"settings.plugins.install_hint_format": "Open a .laapp package to install it into: {0}",
|
"settings.plugins.install_hint_format": "Open a .laapp package to install it into: {0}",
|
||||||
@@ -334,14 +342,20 @@
|
|||||||
"settings.plugins.install_copy_failed": "Failed to copy the selected .laapp package.",
|
"settings.plugins.install_copy_failed": "Failed to copy the selected .laapp package.",
|
||||||
"settings.plugins.install_success_format": "Installed plugin '{0}'. Restart the app to apply newly added settings pages and widgets.",
|
"settings.plugins.install_success_format": "Installed plugin '{0}'. Restart the app to apply newly added settings pages and widgets.",
|
||||||
"settings.plugins.install_failed_format": "Failed to install plugin package: {0}",
|
"settings.plugins.install_failed_format": "Failed to install plugin package: {0}",
|
||||||
|
"settings.plugins.delete_button": "Delete plugin",
|
||||||
|
"settings.plugins.delete_success_format": "Plugin '{0}' was staged for deletion. Restart the app to finish removing it.",
|
||||||
|
"settings.plugins.delete_failed_format": "Failed to delete plugin: {0}",
|
||||||
|
"settings.plugins.delete_failed_detail_format": "Failed to delete plugin '{0}': {1}",
|
||||||
|
"settings.plugins.publisher_format": "Publisher: {0}",
|
||||||
|
"settings.plugins.publisher_unknown": "Unknown publisher",
|
||||||
"settings.plugins.source_package": ".laapp package",
|
"settings.plugins.source_package": ".laapp package",
|
||||||
"settings.plugins.source_manifest": "Loose manifest",
|
"settings.plugins.source_manifest": "Loose manifest",
|
||||||
"settings.plugins.subtitle_format": "{0} | {1} | {2}",
|
"settings.plugins.subtitle_format": "{0} | {1} | {2}",
|
||||||
"settings.plugins.detail_format": "Settings pages: {0} | Widgets: {1}",
|
"settings.plugins.detail_format": "Settings pages: {0} | Widgets: {1}",
|
||||||
"settings.plugins.market_header": "Official Market",
|
"settings.nav.plugin_market": "Plugin Market",
|
||||||
"settings.plugins.market_desc": "Browse plugins from the official LanAirApp source and stage installs.",
|
"settings.plugin_market.title": "Plugin Market",
|
||||||
"settings.plugins.market_hint": "Use the official market source hosted in LanAirApp to discover and stage plugin installs.",
|
"settings.plugin_market.subtitle": "Browse plugins from the official LanAirApp source and stage installs.",
|
||||||
"settings.plugins.market_unavailable": "Plugin runtime is not available, so the official market cannot be opened right now.",
|
"settings.plugin_market.unavailable": "Plugin runtime is not available, so the official market cannot be opened right now.",
|
||||||
"market.toolbar.search_placeholder": "Search plugins",
|
"market.toolbar.search_placeholder": "Search plugins",
|
||||||
"market.toolbar.refresh": "Refresh",
|
"market.toolbar.refresh": "Refresh",
|
||||||
"market.status.loading": "Loading the official plugin market...",
|
"market.status.loading": "Loading the official plugin market...",
|
||||||
@@ -364,6 +378,15 @@
|
|||||||
"market.detail.min_host_version": "Minimum Host Version",
|
"market.detail.min_host_version": "Minimum Host Version",
|
||||||
"market.detail.installed_version": "Installed Version",
|
"market.detail.installed_version": "Installed Version",
|
||||||
"market.detail.not_installed": "Not installed",
|
"market.detail.not_installed": "Not installed",
|
||||||
|
"market.detail.readme": "README",
|
||||||
|
"market.detail.plugin_information": "Plugin Information",
|
||||||
|
"market.detail.author_subtitle_format": "By {0}",
|
||||||
|
"market.detail.package_size": "Package Size",
|
||||||
|
"market.detail.published_at": "Published At",
|
||||||
|
"market.detail.updated_at": "Updated At",
|
||||||
|
"market.detail.tags": "Tags",
|
||||||
|
"market.detail.project": "Project",
|
||||||
|
"market.detail.state": "Install State",
|
||||||
"market.detail.market_source": "Market Source",
|
"market.detail.market_source": "Market Source",
|
||||||
"market.detail.homepage": "Homepage",
|
"market.detail.homepage": "Homepage",
|
||||||
"market.detail.repository": "Repository",
|
"market.detail.repository": "Repository",
|
||||||
@@ -720,7 +743,10 @@
|
|||||||
"placement.fit": "Fit",
|
"placement.fit": "Fit",
|
||||||
"placement.stretch": "Stretch",
|
"placement.stretch": "Stretch",
|
||||||
"placement.center": "Center",
|
"placement.center": "Center",
|
||||||
"placement.tile": "Tile"
|
"placement.tile": "Tile",
|
||||||
}
|
"single_instance.notice.title": "App already open",
|
||||||
|
"single_instance.notice.description": "LanMountainDesktop is already running. Switched back to the active desktop.",
|
||||||
|
"single_instance.notice.button": "Got it"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
{
|
{
|
||||||
"app.title": "LanMountainDesktop",
|
"app.title": "LanMountainDesktop",
|
||||||
|
"tray.tooltip": "LanMountainDesktop",
|
||||||
|
"tray.menu.settings": "设置",
|
||||||
|
"tray.menu.restart": "重启应用",
|
||||||
|
"tray.menu.exit": "退出应用",
|
||||||
"button.back_to_windows": "回到Windows",
|
"button.back_to_windows": "回到Windows",
|
||||||
"tooltip.back_to_windows": "回到Windows",
|
"tooltip.back_to_windows": "回到Windows",
|
||||||
"tooltip.open_settings": "设置",
|
"tooltip.open_settings": "设置",
|
||||||
@@ -247,6 +251,7 @@
|
|||||||
"settings.update.status_launching_installer": "下载完成,正在启动安装程序...",
|
"settings.update.status_launching_installer": "下载完成,正在启动安装程序...",
|
||||||
"settings.update.status_installer_missing": "下载后未找到安装包文件。",
|
"settings.update.status_installer_missing": "下载后未找到安装包文件。",
|
||||||
"settings.update.status_installer_started": "安装程序已启动,应用将关闭进行更新。",
|
"settings.update.status_installer_started": "安装程序已启动,应用将关闭进行更新。",
|
||||||
|
"settings.update.status_elevation_cancelled": "未授予管理员权限,更新已取消。",
|
||||||
"settings.update.status_launch_failed_format": "启动安装程序失败:{0}",
|
"settings.update.status_launch_failed_format": "启动安装程序失败:{0}",
|
||||||
"settings.about.title": "关于",
|
"settings.about.title": "关于",
|
||||||
"settings.about.version_format": "版本号: {0}",
|
"settings.about.version_format": "版本号: {0}",
|
||||||
@@ -302,15 +307,17 @@
|
|||||||
"settings.launcher.hidden_empty": "暂无隐藏项目。",
|
"settings.launcher.hidden_empty": "暂无隐藏项目。",
|
||||||
"settings.launcher.hidden_type_folder": "文件夹",
|
"settings.launcher.hidden_type_folder": "文件夹",
|
||||||
"settings.launcher.hidden_type_shortcut": "快捷方式",
|
"settings.launcher.hidden_type_shortcut": "快捷方式",
|
||||||
"settings.launcher.restore_button": "重新显示",
|
"settings.launcher.restore_button": "取消隐藏",
|
||||||
"settings.plugins.title": "插件",
|
"settings.plugins.title": "插件",
|
||||||
"settings.plugins.runtime_header": "插件运行时",
|
"settings.plugins.runtime_header": "插件运行时",
|
||||||
"settings.plugins.runtime_desc": "查看插件运行时状态、加载结果与诊断信息。",
|
"settings.plugins.runtime_desc": "查看插件运行时状态、加载结果与诊断信息。",
|
||||||
"settings.plugins.runtime_hint": "这里展示已安装插件的发现结果、加载状态和运行时诊断信息。",
|
"settings.plugins.runtime_hint": "这里展示已安装插件的发现结果、加载状态和运行时诊断信息。",
|
||||||
"settings.plugins.runtime_status": "插件扫描完成后,运行时状态会显示在这里。",
|
"settings.plugins.runtime_status": "插件扫描完成后,运行时状态会显示在这里。",
|
||||||
"settings.plugins.installed_header": "已安装插件",
|
"settings.plugins.installed_header": "已安装插件",
|
||||||
"settings.plugins.installed_desc": "在这里启用或禁用插件。插件自己的详细设置会作为独立设置页出现。",
|
"settings.plugins.installed_desc": "在这里查看和删除已安装的插件。",
|
||||||
"settings.plugins.restart_hint": "插件启用状态变更会在重启应用后生效。",
|
"settings.plugins.import_header": "从安装包导入",
|
||||||
|
"settings.plugins.import_desc": "打开一个 .laapp 插件包,并将其暂存到本地插件目录。",
|
||||||
|
"settings.plugins.restart_hint": "插件安装和删除变更会在重启应用后生效。",
|
||||||
"settings.plugins.empty": "未找到插件。",
|
"settings.plugins.empty": "未找到插件。",
|
||||||
"settings.plugins.runtime_unavailable": "插件运行时不可用。",
|
"settings.plugins.runtime_unavailable": "插件运行时不可用。",
|
||||||
"settings.plugins.summary_format": "共检测到 {0} 个插件;已启用 {1} 个;已加载 {2} 个;设置页 {3} 个;组件 {4} 个;失败 {5} 个。",
|
"settings.plugins.summary_format": "共检测到 {0} 个插件;已启用 {1} 个;已加载 {2} 个;设置页 {3} 个;组件 {4} 个;失败 {5} 个。",
|
||||||
@@ -325,6 +332,7 @@
|
|||||||
"settings.plugins.toggle_result_format": "插件“{0}”已在下次启动时设为{1}。重启应用后,设置页和组件变更才会生效。",
|
"settings.plugins.toggle_result_format": "插件“{0}”已在下次启动时设为{1}。重启应用后,设置页和组件变更才会生效。",
|
||||||
"settings.plugins.toggle_state_enabled": "启用",
|
"settings.plugins.toggle_state_enabled": "启用",
|
||||||
"settings.plugins.toggle_state_disabled": "禁用",
|
"settings.plugins.toggle_state_disabled": "禁用",
|
||||||
|
"settings.plugins.toggle_failed_detail_format": "更新插件“{0}”状态失败:{1}",
|
||||||
"settings.plugins.install_button": "打开 .laapp 插件包",
|
"settings.plugins.install_button": "打开 .laapp 插件包",
|
||||||
"settings.plugins.install_unavailable": "插件运行时不可用,暂时无法安装 .laapp 插件包。",
|
"settings.plugins.install_unavailable": "插件运行时不可用,暂时无法安装 .laapp 插件包。",
|
||||||
"settings.plugins.install_hint_format": "打开一个 .laapp 插件包,安装到:{0}",
|
"settings.plugins.install_hint_format": "打开一个 .laapp 插件包,安装到:{0}",
|
||||||
@@ -334,14 +342,20 @@
|
|||||||
"settings.plugins.install_copy_failed": "复制所选 .laapp 插件包失败。",
|
"settings.plugins.install_copy_failed": "复制所选 .laapp 插件包失败。",
|
||||||
"settings.plugins.install_success_format": "插件“{0}”安装完成。重启应用后,新增的设置页和组件才会生效。",
|
"settings.plugins.install_success_format": "插件“{0}”安装完成。重启应用后,新增的设置页和组件才会生效。",
|
||||||
"settings.plugins.install_failed_format": "安装插件包失败:{0}",
|
"settings.plugins.install_failed_format": "安装插件包失败:{0}",
|
||||||
|
"settings.plugins.delete_button": "删除插件",
|
||||||
|
"settings.plugins.delete_success_format": "插件“{0}”已暂存删除。重启应用后会完成移除。",
|
||||||
|
"settings.plugins.delete_failed_format": "删除插件失败:{0}",
|
||||||
|
"settings.plugins.delete_failed_detail_format": "删除插件“{0}”失败:{1}",
|
||||||
|
"settings.plugins.publisher_format": "发布者:{0}",
|
||||||
|
"settings.plugins.publisher_unknown": "未知发布者",
|
||||||
"settings.plugins.source_package": ".laapp 包",
|
"settings.plugins.source_package": ".laapp 包",
|
||||||
"settings.plugins.source_manifest": "散装清单",
|
"settings.plugins.source_manifest": "散装清单",
|
||||||
"settings.plugins.subtitle_format": "{0} | {1} | {2}",
|
"settings.plugins.subtitle_format": "{0} | {1} | {2}",
|
||||||
"settings.plugins.detail_format": "设置页:{0} | 组件:{1}",
|
"settings.plugins.detail_format": "设置页:{0} | 组件:{1}",
|
||||||
"settings.plugins.market_header": "官方市场",
|
"settings.nav.plugin_market": "插件市场",
|
||||||
"settings.plugins.market_desc": "浏览来自 LanAirApp 官方源的插件,并将安装暂存到本地。",
|
"settings.plugin_market.title": "插件市场",
|
||||||
"settings.plugins.market_hint": "这里使用托管在 LanAirApp 仓库中的官方市场索引来发现插件并暂存安装。",
|
"settings.plugin_market.subtitle": "浏览来自 LanAirApp 官方源的插件,并将安装暂存到本地。",
|
||||||
"settings.plugins.market_unavailable": "插件运行时不可用,暂时无法打开官方市场。",
|
"settings.plugin_market.unavailable": "插件运行时不可用,暂时无法打开官方市场。",
|
||||||
"market.toolbar.search_placeholder": "搜索插件",
|
"market.toolbar.search_placeholder": "搜索插件",
|
||||||
"market.toolbar.refresh": "刷新",
|
"market.toolbar.refresh": "刷新",
|
||||||
"market.status.loading": "正在加载官方插件市场...",
|
"market.status.loading": "正在加载官方插件市场...",
|
||||||
@@ -364,6 +378,15 @@
|
|||||||
"market.detail.min_host_version": "最低宿主版本",
|
"market.detail.min_host_version": "最低宿主版本",
|
||||||
"market.detail.installed_version": "已安装版本",
|
"market.detail.installed_version": "已安装版本",
|
||||||
"market.detail.not_installed": "未安装",
|
"market.detail.not_installed": "未安装",
|
||||||
|
"market.detail.readme": "README",
|
||||||
|
"market.detail.plugin_information": "插件信息",
|
||||||
|
"market.detail.author_subtitle_format": "作者:{0}",
|
||||||
|
"market.detail.package_size": "包大小",
|
||||||
|
"market.detail.published_at": "首次发布",
|
||||||
|
"market.detail.updated_at": "最近更新",
|
||||||
|
"market.detail.tags": "标签",
|
||||||
|
"market.detail.project": "项目",
|
||||||
|
"market.detail.state": "安装状态",
|
||||||
"market.detail.market_source": "市场源",
|
"market.detail.market_source": "市场源",
|
||||||
"market.detail.homepage": "主页",
|
"market.detail.homepage": "主页",
|
||||||
"market.detail.repository": "仓库",
|
"market.detail.repository": "仓库",
|
||||||
@@ -720,7 +743,10 @@
|
|||||||
"placement.fit": "适应",
|
"placement.fit": "适应",
|
||||||
"placement.stretch": "拉伸",
|
"placement.stretch": "拉伸",
|
||||||
"placement.center": "居中",
|
"placement.center": "居中",
|
||||||
"placement.tile": "平铺"
|
"placement.tile": "平铺",
|
||||||
}
|
"single_instance.notice.title": "应用已打开",
|
||||||
|
"single_instance.notice.description": "阑山桌面已经在运行,已为你切换到当前正在使用的桌面。",
|
||||||
|
"single_instance.notice.button": "知道了"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,75 +1,51 @@
|
|||||||
# Desktop Packaging Guide
|
# 桌面端打包指南
|
||||||
|
|
||||||
## Prerequisites
|
## 中文
|
||||||
- Install `.NET SDK 10`
|
|
||||||
- Windows installer build only:
|
|
||||||
- Install `Inno Setup 6` (`ISCC.exe`)
|
|
||||||
|
|
||||||
## Local packaging commands
|
本指南说明阑山桌面的本地打包和 CI 打包流程。
|
||||||
|
|
||||||
|
### 前置条件
|
||||||
|
|
||||||
|
- 安装 .NET SDK 10
|
||||||
|
- Windows 安装包需要 Inno Setup 6(`ISCC.exe`)
|
||||||
|
|
||||||
|
### 本地打包命令
|
||||||
|
|
||||||
|
#### Windows 安装包
|
||||||
|
|
||||||
### Windows installer (`win-x64`)
|
|
||||||
```powershell
|
```powershell
|
||||||
.\scripts\package.ps1 -RuntimeIdentifier win-x64 -Version 1.0.1
|
.\scripts\package.ps1 -RuntimeIdentifier win-x64 -Version 1.0.1
|
||||||
```
|
```
|
||||||
|
|
||||||
Output:
|
#### Linux 包
|
||||||
- Published files: `artifacts/publish/win-x64`
|
|
||||||
- Installer: `artifacts/installer`
|
|
||||||
|
|
||||||
### Linux package (`linux-x64`)
|
|
||||||
```powershell
|
```powershell
|
||||||
pwsh ./scripts/package.ps1 -RuntimeIdentifier linux-x64 -Version 1.0.1
|
pwsh ./scripts/package.ps1 -RuntimeIdentifier linux-x64 -Version 1.0.1
|
||||||
```
|
```
|
||||||
|
|
||||||
Output:
|
#### macOS 包
|
||||||
- Published files: `artifacts/publish/linux-x64`
|
|
||||||
- Zip package: `artifacts/packages/LanMountainDesktop-1.0.1-linux-x64.zip`
|
|
||||||
|
|
||||||
### macOS package (`osx-x64`)
|
|
||||||
```powershell
|
```powershell
|
||||||
pwsh ./scripts/package.ps1 -RuntimeIdentifier osx-x64 -Version 1.0.1
|
pwsh ./scripts/package.ps1 -RuntimeIdentifier osx-x64 -Version 1.0.1
|
||||||
```
|
```
|
||||||
|
|
||||||
Output:
|
### 产物位置
|
||||||
- Published files: `artifacts/publish/osx-x64`
|
|
||||||
- Zip package: `artifacts/packages/LanMountainDesktop-1.0.1-osx-x64.zip`
|
|
||||||
|
|
||||||
## Optional script flags
|
- 发布目录:`artifacts/publish/<rid>`
|
||||||
```powershell
|
- 安装包或压缩包:`artifacts/installer` 或 `artifacts/packages`
|
||||||
# Publish only (skip Windows installer step)
|
|
||||||
.\scripts\package.ps1 -RuntimeIdentifier win-x64 -SkipInstaller
|
|
||||||
|
|
||||||
# Publish only (skip Linux/macOS zip package step)
|
### CI 流程
|
||||||
pwsh ./scripts/package.ps1 -RuntimeIdentifier linux-x64 -SkipArchive
|
|
||||||
```
|
|
||||||
|
|
||||||
## Runtime dependency notes
|
- 工作流文件:`.github/workflows/windows-ci.yml`
|
||||||
- Linux build does not bundle a native `libvlc` package from NuGet.
|
- 日常构建会验证桌面端可编译
|
||||||
- Install VLC runtime on target machine, for example:
|
- 手动触发或 `v*` 标签可生成正式包并上传到 Release
|
||||||
- Ubuntu/Debian: `sudo apt install vlc libvlc-dev`
|
|
||||||
- macOS packaging target in CI is currently `osx-x64`.
|
|
||||||
|
|
||||||
## CI workflow
|
## English
|
||||||
- Workflow file: `.github/workflows/windows-ci.yml`
|
|
||||||
- Workflow name: `Desktop CI`
|
|
||||||
|
|
||||||
Jobs:
|
This guide covers local packaging and CI packaging for LanMountainDesktop.
|
||||||
- `Validate Build (Windows)` runs on every push and pull request.
|
|
||||||
- Package flow runs on manual trigger or `v*` tag push:
|
|
||||||
- `Resolve Package Version` (single shared version source)
|
|
||||||
- `Package (Windows)` (`win-x64` installer)
|
|
||||||
- `Package (Linux)` (`linux-x64` zip)
|
|
||||||
- `Package (macOS)` (`osx-x64` zip)
|
|
||||||
- On `v*` tags, `Attach Artifacts to GitHub Release` uploads Windows/Linux/macOS packages to the release.
|
|
||||||
|
|
||||||
### Trigger manual packaging
|
### Key points
|
||||||
1. Open GitHub Actions.
|
|
||||||
2. Choose `Desktop CI`.
|
|
||||||
3. Click `Run workflow`.
|
|
||||||
4. Optional: set `version` input, for example `1.0.1`.
|
|
||||||
|
|
||||||
### Trigger by tag
|
- use `scripts/package.ps1` with the target runtime identifier
|
||||||
```powershell
|
- Windows installer requires Inno Setup
|
||||||
git tag v1.0.1
|
- CI can publish artifacts and attach them to GitHub Releases
|
||||||
git push origin v1.0.1
|
|
||||||
```
|
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
using Avalonia;
|
using Avalonia;
|
||||||
using Avalonia.WebView.Desktop;
|
using Avalonia.WebView.Desktop;
|
||||||
using LanMountainDesktop.Services;
|
using LanMountainDesktop.Services;
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace LanMountainDesktop;
|
namespace LanMountainDesktop;
|
||||||
|
|
||||||
@@ -11,8 +14,40 @@ sealed class Program
|
|||||||
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
|
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
|
||||||
// yet and stuff might break.
|
// yet and stuff might break.
|
||||||
[STAThread]
|
[STAThread]
|
||||||
public static void Main(string[] args) => BuildAvaloniaApp(LoadConfiguredRenderMode())
|
public static void Main(string[] args)
|
||||||
.StartWithClassicDesktopLifetime(args);
|
{
|
||||||
|
AppLogger.Initialize();
|
||||||
|
RegisterGlobalExceptionLogging();
|
||||||
|
|
||||||
|
using var singleInstance = AcquireSingleInstance(args);
|
||||||
|
if (!singleInstance.IsPrimaryInstance)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("Startup", "A secondary launch was blocked because another instance is already running.");
|
||||||
|
_ = singleInstance.TryNotifyPrimaryInstance(TimeSpan.FromSeconds(2));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var diagnostics = StartupDiagnosticsService.Run(args);
|
||||||
|
StartupDiagnosticsService.ShowLegacyExecutableWarningIfNeeded(diagnostics);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var renderMode = LoadConfiguredRenderMode();
|
||||||
|
AppLogger.Info("Startup", $"Resolved render mode '{renderMode}'.");
|
||||||
|
App.CurrentSingleInstanceService = singleInstance;
|
||||||
|
BuildAvaloniaApp(renderMode).StartWithClassicDesktopLifetime(args);
|
||||||
|
AppLogger.Info("Startup", "Application exited normally.");
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Critical("Startup", "Application terminated during startup.", ex);
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
App.CurrentSingleInstanceService = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Avalonia configuration, don't remove; also used by visual designer.
|
// Avalonia configuration, don't remove; also used by visual designer.
|
||||||
public static AppBuilder BuildAvaloniaApp(string renderMode = AppRenderingModeHelper.Default)
|
public static AppBuilder BuildAvaloniaApp(string renderMode = AppRenderingModeHelper.Default)
|
||||||
@@ -38,15 +73,89 @@ sealed class Program
|
|||||||
return builder;
|
return builder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static SingleInstanceService AcquireSingleInstance(string[] args)
|
||||||
|
{
|
||||||
|
var restartParentProcessId = AppRestartService.TryGetRestartParentProcessId(args);
|
||||||
|
var singleInstance = SingleInstanceService.CreateDefault();
|
||||||
|
if (singleInstance.IsPrimaryInstance || restartParentProcessId is null)
|
||||||
|
{
|
||||||
|
return singleInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
AppLogger.Info(
|
||||||
|
"Startup",
|
||||||
|
$"Restart relaunch detected. Waiting for previous instance pid={restartParentProcessId.Value} to exit before re-acquiring the single-instance lock.");
|
||||||
|
singleInstance.Dispose();
|
||||||
|
|
||||||
|
var deadline = DateTime.UtcNow + TimeSpan.FromSeconds(12);
|
||||||
|
WaitForRestartParentExit(restartParentProcessId.Value, deadline);
|
||||||
|
|
||||||
|
while (DateTime.UtcNow < deadline)
|
||||||
|
{
|
||||||
|
var retryInstance = SingleInstanceService.CreateDefault();
|
||||||
|
if (retryInstance.IsPrimaryInstance)
|
||||||
|
{
|
||||||
|
AppLogger.Info("Startup", "Restart relaunch acquired the single-instance lock.");
|
||||||
|
return retryInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
retryInstance.Dispose();
|
||||||
|
Thread.Sleep(150);
|
||||||
|
}
|
||||||
|
|
||||||
|
AppLogger.Warn(
|
||||||
|
"Startup",
|
||||||
|
$"Restart relaunch timed out while waiting for the single-instance lock. pid={restartParentProcessId.Value}.");
|
||||||
|
return SingleInstanceService.CreateDefault();
|
||||||
|
}
|
||||||
|
|
||||||
private static string LoadConfiguredRenderMode()
|
private static string LoadConfiguredRenderMode()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return AppRenderingModeHelper.Normalize(new AppSettingsService().Load().AppRenderMode);
|
return AppRenderingModeHelper.Normalize(new AppSettingsService().Load().AppRenderMode);
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("Startup", "Failed to load configured render mode. Falling back to default.", ex);
|
||||||
return AppRenderingModeHelper.Default;
|
return AppRenderingModeHelper.Default;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void WaitForRestartParentExit(int processId, DateTime deadlineUtc)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using var process = Process.GetProcessById(processId);
|
||||||
|
var remaining = deadlineUtc - DateTime.UtcNow;
|
||||||
|
if (remaining > TimeSpan.Zero)
|
||||||
|
{
|
||||||
|
process.WaitForExit((int)Math.Ceiling(remaining.TotalMilliseconds));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (ArgumentException)
|
||||||
|
{
|
||||||
|
// The previous process already exited before we started waiting.
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("Startup", $"Failed while waiting for restart parent pid={processId} to exit.", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void RegisterGlobalExceptionLogging()
|
||||||
|
{
|
||||||
|
AppDomain.CurrentDomain.UnhandledException += (_, eventArgs) =>
|
||||||
|
{
|
||||||
|
AppLogger.Critical(
|
||||||
|
"UnhandledException",
|
||||||
|
$"Unhandled exception. IsTerminating={eventArgs.IsTerminating}",
|
||||||
|
eventArgs.ExceptionObject as Exception);
|
||||||
|
};
|
||||||
|
|
||||||
|
TaskScheduler.UnobservedTaskException += (_, eventArgs) =>
|
||||||
|
{
|
||||||
|
AppLogger.Error("TaskScheduler", "Unobserved task exception.", eventArgs.Exception);
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
169
LanMountainDesktop/Services/AppLogger.cs
Normal file
169
LanMountainDesktop/Services/AppLogger.cs
Normal file
@@ -0,0 +1,169 @@
|
|||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.IO;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Services;
|
||||||
|
|
||||||
|
public static class AppLogger
|
||||||
|
{
|
||||||
|
private static readonly object SyncRoot = new();
|
||||||
|
private static bool _initialized;
|
||||||
|
private static string _logDirectory = string.Empty;
|
||||||
|
private static string _logFilePath = string.Empty;
|
||||||
|
|
||||||
|
public static string LogDirectory
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
EnsureInitialized();
|
||||||
|
return _logDirectory;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string LogFilePath
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
EnsureInitialized();
|
||||||
|
return _logFilePath;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Initialize()
|
||||||
|
{
|
||||||
|
lock (SyncRoot)
|
||||||
|
{
|
||||||
|
if (_initialized)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var preferredDirectory = Path.Combine(AppContext.BaseDirectory, "log");
|
||||||
|
var fallbackDirectory = Path.Combine(
|
||||||
|
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
|
||||||
|
"LanMountainDesktop",
|
||||||
|
"log");
|
||||||
|
|
||||||
|
var preferredReady = TryPrepareDirectory(preferredDirectory, out var preferredError);
|
||||||
|
var fallbackReady = false;
|
||||||
|
string? fallbackError = null;
|
||||||
|
|
||||||
|
if (preferredReady)
|
||||||
|
{
|
||||||
|
_logDirectory = preferredDirectory;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fallbackReady = TryPrepareDirectory(fallbackDirectory, out fallbackError);
|
||||||
|
_logDirectory = fallbackReady ? fallbackDirectory : preferredDirectory;
|
||||||
|
}
|
||||||
|
|
||||||
|
_logFilePath = Path.Combine(_logDirectory, $"app-{DateTime.Now:yyyyMMdd}.log");
|
||||||
|
_initialized = true;
|
||||||
|
|
||||||
|
WriteCore(
|
||||||
|
"INFO",
|
||||||
|
"Logger",
|
||||||
|
$"Initialized. Directory={_logDirectory}; File={_logFilePath}; PreferredDirectory={preferredDirectory}");
|
||||||
|
|
||||||
|
if (!preferredReady && !string.IsNullOrWhiteSpace(preferredError))
|
||||||
|
{
|
||||||
|
WriteCore(
|
||||||
|
"WARN",
|
||||||
|
"Logger",
|
||||||
|
$"Failed to use program log directory '{preferredDirectory}'. Falling back to '{_logDirectory}'. Reason: {preferredError}");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!preferredReady && !fallbackReady && !string.IsNullOrWhiteSpace(fallbackError))
|
||||||
|
{
|
||||||
|
Trace.WriteLine(
|
||||||
|
$"[LanMountainDesktop][Logger][ERROR] Failed to initialize fallback log directory '{fallbackDirectory}': {fallbackError}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Info(string category, string message)
|
||||||
|
{
|
||||||
|
Write("INFO", category, message, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Warn(string category, string message, Exception? exception = null)
|
||||||
|
{
|
||||||
|
Write("WARN", category, message, exception);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Error(string category, string message, Exception? exception = null)
|
||||||
|
{
|
||||||
|
Write("ERROR", category, message, exception);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Critical(string category, string message, Exception? exception = null)
|
||||||
|
{
|
||||||
|
Write("CRITICAL", category, message, exception);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void Write(string level, string category, string message, Exception? exception)
|
||||||
|
{
|
||||||
|
EnsureInitialized();
|
||||||
|
|
||||||
|
var payload = exception is null
|
||||||
|
? message
|
||||||
|
: $"{message}{Environment.NewLine}{exception}";
|
||||||
|
WriteCore(level, category, payload);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void EnsureInitialized()
|
||||||
|
{
|
||||||
|
if (_initialized)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Initialize();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void WriteCore(string level, string category, string message)
|
||||||
|
{
|
||||||
|
var timestamp = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff");
|
||||||
|
var line = $"[{timestamp}] [{level}] [{category}] {message}";
|
||||||
|
|
||||||
|
lock (SyncRoot)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var directory = Path.GetDirectoryName(_logFilePath);
|
||||||
|
if (!string.IsNullOrWhiteSpace(directory))
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(directory);
|
||||||
|
}
|
||||||
|
|
||||||
|
File.AppendAllText(_logFilePath, line + Environment.NewLine, Encoding.UTF8);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Trace.WriteLine($"[LanMountainDesktop][Logger][ERROR] {ex}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Trace.WriteLine(line);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool TryPrepareDirectory(string directory, out string? error)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(directory);
|
||||||
|
var probePath = Path.Combine(directory, $".probe-{Guid.NewGuid():N}.tmp");
|
||||||
|
File.WriteAllText(probePath, "probe");
|
||||||
|
File.Delete(probePath);
|
||||||
|
error = null;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
error = ex.Message;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,26 +3,19 @@ using System.Collections.Generic;
|
|||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using Avalonia;
|
using LanMountainDesktop.PluginSdk;
|
||||||
using Avalonia.Controls.ApplicationLifetimes;
|
|
||||||
|
|
||||||
namespace LanMountainDesktop.Services;
|
namespace LanMountainDesktop.Services;
|
||||||
|
|
||||||
public static class AppRestartService
|
public static class AppRestartService
|
||||||
{
|
{
|
||||||
|
private const string RestartParentPidArgumentPrefix = "--restart-parent-pid=";
|
||||||
|
|
||||||
public static bool TryRestartApplication()
|
public static bool TryRestartApplication()
|
||||||
{
|
{
|
||||||
if (!TryRestartCurrentProcess())
|
return App.CurrentHostApplicationLifecycle?.TryRestart(new HostApplicationLifecycleRequest(
|
||||||
{
|
Source: nameof(AppRestartService),
|
||||||
return false;
|
Reason: "Legacy restart entry point invoked.")) == true;
|
||||||
}
|
|
||||||
|
|
||||||
if (Application.Current?.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
|
||||||
{
|
|
||||||
desktop.Shutdown();
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool TryRestartCurrentProcess()
|
public static bool TryRestartCurrentProcess()
|
||||||
@@ -84,6 +77,21 @@ public static class AppRestartService
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static int? TryGetRestartParentProcessId(IReadOnlyList<string> commandLineArgs)
|
||||||
|
{
|
||||||
|
ArgumentNullException.ThrowIfNull(commandLineArgs);
|
||||||
|
|
||||||
|
foreach (var argument in commandLineArgs)
|
||||||
|
{
|
||||||
|
if (TryParseRestartParentProcessId(argument, out var processId))
|
||||||
|
{
|
||||||
|
return processId;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
private static ProcessStartInfo CreateExecutableStartInfo(
|
private static ProcessStartInfo CreateExecutableStartInfo(
|
||||||
string executablePath,
|
string executablePath,
|
||||||
string? entryAssemblyPath,
|
string? entryAssemblyPath,
|
||||||
@@ -97,6 +105,7 @@ public static class AppRestartService
|
|||||||
};
|
};
|
||||||
|
|
||||||
AppendArguments(startInfo, commandLineArgs);
|
AppendArguments(startInfo, commandLineArgs);
|
||||||
|
AppendRestartParentProcessArgument(startInfo);
|
||||||
return startInfo;
|
return startInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -119,6 +128,7 @@ public static class AppRestartService
|
|||||||
|
|
||||||
startInfo.ArgumentList.Add(entryAssemblyPath);
|
startInfo.ArgumentList.Add(entryAssemblyPath);
|
||||||
AppendArguments(startInfo, commandLineArgs);
|
AppendArguments(startInfo, commandLineArgs);
|
||||||
|
AppendRestartParentProcessArgument(startInfo);
|
||||||
return startInfo;
|
return startInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -126,10 +136,34 @@ public static class AppRestartService
|
|||||||
{
|
{
|
||||||
for (var i = 1; i < commandLineArgs.Count; i++)
|
for (var i = 1; i < commandLineArgs.Count; i++)
|
||||||
{
|
{
|
||||||
|
if (TryParseRestartParentProcessId(commandLineArgs[i], out _))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
startInfo.ArgumentList.Add(commandLineArgs[i]);
|
startInfo.ArgumentList.Add(commandLineArgs[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void AppendRestartParentProcessArgument(ProcessStartInfo startInfo)
|
||||||
|
{
|
||||||
|
startInfo.ArgumentList.Add($"{RestartParentPidArgumentPrefix}{Environment.ProcessId}");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool TryParseRestartParentProcessId(string? argument, out int processId)
|
||||||
|
{
|
||||||
|
processId = 0;
|
||||||
|
if (string.IsNullOrWhiteSpace(argument) ||
|
||||||
|
!argument.StartsWith(RestartParentPidArgumentPrefix, StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return int.TryParse(
|
||||||
|
argument[RestartParentPidArgumentPrefix.Length..],
|
||||||
|
out processId) && processId > 0;
|
||||||
|
}
|
||||||
|
|
||||||
private static string? NormalizeExistingPath(string? path)
|
private static string? NormalizeExistingPath(string? path)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrWhiteSpace(path))
|
if (string.IsNullOrWhiteSpace(path))
|
||||||
|
|||||||
@@ -63,8 +63,9 @@ public sealed class AppSettingsService
|
|||||||
return loadedSnapshot.Clone();
|
return loadedSnapshot.Clone();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("AppSettings", $"Failed to load settings from '{_settingsPath}'.", ex);
|
||||||
return new AppSettingsSnapshot();
|
return new AppSettingsSnapshot();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -95,9 +96,9 @@ public sealed class AppSettingsService
|
|||||||
|
|
||||||
SettingsSaved?.Invoke(InstanceId);
|
SettingsSaved?.Invoke(InstanceId);
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
// Swallow persistence errors to keep UI interactions uninterrupted.
|
AppLogger.Warn("AppSettings", $"Failed to save settings to '{_settingsPath}'.", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -136,8 +137,9 @@ public sealed class AppSettingsService
|
|||||||
var json = File.ReadAllText(_settingsPath);
|
var json = File.ReadAllText(_settingsPath);
|
||||||
return JsonSerializer.Deserialize<AppSettingsSnapshot>(json, SerializerOptions) ?? new AppSettingsSnapshot();
|
return JsonSerializer.Deserialize<AppSettingsSnapshot>(json, SerializerOptions) ?? new AppSettingsSnapshot();
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("AppSettings", $"Failed to deserialize settings from '{_settingsPath}'.", ex);
|
||||||
return new AppSettingsSnapshot();
|
return new AppSettingsSnapshot();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -51,8 +51,9 @@ public sealed class ComponentSettingsService : IComponentInstanceSettingsStore
|
|||||||
return document.DefaultSettings.Clone();
|
return document.DefaultSettings.Clone();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("ComponentSettings", $"Failed to load component settings from '{_settingsPath}'.", ex);
|
||||||
return new ComponentSettingsSnapshot();
|
return new ComponentSettingsSnapshot();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -76,9 +77,9 @@ public sealed class ComponentSettingsService : IComponentInstanceSettingsStore
|
|||||||
PersistDocumentLocked(document);
|
PersistDocumentLocked(document);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
// Swallow persistence errors to keep UI interactions uninterrupted.
|
AppLogger.Warn("ComponentSettings", $"Failed to save default component settings to '{_settingsPath}'.", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -99,8 +100,12 @@ public sealed class ComponentSettingsService : IComponentInstanceSettingsStore
|
|||||||
return document.DefaultSettings.Clone();
|
return document.DefaultSettings.Clone();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn(
|
||||||
|
"ComponentSettings",
|
||||||
|
$"Failed to load component settings. ComponentId={componentId}; PlacementId={placementId}; Path={_settingsPath}",
|
||||||
|
ex);
|
||||||
return new ComponentSettingsSnapshot();
|
return new ComponentSettingsSnapshot();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -124,9 +129,12 @@ public sealed class ComponentSettingsService : IComponentInstanceSettingsStore
|
|||||||
PersistDocumentLocked(document);
|
PersistDocumentLocked(document);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
// Swallow persistence errors to keep UI interactions uninterrupted.
|
AppLogger.Warn(
|
||||||
|
"ComponentSettings",
|
||||||
|
$"Failed to save component settings. ComponentId={componentId}; PlacementId={placementId}; Path={_settingsPath}",
|
||||||
|
ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,9 +159,12 @@ public sealed class ComponentSettingsService : IComponentInstanceSettingsStore
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
// Swallow persistence errors to keep UI interactions uninterrupted.
|
AppLogger.Warn(
|
||||||
|
"ComponentSettings",
|
||||||
|
$"Failed to delete component settings. ComponentId={componentId}; PlacementId={placementId}; Path={_settingsPath}",
|
||||||
|
ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -174,8 +185,12 @@ public sealed class ComponentSettingsService : IComponentInstanceSettingsStore
|
|||||||
return JsonSerializer.Deserialize<T>(settingsElement.GetRawText(), SerializerOptions) ?? new T();
|
return JsonSerializer.Deserialize<T>(settingsElement.GetRawText(), SerializerOptions) ?? new T();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn(
|
||||||
|
"ComponentSettings",
|
||||||
|
$"Failed to load plugin settings. ComponentId={componentId}; PlacementId={placementId}; Path={_settingsPath}",
|
||||||
|
ex);
|
||||||
return new T();
|
return new T();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -197,9 +212,12 @@ public sealed class ComponentSettingsService : IComponentInstanceSettingsStore
|
|||||||
PersistDocumentLocked(document);
|
PersistDocumentLocked(document);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
// Swallow persistence errors to keep UI interactions uninterrupted.
|
AppLogger.Warn(
|
||||||
|
"ComponentSettings",
|
||||||
|
$"Failed to save plugin settings. ComponentId={componentId}; PlacementId={placementId}; Path={_settingsPath}",
|
||||||
|
ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -222,9 +240,12 @@ public sealed class ComponentSettingsService : IComponentInstanceSettingsStore
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
// Swallow persistence errors to keep UI interactions uninterrupted.
|
AppLogger.Warn(
|
||||||
|
"ComponentSettings",
|
||||||
|
$"Failed to delete plugin settings. ComponentId={componentId}; PlacementId={placementId}; Path={_settingsPath}",
|
||||||
|
ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -373,8 +394,9 @@ public sealed class ComponentSettingsService : IComponentInstanceSettingsStore
|
|||||||
DefaultSettings = NormalizeSnapshot(legacySnapshot)
|
DefaultSettings = NormalizeSnapshot(legacySnapshot)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("ComponentSettings", $"Failed to deserialize component settings from '{_settingsPath}'.", ex);
|
||||||
return new ComponentSettingsDocumentSnapshot();
|
return new ComponentSettingsDocumentSnapshot();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -428,8 +450,9 @@ public sealed class ComponentSettingsService : IComponentInstanceSettingsStore
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("ComponentSettings", $"Failed to migrate legacy component settings from '{_legacyAppSettingsPath}'.", ex);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -80,8 +80,9 @@ public sealed class DesktopLayoutSettingsService
|
|||||||
return normalizedSnapshot.Clone();
|
return normalizedSnapshot.Clone();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("DesktopLayout", $"Failed to load desktop layout settings from '{_settingsPath}'.", ex);
|
||||||
return new DesktopLayoutSettingsSnapshot();
|
return new DesktopLayoutSettingsSnapshot();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -99,9 +100,9 @@ public sealed class DesktopLayoutSettingsService
|
|||||||
UpdateCache(snapshotToPersist, writeTimeUtc, DateTime.UtcNow);
|
UpdateCache(snapshotToPersist, writeTimeUtc, DateTime.UtcNow);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
// Swallow persistence errors to keep UI interactions uninterrupted.
|
AppLogger.Warn("DesktopLayout", $"Failed to save desktop layout settings to '{_settingsPath}'.", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -141,8 +142,9 @@ public sealed class DesktopLayoutSettingsService
|
|||||||
var snapshot = JsonSerializer.Deserialize<DesktopLayoutSettingsSnapshot>(json, SerializerOptions);
|
var snapshot = JsonSerializer.Deserialize<DesktopLayoutSettingsSnapshot>(json, SerializerOptions);
|
||||||
return NormalizeSnapshot(snapshot);
|
return NormalizeSnapshot(snapshot);
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("DesktopLayout", $"Failed to deserialize desktop layout settings from '{_settingsPath}'.", ex);
|
||||||
return new DesktopLayoutSettingsSnapshot();
|
return new DesktopLayoutSettingsSnapshot();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -174,8 +176,9 @@ public sealed class DesktopLayoutSettingsService
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("DesktopLayout", $"Failed to migrate legacy desktop layout settings from '{_legacyAppSettingsPath}'.", ex);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
98
LanMountainDesktop/Services/FileOperationRetryHelper.cs
Normal file
98
LanMountainDesktop/Services/FileOperationRetryHelper.cs
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Services;
|
||||||
|
|
||||||
|
internal static class FileOperationRetryHelper
|
||||||
|
{
|
||||||
|
private static readonly TimeSpan[] RetryDelays =
|
||||||
|
[
|
||||||
|
TimeSpan.FromMilliseconds(120),
|
||||||
|
TimeSpan.FromMilliseconds(250),
|
||||||
|
TimeSpan.FromMilliseconds(500)
|
||||||
|
];
|
||||||
|
|
||||||
|
public static void CopyWithRetry(string sourceFilePath, string destinationFilePath, bool overwrite, string category)
|
||||||
|
{
|
||||||
|
Retry(
|
||||||
|
() => File.Copy(sourceFilePath, destinationFilePath, overwrite),
|
||||||
|
category,
|
||||||
|
$"Copy '{sourceFilePath}' -> '{destinationFilePath}'");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void MoveWithOverwriteRetry(string sourceFilePath, string destinationFilePath, string category)
|
||||||
|
{
|
||||||
|
Retry(
|
||||||
|
() => File.Move(sourceFilePath, destinationFilePath, overwrite: true),
|
||||||
|
category,
|
||||||
|
$"Move '{sourceFilePath}' -> '{destinationFilePath}'");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void DeleteFileWithRetry(string filePath, string category)
|
||||||
|
{
|
||||||
|
Retry(
|
||||||
|
() =>
|
||||||
|
{
|
||||||
|
if (File.Exists(filePath))
|
||||||
|
{
|
||||||
|
File.Delete(filePath);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
category,
|
||||||
|
$"Delete file '{filePath}'");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void DeleteDirectoryWithRetry(string directoryPath, bool recursive, string category)
|
||||||
|
{
|
||||||
|
Retry(
|
||||||
|
() =>
|
||||||
|
{
|
||||||
|
if (Directory.Exists(directoryPath))
|
||||||
|
{
|
||||||
|
Directory.Delete(directoryPath, recursive);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
category,
|
||||||
|
$"Delete directory '{directoryPath}'");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void Retry(Action action, string category, string operationDescription)
|
||||||
|
{
|
||||||
|
Exception? lastException = null;
|
||||||
|
|
||||||
|
for (var attempt = 0; attempt <= RetryDelays.Length; attempt++)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
action();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
catch (Exception ex) when (IsRetriable(ex))
|
||||||
|
{
|
||||||
|
lastException = ex;
|
||||||
|
if (attempt >= RetryDelays.Length)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
var delay = RetryDelays[attempt];
|
||||||
|
AppLogger.Warn(
|
||||||
|
category,
|
||||||
|
$"{operationDescription} failed on attempt {attempt + 1}. Retrying after {delay.TotalMilliseconds:0} ms.",
|
||||||
|
ex);
|
||||||
|
Thread.Sleep(delay);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lastException is not null)
|
||||||
|
{
|
||||||
|
throw lastException;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool IsRetriable(Exception exception)
|
||||||
|
{
|
||||||
|
return exception is IOException or UnauthorizedAccessException;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -45,6 +45,7 @@ public sealed class GitHubReleaseUpdateService : IDisposable
|
|||||||
private readonly string _owner;
|
private readonly string _owner;
|
||||||
private readonly string _repo;
|
private readonly string _repo;
|
||||||
private readonly HttpClient _httpClient;
|
private readonly HttpClient _httpClient;
|
||||||
|
private readonly ResumableDownloadService _downloadService;
|
||||||
private readonly bool _ownsHttpClient;
|
private readonly bool _ownsHttpClient;
|
||||||
|
|
||||||
public GitHubReleaseUpdateService(
|
public GitHubReleaseUpdateService(
|
||||||
@@ -69,6 +70,8 @@ public sealed class GitHubReleaseUpdateService : IDisposable
|
|||||||
_ownsHttpClient = false;
|
_ownsHttpClient = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_downloadService = new ResumableDownloadService(_httpClient);
|
||||||
|
|
||||||
if (!_httpClient.DefaultRequestHeaders.UserAgent.Any())
|
if (!_httpClient.DefaultRequestHeaders.UserAgent.Any())
|
||||||
{
|
{
|
||||||
_httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("LanMountainDesktop-Updater/1.0");
|
_httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("LanMountainDesktop-Updater/1.0");
|
||||||
@@ -187,59 +190,37 @@ public sealed class GitHubReleaseUpdateService : IDisposable
|
|||||||
return new UpdateDownloadResult(false, null, "Destination file path is empty.");
|
return new UpdateDownloadResult(false, null, "Destination file path is empty.");
|
||||||
}
|
}
|
||||||
|
|
||||||
try
|
var progressAdapter = progress is null
|
||||||
|
? null
|
||||||
|
: new Progress<DownloadProgressInfo>(info => progress.Report(info.Progress));
|
||||||
|
|
||||||
|
var result = await _downloadService.DownloadAsync(
|
||||||
|
asset.BrowserDownloadUrl,
|
||||||
|
destinationFilePath,
|
||||||
|
new DownloadOptions(ExpectedSizeBytes: asset.SizeBytes > 0 ? asset.SizeBytes : null),
|
||||||
|
progressAdapter,
|
||||||
|
cancellationToken);
|
||||||
|
|
||||||
|
return result.Success
|
||||||
|
? new UpdateDownloadResult(true, result.FilePath ?? destinationFilePath, null)
|
||||||
|
: new UpdateDownloadResult(false, null, result.ErrorMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<GitHubReleaseInfo?> GetReleaseByTagAsync(
|
||||||
|
string tagName,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(tagName))
|
||||||
{
|
{
|
||||||
var directory = Path.GetDirectoryName(destinationFilePath);
|
return null;
|
||||||
if (!string.IsNullOrWhiteSpace(directory))
|
|
||||||
{
|
|
||||||
Directory.CreateDirectory(directory);
|
|
||||||
}
|
|
||||||
|
|
||||||
using var response = await _httpClient.GetAsync(
|
|
||||||
asset.BrowserDownloadUrl,
|
|
||||||
HttpCompletionOption.ResponseHeadersRead,
|
|
||||||
cancellationToken);
|
|
||||||
|
|
||||||
if (!response.IsSuccessStatusCode)
|
|
||||||
{
|
|
||||||
return new UpdateDownloadResult(
|
|
||||||
false,
|
|
||||||
null,
|
|
||||||
$"HTTP {(int)response.StatusCode}: {response.ReasonPhrase}");
|
|
||||||
}
|
|
||||||
|
|
||||||
var contentLength = response.Content.Headers.ContentLength ??
|
|
||||||
(asset.SizeBytes > 0 ? asset.SizeBytes : -1);
|
|
||||||
|
|
||||||
await using var sourceStream = await response.Content.ReadAsStreamAsync(cancellationToken);
|
|
||||||
await using var destinationStream = File.Create(destinationFilePath);
|
|
||||||
|
|
||||||
var buffer = new byte[81920];
|
|
||||||
long totalRead = 0;
|
|
||||||
int read;
|
|
||||||
while ((read = await sourceStream.ReadAsync(buffer, cancellationToken)) > 0)
|
|
||||||
{
|
|
||||||
await destinationStream.WriteAsync(buffer.AsMemory(0, read), cancellationToken);
|
|
||||||
totalRead += read;
|
|
||||||
|
|
||||||
if (contentLength > 0)
|
|
||||||
{
|
|
||||||
progress?.Report(Math.Clamp(totalRead / (double)contentLength, 0d, 1d));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
progress?.Report(1d);
|
|
||||||
|
|
||||||
return new UpdateDownloadResult(true, destinationFilePath, null);
|
|
||||||
}
|
|
||||||
catch (OperationCanceledException)
|
|
||||||
{
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
return new UpdateDownloadResult(false, null, ex.Message);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var url =
|
||||||
|
$"https://api.github.com/repos/{_owner}/{_repo}/releases/tags/{Uri.EscapeDataString(tagName.Trim())}";
|
||||||
|
var responseText = await GetResponseTextAsync(url, cancellationToken);
|
||||||
|
|
||||||
|
using var document = JsonDocument.Parse(responseText);
|
||||||
|
return ParseRelease(document.RootElement);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task<GitHubReleaseInfo?> GetLatestStableReleaseAsync(CancellationToken cancellationToken)
|
private async Task<GitHubReleaseInfo?> GetLatestStableReleaseAsync(CancellationToken cancellationToken)
|
||||||
|
|||||||
@@ -0,0 +1,75 @@
|
|||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using Avalonia;
|
||||||
|
using Avalonia.Controls.ApplicationLifetimes;
|
||||||
|
using Avalonia.Threading;
|
||||||
|
using LanMountainDesktop.PluginSdk;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Services;
|
||||||
|
|
||||||
|
public sealed class HostApplicationLifecycleService : IHostApplicationLifecycle
|
||||||
|
{
|
||||||
|
public bool TryExit(HostApplicationLifecycleRequest? request = null)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
AppLogger.Info(
|
||||||
|
"HostLifecycle",
|
||||||
|
$"Exit requested. Source='{request?.Source ?? "Unknown"}'; Reason='{request?.Reason ?? string.Empty}'.");
|
||||||
|
|
||||||
|
if (Application.Current?.ApplicationLifetime is not IClassicDesktopStyleApplicationLifetime desktop)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("HostLifecycle", "Exit request ignored because desktop lifetime is unavailable.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Dispatcher.UIThread.CheckAccess())
|
||||||
|
{
|
||||||
|
desktop.Shutdown();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Dispatcher.UIThread.Post(() => desktop.Shutdown(), DispatcherPriority.Send);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("HostLifecycle", "Failed to exit the application.", ex);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool TryRestart(HostApplicationLifecycleRequest? request = null)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var startInfo = AppRestartService.CreateRestartStartInfo();
|
||||||
|
if (startInfo is null)
|
||||||
|
{
|
||||||
|
AppLogger.Warn(
|
||||||
|
"HostLifecycle",
|
||||||
|
$"Restart request rejected because restart start info could not be resolved. Source='{request?.Source ?? "Unknown"}'.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Process.Start(startInfo);
|
||||||
|
var exitRequest = request is null
|
||||||
|
? new HostApplicationLifecycleRequest(Reason: "Restart accepted.")
|
||||||
|
: request with
|
||||||
|
{
|
||||||
|
Reason = string.IsNullOrWhiteSpace(request.Reason)
|
||||||
|
? "Restart accepted."
|
||||||
|
: request.Reason
|
||||||
|
};
|
||||||
|
|
||||||
|
return TryExit(exitRequest);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("HostLifecycle", "Failed to restart the application.", ex);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -80,6 +80,19 @@ public static class AudioRecorderServiceFactory
|
|||||||
{
|
{
|
||||||
return CreateRecorder();
|
return CreateRecorder();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void DisposeSharedServices()
|
||||||
|
{
|
||||||
|
if (SharedRecorderService.IsValueCreated)
|
||||||
|
{
|
||||||
|
SharedRecorderService.Value.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (SharedStudyMonitoringService.IsValueCreated)
|
||||||
|
{
|
||||||
|
SharedStudyMonitoringService.Value.Dispose();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal sealed class NoOpAudioRecorderService(string reason) : IAudioRecorderService
|
internal sealed class NoOpAudioRecorderService(string reason) : IAudioRecorderService
|
||||||
|
|||||||
@@ -85,8 +85,9 @@ public sealed class LauncherSettingsService
|
|||||||
return normalizedSnapshot.Clone();
|
return normalizedSnapshot.Clone();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("LauncherSettings", $"Failed to load launcher settings from '{_settingsPath}'.", ex);
|
||||||
return new LauncherSettingsSnapshot();
|
return new LauncherSettingsSnapshot();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -106,9 +107,9 @@ public sealed class LauncherSettingsService
|
|||||||
|
|
||||||
SettingsSaved?.Invoke(InstanceId);
|
SettingsSaved?.Invoke(InstanceId);
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
// Swallow persistence errors to keep UI interactions uninterrupted.
|
AppLogger.Warn("LauncherSettings", $"Failed to save launcher settings to '{_settingsPath}'.", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -148,8 +149,9 @@ public sealed class LauncherSettingsService
|
|||||||
var snapshot = JsonSerializer.Deserialize<LauncherSettingsSnapshot>(json, SerializerOptions);
|
var snapshot = JsonSerializer.Deserialize<LauncherSettingsSnapshot>(json, SerializerOptions);
|
||||||
return NormalizeSnapshot(snapshot);
|
return NormalizeSnapshot(snapshot);
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("LauncherSettings", $"Failed to deserialize launcher settings from '{_settingsPath}'.", ex);
|
||||||
return new LauncherSettingsSnapshot();
|
return new LauncherSettingsSnapshot();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -180,8 +182,9 @@ public sealed class LauncherSettingsService
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("LauncherSettings", $"Failed to migrate legacy launcher settings from '{_legacyAppSettingsPath}'.", ex);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
186
LanMountainDesktop/Services/PluginsInstallHelperClient.cs
Normal file
186
LanMountainDesktop/Services/PluginsInstallHelperClient.cs
Normal file
@@ -0,0 +1,186 @@
|
|||||||
|
using System;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.IO;
|
||||||
|
using System.Text;
|
||||||
|
using System.Text.Json;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Services;
|
||||||
|
|
||||||
|
internal sealed class PluginsInstallHelperClient
|
||||||
|
{
|
||||||
|
private const int UserCanceledUacErrorCode = 1223;
|
||||||
|
private const string HelperExecutableName = "LanMountainDesktop.PluginsInstallHelper.exe";
|
||||||
|
|
||||||
|
public async Task<PluginsInstallHelperResult> InstallPackageAsync(
|
||||||
|
string packagePath,
|
||||||
|
string pluginsDirectory,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
ArgumentException.ThrowIfNullOrWhiteSpace(packagePath);
|
||||||
|
ArgumentException.ThrowIfNullOrWhiteSpace(pluginsDirectory);
|
||||||
|
|
||||||
|
if (!OperatingSystem.IsWindows())
|
||||||
|
{
|
||||||
|
return new PluginsInstallHelperResult(
|
||||||
|
false,
|
||||||
|
null,
|
||||||
|
"Elevated helper install is only supported on Windows.");
|
||||||
|
}
|
||||||
|
|
||||||
|
var helperPath = ResolveHelperPath();
|
||||||
|
if (!File.Exists(helperPath))
|
||||||
|
{
|
||||||
|
return new PluginsInstallHelperResult(
|
||||||
|
false,
|
||||||
|
null,
|
||||||
|
$"Plugins install helper was not found at '{helperPath}'.");
|
||||||
|
}
|
||||||
|
|
||||||
|
var resultPath = Path.Combine(
|
||||||
|
Path.GetTempPath(),
|
||||||
|
"LanMountainDesktop",
|
||||||
|
"PluginInstallResults",
|
||||||
|
$"{Guid.NewGuid():N}.json");
|
||||||
|
|
||||||
|
Directory.CreateDirectory(Path.GetDirectoryName(resultPath)!);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using var process = StartHelperProcess(helperPath, packagePath, pluginsDirectory, resultPath);
|
||||||
|
if (process is null)
|
||||||
|
{
|
||||||
|
return new PluginsInstallHelperResult(false, null, "Failed to start plugins install helper.");
|
||||||
|
}
|
||||||
|
|
||||||
|
await process.WaitForExitAsync(cancellationToken);
|
||||||
|
var result = await ReadResultAsync(resultPath, cancellationToken);
|
||||||
|
if (result is not null)
|
||||||
|
{
|
||||||
|
return new PluginsInstallHelperResult(result.Success, result.InstalledPackagePath, result.ErrorMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.ExitCode == 0)
|
||||||
|
{
|
||||||
|
return new PluginsInstallHelperResult(
|
||||||
|
false,
|
||||||
|
null,
|
||||||
|
"Plugins install helper exited without producing a result file.");
|
||||||
|
}
|
||||||
|
|
||||||
|
return new PluginsInstallHelperResult(
|
||||||
|
false,
|
||||||
|
null,
|
||||||
|
string.Format(
|
||||||
|
CultureInfo.InvariantCulture,
|
||||||
|
"Plugins install helper exited with code {0}.",
|
||||||
|
process.ExitCode));
|
||||||
|
}
|
||||||
|
catch (Win32Exception ex) when (ex.NativeErrorCode == UserCanceledUacErrorCode)
|
||||||
|
{
|
||||||
|
return new PluginsInstallHelperResult(false, null, "Administrator permission request was canceled.");
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
TryDeleteFile(resultPath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Process? StartHelperProcess(
|
||||||
|
string helperPath,
|
||||||
|
string packagePath,
|
||||||
|
string pluginsDirectory,
|
||||||
|
string resultPath)
|
||||||
|
{
|
||||||
|
var startInfo = new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = helperPath,
|
||||||
|
Verb = "runas",
|
||||||
|
UseShellExecute = true,
|
||||||
|
WorkingDirectory = Path.GetDirectoryName(helperPath) ?? AppContext.BaseDirectory,
|
||||||
|
Arguments = string.Create(
|
||||||
|
CultureInfo.InvariantCulture,
|
||||||
|
$"--source {QuoteArgument(Path.GetFullPath(packagePath))} --plugins-dir {QuoteArgument(Path.GetFullPath(pluginsDirectory))} --result {QuoteArgument(Path.GetFullPath(resultPath))}")
|
||||||
|
};
|
||||||
|
|
||||||
|
return Process.Start(startInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static async Task<HelperResultFile?> ReadResultAsync(string resultPath, CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
if (!File.Exists(resultPath))
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
await using var stream = File.OpenRead(resultPath);
|
||||||
|
return await JsonSerializer.DeserializeAsync<HelperResultFile>(stream, cancellationToken: cancellationToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string ResolveHelperPath()
|
||||||
|
{
|
||||||
|
return Path.Combine(AppContext.BaseDirectory, "PluginsInstallHelper", HelperExecutableName);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string QuoteArgument(string value)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(value))
|
||||||
|
{
|
||||||
|
return "\"\"";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!value.Contains('"') && !value.Contains(' ') && !value.Contains('\t'))
|
||||||
|
{
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
var builder = new StringBuilder();
|
||||||
|
builder.Append('"');
|
||||||
|
foreach (var ch in value)
|
||||||
|
{
|
||||||
|
if (ch == '"')
|
||||||
|
{
|
||||||
|
builder.Append("\\\"");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
builder.Append(ch);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
builder.Append('"');
|
||||||
|
return builder.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void TryDeleteFile(string path)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (File.Exists(path))
|
||||||
|
{
|
||||||
|
File.Delete(path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
// Ignore temp file cleanup failures.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private sealed class HelperResultFile
|
||||||
|
{
|
||||||
|
public bool Success { get; init; }
|
||||||
|
|
||||||
|
public string? InstalledPackagePath { get; init; }
|
||||||
|
|
||||||
|
public string? ErrorMessage { get; init; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal sealed record PluginsInstallHelperResult(
|
||||||
|
bool Success,
|
||||||
|
string? InstalledPackagePath,
|
||||||
|
string? ErrorMessage);
|
||||||
412
LanMountainDesktop/Services/ResumableDownloadService.cs
Normal file
412
LanMountainDesktop/Services/ResumableDownloadService.cs
Normal file
@@ -0,0 +1,412 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.IO;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Downloader;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Services;
|
||||||
|
|
||||||
|
public sealed record DownloadProgressInfo(
|
||||||
|
long DownloadedBytes,
|
||||||
|
long? TotalBytes,
|
||||||
|
double Progress,
|
||||||
|
bool IsResuming,
|
||||||
|
bool IsParallel);
|
||||||
|
|
||||||
|
public sealed record DownloadOptions(
|
||||||
|
long? ExpectedSizeBytes = null,
|
||||||
|
int MaxParallelSegments = 4,
|
||||||
|
int ParallelThresholdBytes = 8 * 1024 * 1024,
|
||||||
|
int BufferSize = 128 * 1024);
|
||||||
|
|
||||||
|
public sealed record DownloadResult(
|
||||||
|
bool Success,
|
||||||
|
string? FilePath,
|
||||||
|
string? ErrorMessage,
|
||||||
|
bool UsedResume,
|
||||||
|
bool UsedParallelDownload);
|
||||||
|
|
||||||
|
public sealed class ResumableDownloadService
|
||||||
|
{
|
||||||
|
private static readonly ConcurrentDictionary<string, SemaphoreSlim> DestinationGates =
|
||||||
|
new(StringComparer.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
public ResumableDownloadService(System.Net.Http.HttpClient httpClient)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<DownloadResult> DownloadAsync(
|
||||||
|
string source,
|
||||||
|
string destinationFilePath,
|
||||||
|
DownloadOptions? options = null,
|
||||||
|
IProgress<DownloadProgressInfo>? progress = null,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
ArgumentException.ThrowIfNullOrWhiteSpace(source);
|
||||||
|
ArgumentException.ThrowIfNullOrWhiteSpace(destinationFilePath);
|
||||||
|
|
||||||
|
var normalizedOptions = NormalizeOptions(options);
|
||||||
|
var fullDestinationPath = Path.GetFullPath(destinationFilePath);
|
||||||
|
var destinationGate = DestinationGates.GetOrAdd(
|
||||||
|
fullDestinationPath,
|
||||||
|
static _ => new SemaphoreSlim(1, 1));
|
||||||
|
|
||||||
|
await destinationGate.WaitAsync(cancellationToken);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (File.Exists(source))
|
||||||
|
{
|
||||||
|
return await CopyLocalFileAsync(
|
||||||
|
source,
|
||||||
|
fullDestinationPath,
|
||||||
|
normalizedOptions,
|
||||||
|
progress,
|
||||||
|
cancellationToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Uri.TryCreate(source, UriKind.Absolute, out var sourceUri) ||
|
||||||
|
(sourceUri.Scheme != Uri.UriSchemeHttp && sourceUri.Scheme != Uri.UriSchemeHttps))
|
||||||
|
{
|
||||||
|
return new DownloadResult(false, null, $"Unsupported download source '{source}'.", false, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
return await DownloadRemoteFileAsync(
|
||||||
|
sourceUri,
|
||||||
|
fullDestinationPath,
|
||||||
|
normalizedOptions,
|
||||||
|
progress,
|
||||||
|
cancellationToken);
|
||||||
|
}
|
||||||
|
catch (OperationCanceledException)
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn(
|
||||||
|
"Downloader",
|
||||||
|
$"Download failed. Source='{source}'; Destination='{fullDestinationPath}'.",
|
||||||
|
ex);
|
||||||
|
return new DownloadResult(false, null, ex.Message, false, false);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
destinationGate.Release();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<DownloadResult> CopyLocalFileAsync(
|
||||||
|
string sourceFilePath,
|
||||||
|
string destinationFilePath,
|
||||||
|
DownloadOptions options,
|
||||||
|
IProgress<DownloadProgressInfo>? progress,
|
||||||
|
CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
var fullSourcePath = Path.GetFullPath(sourceFilePath);
|
||||||
|
var fullDestinationPath = Path.GetFullPath(destinationFilePath);
|
||||||
|
var totalBytes = new FileInfo(fullSourcePath).Length;
|
||||||
|
|
||||||
|
var tempFilePath = BuildTempFilePath(fullDestinationPath);
|
||||||
|
PrepareDestination(fullDestinationPath);
|
||||||
|
|
||||||
|
if (CanReuseCompletedDestination(fullDestinationPath, totalBytes))
|
||||||
|
{
|
||||||
|
progress?.Report(new DownloadProgressInfo(totalBytes, totalBytes, 1d, false, false));
|
||||||
|
CleanupLocalPartialArtifacts(tempFilePath);
|
||||||
|
return new DownloadResult(true, fullDestinationPath, null, false, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
long existingBytes = 0;
|
||||||
|
if (File.Exists(tempFilePath))
|
||||||
|
{
|
||||||
|
existingBytes = new FileInfo(tempFilePath).Length;
|
||||||
|
if (existingBytes > totalBytes)
|
||||||
|
{
|
||||||
|
CleanupLocalPartialArtifacts(tempFilePath);
|
||||||
|
existingBytes = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!File.Exists(tempFilePath))
|
||||||
|
{
|
||||||
|
await using var tempCreateStream = new FileStream(
|
||||||
|
tempFilePath,
|
||||||
|
FileMode.Create,
|
||||||
|
FileAccess.Write,
|
||||||
|
FileShare.Read,
|
||||||
|
options.BufferSize,
|
||||||
|
FileOptions.Asynchronous | FileOptions.SequentialScan);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (existingBytes >= totalBytes)
|
||||||
|
{
|
||||||
|
CompleteLocalCopy(tempFilePath, fullDestinationPath);
|
||||||
|
progress?.Report(new DownloadProgressInfo(totalBytes, totalBytes, 1d, existingBytes > 0, false));
|
||||||
|
return new DownloadResult(true, fullDestinationPath, null, existingBytes > 0, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
await using var sourceStream = new FileStream(
|
||||||
|
fullSourcePath,
|
||||||
|
FileMode.Open,
|
||||||
|
FileAccess.Read,
|
||||||
|
FileShare.Read,
|
||||||
|
options.BufferSize,
|
||||||
|
FileOptions.Asynchronous | FileOptions.SequentialScan);
|
||||||
|
await using var destinationStream = new FileStream(
|
||||||
|
tempFilePath,
|
||||||
|
FileMode.Open,
|
||||||
|
FileAccess.Write,
|
||||||
|
FileShare.Read,
|
||||||
|
options.BufferSize,
|
||||||
|
FileOptions.Asynchronous | FileOptions.SequentialScan);
|
||||||
|
|
||||||
|
if (existingBytes > 0)
|
||||||
|
{
|
||||||
|
sourceStream.Seek(existingBytes, SeekOrigin.Begin);
|
||||||
|
destinationStream.Seek(existingBytes, SeekOrigin.Begin);
|
||||||
|
}
|
||||||
|
|
||||||
|
await CopyStreamAsync(
|
||||||
|
sourceStream,
|
||||||
|
destinationStream,
|
||||||
|
existingBytes,
|
||||||
|
totalBytes,
|
||||||
|
progress,
|
||||||
|
cancellationToken);
|
||||||
|
|
||||||
|
CompleteLocalCopy(tempFilePath, fullDestinationPath);
|
||||||
|
return new DownloadResult(true, fullDestinationPath, null, existingBytes > 0, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<DownloadResult> DownloadRemoteFileAsync(
|
||||||
|
Uri sourceUri,
|
||||||
|
string destinationFilePath,
|
||||||
|
DownloadOptions options,
|
||||||
|
IProgress<DownloadProgressInfo>? progress,
|
||||||
|
CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
PrepareDestination(destinationFilePath);
|
||||||
|
|
||||||
|
if (CanReuseCompletedDestination(destinationFilePath, options.ExpectedSizeBytes))
|
||||||
|
{
|
||||||
|
var existingLength = new FileInfo(destinationFilePath).Length;
|
||||||
|
progress?.Report(new DownloadProgressInfo(existingLength, options.ExpectedSizeBytes, 1d, false, false));
|
||||||
|
CleanupDownloaderArtifacts(destinationFilePath);
|
||||||
|
return new DownloadResult(true, destinationFilePath, null, false, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
var usedResume = HasDownloaderResumeArtifacts(destinationFilePath);
|
||||||
|
var usedParallelDownload = ShouldUseParallelDownload(options);
|
||||||
|
var configuration = CreateConfiguration(options, usedParallelDownload);
|
||||||
|
using var downloader = new DownloadService(configuration);
|
||||||
|
|
||||||
|
downloader.DownloadProgressChanged += (_, args) =>
|
||||||
|
{
|
||||||
|
progress?.Report(MapProgress(args, options.ExpectedSizeBytes, usedResume, usedParallelDownload));
|
||||||
|
};
|
||||||
|
|
||||||
|
using var cancellationRegistration = cancellationToken.Register(() =>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
downloader.CancelAsync();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn(
|
||||||
|
"Downloader",
|
||||||
|
$"Failed to cancel Downloader request for '{destinationFilePath}'.",
|
||||||
|
ex);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
AppLogger.Info(
|
||||||
|
"Downloader",
|
||||||
|
$"Starting remote download. Source='{sourceUri}'; Destination='{destinationFilePath}'; Parallel={usedParallelDownload}; ChunkCount={configuration.ChunkCount}; Resume={usedResume}.");
|
||||||
|
|
||||||
|
await downloader.DownloadFileTaskAsync(sourceUri.AbsoluteUri, destinationFilePath);
|
||||||
|
|
||||||
|
if (!File.Exists(destinationFilePath))
|
||||||
|
{
|
||||||
|
throw new FileNotFoundException(
|
||||||
|
$"Downloader completed without producing '{destinationFilePath}'.",
|
||||||
|
destinationFilePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
var finalLength = new FileInfo(destinationFilePath).Length;
|
||||||
|
progress?.Report(new DownloadProgressInfo(
|
||||||
|
finalLength,
|
||||||
|
options.ExpectedSizeBytes ?? finalLength,
|
||||||
|
1d,
|
||||||
|
usedResume,
|
||||||
|
usedParallelDownload));
|
||||||
|
|
||||||
|
AppLogger.Info(
|
||||||
|
"Downloader",
|
||||||
|
$"Remote download completed. Source='{sourceUri}'; Destination='{destinationFilePath}'; Size={finalLength}; Parallel={usedParallelDownload}; Resume={usedResume}.");
|
||||||
|
|
||||||
|
return new DownloadResult(true, destinationFilePath, null, usedResume, usedParallelDownload);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static async Task CopyStreamAsync(
|
||||||
|
Stream sourceStream,
|
||||||
|
Stream destinationStream,
|
||||||
|
long initialDownloadedBytes,
|
||||||
|
long totalBytes,
|
||||||
|
IProgress<DownloadProgressInfo>? progress,
|
||||||
|
CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
var buffer = new byte[128 * 1024];
|
||||||
|
var downloadedBytes = initialDownloadedBytes;
|
||||||
|
progress?.Report(new DownloadProgressInfo(downloadedBytes, totalBytes, downloadedBytes / (double)totalBytes, initialDownloadedBytes > 0, false));
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
var read = await sourceStream.ReadAsync(buffer.AsMemory(0, buffer.Length), cancellationToken);
|
||||||
|
if (read <= 0)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
await destinationStream.WriteAsync(buffer.AsMemory(0, read), cancellationToken);
|
||||||
|
downloadedBytes += read;
|
||||||
|
progress?.Report(new DownloadProgressInfo(
|
||||||
|
downloadedBytes,
|
||||||
|
totalBytes,
|
||||||
|
Math.Clamp(downloadedBytes / (double)totalBytes, 0d, 1d),
|
||||||
|
initialDownloadedBytes > 0,
|
||||||
|
false));
|
||||||
|
}
|
||||||
|
|
||||||
|
await destinationStream.FlushAsync(cancellationToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static DownloadConfiguration CreateConfiguration(DownloadOptions options, bool useParallelDownload)
|
||||||
|
{
|
||||||
|
return new DownloadConfiguration
|
||||||
|
{
|
||||||
|
BufferBlockSize = options.BufferSize,
|
||||||
|
ChunkCount = useParallelDownload ? options.MaxParallelSegments : 1,
|
||||||
|
ParallelCount = useParallelDownload ? options.MaxParallelSegments : 1,
|
||||||
|
ParallelDownload = useParallelDownload,
|
||||||
|
MinimumSizeOfChunking = options.ParallelThresholdBytes,
|
||||||
|
MaxTryAgainOnFailure = 3,
|
||||||
|
ResumeDownloadIfCan = true,
|
||||||
|
ClearPackageOnCompletionWithFailure = false,
|
||||||
|
FileExistPolicy = FileExistPolicy.Delete,
|
||||||
|
DownloadFileExtension = ".part"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static DownloadProgressInfo MapProgress(
|
||||||
|
DownloadProgressChangedEventArgs args,
|
||||||
|
long? expectedSizeBytes,
|
||||||
|
bool isResuming,
|
||||||
|
bool isParallel)
|
||||||
|
{
|
||||||
|
var totalBytes = args.TotalBytesToReceive > 0
|
||||||
|
? args.TotalBytesToReceive
|
||||||
|
: expectedSizeBytes;
|
||||||
|
var downloadedBytes = Math.Max(0L, args.ReceivedBytesSize);
|
||||||
|
var normalizedProgress = args.ProgressPercentage > 1d
|
||||||
|
? args.ProgressPercentage / 100d
|
||||||
|
: args.ProgressPercentage;
|
||||||
|
|
||||||
|
if (totalBytes is > 0 && normalizedProgress <= 0d)
|
||||||
|
{
|
||||||
|
normalizedProgress = downloadedBytes / (double)totalBytes.Value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new DownloadProgressInfo(
|
||||||
|
downloadedBytes,
|
||||||
|
totalBytes,
|
||||||
|
Math.Clamp(normalizedProgress, 0d, 1d),
|
||||||
|
isResuming,
|
||||||
|
isParallel);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool CanReuseCompletedDestination(string destinationFilePath, long? expectedSizeBytes)
|
||||||
|
{
|
||||||
|
if (!File.Exists(destinationFilePath))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (expectedSizeBytes is not > 0)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new FileInfo(destinationFilePath).Length == expectedSizeBytes.Value;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void PrepareDestination(string destinationFilePath)
|
||||||
|
{
|
||||||
|
var directory = Path.GetDirectoryName(destinationFilePath);
|
||||||
|
if (!string.IsNullOrWhiteSpace(directory))
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(directory);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void CleanupLocalPartialArtifacts(string tempFilePath)
|
||||||
|
{
|
||||||
|
if (File.Exists(tempFilePath))
|
||||||
|
{
|
||||||
|
FileOperationRetryHelper.DeleteFileWithRetry(tempFilePath, "Downloader");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void CompleteLocalCopy(string tempFilePath, string destinationFilePath)
|
||||||
|
{
|
||||||
|
if (!File.Exists(tempFilePath))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
FileOperationRetryHelper.MoveWithOverwriteRetry(tempFilePath, destinationFilePath, "Downloader");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void CleanupDownloaderArtifacts(string destinationFilePath)
|
||||||
|
{
|
||||||
|
var transientFilePath = BuildTempFilePath(destinationFilePath);
|
||||||
|
var metadataFilePath = BuildPackageFilePath(destinationFilePath);
|
||||||
|
|
||||||
|
if (File.Exists(transientFilePath))
|
||||||
|
{
|
||||||
|
FileOperationRetryHelper.DeleteFileWithRetry(transientFilePath, "Downloader");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (File.Exists(metadataFilePath))
|
||||||
|
{
|
||||||
|
FileOperationRetryHelper.DeleteFileWithRetry(metadataFilePath, "Downloader");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool HasDownloaderResumeArtifacts(string destinationFilePath)
|
||||||
|
{
|
||||||
|
return File.Exists(BuildTempFilePath(destinationFilePath)) ||
|
||||||
|
File.Exists(BuildPackageFilePath(destinationFilePath));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool ShouldUseParallelDownload(DownloadOptions options)
|
||||||
|
{
|
||||||
|
return options.MaxParallelSegments > 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static DownloadOptions NormalizeOptions(DownloadOptions? options)
|
||||||
|
{
|
||||||
|
var normalized = options ?? new DownloadOptions();
|
||||||
|
return normalized with
|
||||||
|
{
|
||||||
|
MaxParallelSegments = Math.Clamp(normalized.MaxParallelSegments, 1, 8),
|
||||||
|
ParallelThresholdBytes = Math.Max(1_048_576, normalized.ParallelThresholdBytes),
|
||||||
|
BufferSize = Math.Max(16 * 1024, normalized.BufferSize)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string BuildTempFilePath(string destinationFilePath) => destinationFilePath + ".part";
|
||||||
|
|
||||||
|
private static string BuildPackageFilePath(string destinationFilePath) => destinationFilePath + ".download";
|
||||||
|
}
|
||||||
151
LanMountainDesktop/Services/SingleInstanceService.cs
Normal file
151
LanMountainDesktop/Services/SingleInstanceService.cs
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO.Pipes;
|
||||||
|
using System.Security.Cryptography;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Services;
|
||||||
|
|
||||||
|
public sealed class SingleInstanceService : IDisposable
|
||||||
|
{
|
||||||
|
private readonly Mutex _mutex;
|
||||||
|
private readonly string _pipeName;
|
||||||
|
private readonly CancellationTokenSource _listenCts = new();
|
||||||
|
private bool _ownsMutex;
|
||||||
|
private bool _disposed;
|
||||||
|
private Task? _listenTask;
|
||||||
|
|
||||||
|
private SingleInstanceService(string mutexName, string pipeName)
|
||||||
|
{
|
||||||
|
_mutex = new Mutex(initiallyOwned: false, mutexName);
|
||||||
|
_pipeName = pipeName;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_ownsMutex = _mutex.WaitOne(TimeSpan.Zero, exitContext: false);
|
||||||
|
}
|
||||||
|
catch (AbandonedMutexException)
|
||||||
|
{
|
||||||
|
_ownsMutex = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool IsPrimaryInstance => _ownsMutex;
|
||||||
|
|
||||||
|
public static SingleInstanceService CreateDefault()
|
||||||
|
{
|
||||||
|
const string appId = "LanMountainDesktop";
|
||||||
|
var userName = Environment.UserName;
|
||||||
|
var scopeSeed = $"{appId}:{userName}";
|
||||||
|
var scopeHash = Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(scopeSeed)));
|
||||||
|
var suffix = scopeHash[..16];
|
||||||
|
var mutexName = OperatingSystem.IsWindows()
|
||||||
|
? $"Local\\{appId}.SingleInstance.{suffix}"
|
||||||
|
: $"{appId}.SingleInstance.{suffix}";
|
||||||
|
return new SingleInstanceService(
|
||||||
|
mutexName,
|
||||||
|
$"{appId}.Activate.{suffix}");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void StartActivationListener(Action onActivationRequested)
|
||||||
|
{
|
||||||
|
ArgumentNullException.ThrowIfNull(onActivationRequested);
|
||||||
|
|
||||||
|
if (!_ownsMutex || _disposed || _listenTask is not null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_listenTask = Task.Run(() => ListenForActivationAsync(onActivationRequested, _listenCts.Token));
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool TryNotifyPrimaryInstance(TimeSpan timeout)
|
||||||
|
{
|
||||||
|
if (_ownsMutex || _disposed)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using var client = new NamedPipeClientStream(
|
||||||
|
serverName: ".",
|
||||||
|
pipeName: _pipeName,
|
||||||
|
direction: PipeDirection.Out,
|
||||||
|
options: PipeOptions.Asynchronous);
|
||||||
|
|
||||||
|
client.Connect((int)Math.Max(1, timeout.TotalMilliseconds));
|
||||||
|
client.WriteByte(1);
|
||||||
|
client.Flush();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("SingleInstance", "Failed to notify the primary instance.", ex);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
if (_disposed)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_disposed = true;
|
||||||
|
_listenCts.Cancel();
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_listenTask?.Wait(TimeSpan.FromSeconds(1));
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
// Ignore listener shutdown races during process exit.
|
||||||
|
}
|
||||||
|
|
||||||
|
_listenCts.Dispose();
|
||||||
|
if (_ownsMutex)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_mutex.ReleaseMutex();
|
||||||
|
}
|
||||||
|
catch (ApplicationException)
|
||||||
|
{
|
||||||
|
// Ownership may already be lost during shutdown.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_mutex.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task ListenForActivationAsync(Action onActivationRequested, CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
while (!cancellationToken.IsCancellationRequested)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using var server = new NamedPipeServerStream(
|
||||||
|
_pipeName,
|
||||||
|
PipeDirection.In,
|
||||||
|
1,
|
||||||
|
PipeTransmissionMode.Byte,
|
||||||
|
PipeOptions.Asynchronous);
|
||||||
|
|
||||||
|
await server.WaitForConnectionAsync(cancellationToken).ConfigureAwait(false);
|
||||||
|
await server.ReadAsync(new byte[1], cancellationToken).ConfigureAwait(false);
|
||||||
|
onActivationRequested();
|
||||||
|
}
|
||||||
|
catch (OperationCanceledException)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn("SingleInstance", "Activation listener failed.", ex);
|
||||||
|
await Task.Delay(TimeSpan.FromMilliseconds(250), cancellationToken).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
193
LanMountainDesktop/Services/StartupDiagnosticsService.cs
Normal file
193
LanMountainDesktop/Services/StartupDiagnosticsService.cs
Normal file
@@ -0,0 +1,193 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Services;
|
||||||
|
|
||||||
|
public sealed class StartupDiagnosticsResult
|
||||||
|
{
|
||||||
|
public string ExecutablePath { get; init; } = string.Empty;
|
||||||
|
|
||||||
|
public string BaseDirectory { get; init; } = string.Empty;
|
||||||
|
|
||||||
|
public string ExecutableName { get; init; } = string.Empty;
|
||||||
|
|
||||||
|
public bool IsLegacyExecutableLaunch { get; init; }
|
||||||
|
|
||||||
|
public IReadOnlyList<string> FoundLegacyArtifacts { get; init; } = Array.Empty<string>();
|
||||||
|
|
||||||
|
public IReadOnlyList<string> DeletedLegacyArtifacts { get; init; } = Array.Empty<string>();
|
||||||
|
|
||||||
|
public IReadOnlyList<string> FailedLegacyArtifacts { get; init; } = Array.Empty<string>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class StartupDiagnosticsService
|
||||||
|
{
|
||||||
|
private const string CurrentExecutableName = "LanMountainDesktop.exe";
|
||||||
|
|
||||||
|
private static readonly string[] LegacyArtifactNames =
|
||||||
|
[
|
||||||
|
"LanMontainDesktop.exe",
|
||||||
|
"LanMontainDesktop.dll",
|
||||||
|
"LanMontainDesktop.deps.json",
|
||||||
|
"LanMontainDesktop.runtimeconfig.json",
|
||||||
|
"LanMontainDesktop.pdb",
|
||||||
|
"LanMontainDesktop.exe.WebView2"
|
||||||
|
];
|
||||||
|
|
||||||
|
public static StartupDiagnosticsResult Run(string[] args)
|
||||||
|
{
|
||||||
|
var executablePath = ResolveExecutablePath();
|
||||||
|
var baseDirectory = AppContext.BaseDirectory;
|
||||||
|
var executableName = Path.GetFileName(executablePath);
|
||||||
|
var assemblyVersion = Assembly.GetEntryAssembly()?.GetName().Version?.ToString() ?? "unknown";
|
||||||
|
var fileVersion = string.Empty;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrWhiteSpace(executablePath) && File.Exists(executablePath))
|
||||||
|
{
|
||||||
|
fileVersion = FileVersionInfo.GetVersionInfo(executablePath).FileVersion ?? string.Empty;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
// Keep diagnostics best-effort.
|
||||||
|
}
|
||||||
|
|
||||||
|
AppLogger.Info(
|
||||||
|
"Startup",
|
||||||
|
$"Application starting. ExecutablePath={executablePath}; BaseDirectory={baseDirectory}; ExecutableName={executableName}; AssemblyVersion={assemblyVersion}; FileVersion={fileVersion}; Args=[{string.Join(", ", args)}]");
|
||||||
|
|
||||||
|
var foundLegacyArtifacts = LegacyArtifactNames
|
||||||
|
.Select(name => Path.Combine(baseDirectory, name))
|
||||||
|
.Where(path => File.Exists(path) || Directory.Exists(path))
|
||||||
|
.OrderBy(path => path, StringComparer.OrdinalIgnoreCase)
|
||||||
|
.ToList();
|
||||||
|
|
||||||
|
var deletedLegacyArtifacts = new List<string>();
|
||||||
|
var failedLegacyArtifacts = new List<string>();
|
||||||
|
foreach (var legacyArtifact in foundLegacyArtifacts)
|
||||||
|
{
|
||||||
|
if (string.Equals(legacyArtifact, executablePath, StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (TryDeleteLegacyArtifact(legacyArtifact, out var error))
|
||||||
|
{
|
||||||
|
deletedLegacyArtifacts.Add(legacyArtifact);
|
||||||
|
}
|
||||||
|
else if (!string.IsNullOrWhiteSpace(error))
|
||||||
|
{
|
||||||
|
failedLegacyArtifacts.Add($"{legacyArtifact} ({error})");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (foundLegacyArtifacts.Count > 0)
|
||||||
|
{
|
||||||
|
AppLogger.Warn(
|
||||||
|
"StartupDiagnostics",
|
||||||
|
$"Found legacy artifacts: {string.Join("; ", foundLegacyArtifacts)}");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (deletedLegacyArtifacts.Count > 0)
|
||||||
|
{
|
||||||
|
AppLogger.Info(
|
||||||
|
"StartupDiagnostics",
|
||||||
|
$"Deleted legacy artifacts: {string.Join("; ", deletedLegacyArtifacts)}");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (failedLegacyArtifacts.Count > 0)
|
||||||
|
{
|
||||||
|
AppLogger.Warn(
|
||||||
|
"StartupDiagnostics",
|
||||||
|
$"Failed to delete legacy artifacts: {string.Join("; ", failedLegacyArtifacts)}");
|
||||||
|
}
|
||||||
|
|
||||||
|
var isLegacyExecutableLaunch = string.Equals(
|
||||||
|
executableName,
|
||||||
|
"LanMontainDesktop.exe",
|
||||||
|
StringComparison.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
if (isLegacyExecutableLaunch)
|
||||||
|
{
|
||||||
|
AppLogger.Warn(
|
||||||
|
"StartupDiagnostics",
|
||||||
|
$"Legacy executable launch detected. Current executable should be '{CurrentExecutableName}', but actual executable is '{executableName}'.");
|
||||||
|
}
|
||||||
|
|
||||||
|
return new StartupDiagnosticsResult
|
||||||
|
{
|
||||||
|
ExecutablePath = executablePath,
|
||||||
|
BaseDirectory = baseDirectory,
|
||||||
|
ExecutableName = executableName,
|
||||||
|
IsLegacyExecutableLaunch = isLegacyExecutableLaunch,
|
||||||
|
FoundLegacyArtifacts = foundLegacyArtifacts,
|
||||||
|
DeletedLegacyArtifacts = deletedLegacyArtifacts,
|
||||||
|
FailedLegacyArtifacts = failedLegacyArtifacts
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void ShowLegacyExecutableWarningIfNeeded(StartupDiagnosticsResult diagnostics)
|
||||||
|
{
|
||||||
|
if (!diagnostics.IsLegacyExecutableLaunch)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var message =
|
||||||
|
"检测到当前是从旧残留可执行文件启动的。\r\n\r\n" +
|
||||||
|
$"当前文件: {diagnostics.ExecutableName}\r\n" +
|
||||||
|
$"当前路径: {diagnostics.ExecutablePath}\r\n\r\n" +
|
||||||
|
$"请改用 {CurrentExecutableName} 启动,以免继续读取旧残留文件。\r\n" +
|
||||||
|
$"日志目录: {AppLogger.LogDirectory}";
|
||||||
|
|
||||||
|
WindowsNativeDialogService.ShowWarning("LanMountainDesktop 启动诊断", message);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string ResolveExecutablePath()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return Environment.ProcessPath ??
|
||||||
|
Process.GetCurrentProcess().MainModule?.FileName ??
|
||||||
|
string.Empty;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
return string.Empty;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool TryDeleteLegacyArtifact(string path, out string? error)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (File.Exists(path))
|
||||||
|
{
|
||||||
|
File.Delete(path);
|
||||||
|
error = null;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Directory.Exists(path))
|
||||||
|
{
|
||||||
|
Directory.Delete(path, recursive: true);
|
||||||
|
error = null;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
error = null;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
error = ex.Message;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -16,6 +16,14 @@ public static class StudyAnalyticsServiceFactory
|
|||||||
{
|
{
|
||||||
return SharedService.Value;
|
return SharedService.Value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void DisposeSharedService()
|
||||||
|
{
|
||||||
|
if (SharedService.IsValueCreated)
|
||||||
|
{
|
||||||
|
SharedService.Value.Dispose();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public sealed class StudyAnalyticsService : IStudyAnalyticsService
|
public sealed class StudyAnalyticsService : IStudyAnalyticsService
|
||||||
@@ -446,6 +454,7 @@ public sealed class StudyAnalyticsService : IStudyAnalyticsService
|
|||||||
_disposed = true;
|
_disposed = true;
|
||||||
StopTimerLocked();
|
StopTimerLocked();
|
||||||
_samplingTimer.Dispose();
|
_samplingTimer.Dispose();
|
||||||
|
_audioRecorderService.Dispose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -759,4 +768,3 @@ public sealed class StudyAnalyticsService : IStudyAnalyticsService
|
|||||||
_lastSessionReport = null;
|
_lastSessionReport = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
41
LanMountainDesktop/Services/WindowsNativeDialogService.cs
Normal file
41
LanMountainDesktop/Services/WindowsNativeDialogService.cs
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
using System;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Services;
|
||||||
|
|
||||||
|
internal static class WindowsNativeDialogService
|
||||||
|
{
|
||||||
|
private const uint Ok = 0x00000000;
|
||||||
|
private const uint IconInformation = 0x00000040;
|
||||||
|
private const uint IconWarning = 0x00000030;
|
||||||
|
|
||||||
|
public static void ShowInformation(string caption, string message)
|
||||||
|
{
|
||||||
|
Show(caption, message, Ok | IconInformation, "NativeDialog");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void ShowWarning(string caption, string message)
|
||||||
|
{
|
||||||
|
Show(caption, message, Ok | IconWarning, "StartupDiagnostics");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void Show(string caption, string message, uint type, string logCategory)
|
||||||
|
{
|
||||||
|
if (!OperatingSystem.IsWindows())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_ = MessageBoxW(IntPtr.Zero, message, caption, type);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
AppLogger.Warn(logCategory, "Failed to show native dialog.", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[DllImport("user32.dll", EntryPoint = "MessageBoxW", CharSet = CharSet.Unicode, SetLastError = true)]
|
||||||
|
private static extern int MessageBoxW(IntPtr hWnd, string text, string caption, uint type);
|
||||||
|
}
|
||||||
@@ -30,8 +30,9 @@ public sealed class WindowsStartupService
|
|||||||
return runKey?.GetValue(ValueName) is string value &&
|
return runKey?.GetValue(ValueName) is string value &&
|
||||||
!string.IsNullOrWhiteSpace(value);
|
!string.IsNullOrWhiteSpace(value);
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("WindowsStartup", "Failed to query startup registry state.", ex);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -67,8 +68,9 @@ public sealed class WindowsStartupService
|
|||||||
|
|
||||||
return IsEnabled() == enabled;
|
return IsEnabled() == enabled;
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn("WindowsStartup", $"Failed to set startup registry state. Enabled={enabled}", ex);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ using Avalonia.Media;
|
|||||||
using Avalonia.Media.Imaging;
|
using Avalonia.Media.Imaging;
|
||||||
using Avalonia.Threading;
|
using Avalonia.Threading;
|
||||||
using Avalonia.VisualTree;
|
using Avalonia.VisualTree;
|
||||||
|
using FluentAvalonia.UI.Controls;
|
||||||
using LanMountainDesktop.Models;
|
using LanMountainDesktop.Models;
|
||||||
using LanMountainDesktop.Services;
|
using LanMountainDesktop.Services;
|
||||||
|
|
||||||
@@ -1069,12 +1070,12 @@ public partial class MainWindow
|
|||||||
|
|
||||||
private void RenderLauncherHiddenItemsList()
|
private void RenderLauncherHiddenItemsList()
|
||||||
{
|
{
|
||||||
if (LauncherHiddenItemsListPanel is null || LauncherHiddenItemsEmptyTextBlock is null)
|
if (LauncherHiddenItemsSettingsExpander is null || LauncherHiddenItemsEmptyTextBlock is null)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
LauncherHiddenItemsListPanel.Children.Clear();
|
LauncherHiddenItemsSettingsExpander.Items.Clear();
|
||||||
var hiddenItems = BuildLauncherHiddenItems();
|
var hiddenItems = BuildLauncherHiddenItems();
|
||||||
LauncherHiddenItemsEmptyTextBlock.IsVisible = hiddenItems.Count == 0;
|
LauncherHiddenItemsEmptyTextBlock.IsVisible = hiddenItems.Count == 0;
|
||||||
if (hiddenItems.Count == 0)
|
if (hiddenItems.Count == 0)
|
||||||
@@ -1084,7 +1085,7 @@ public partial class MainWindow
|
|||||||
|
|
||||||
foreach (var hiddenItem in hiddenItems)
|
foreach (var hiddenItem in hiddenItems)
|
||||||
{
|
{
|
||||||
LauncherHiddenItemsListPanel.Children.Add(CreateLauncherHiddenItemRow(hiddenItem));
|
LauncherHiddenItemsSettingsExpander.Items.Add(CreateLauncherHiddenItemRow(hiddenItem));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1186,92 +1187,58 @@ public partial class MainWindow
|
|||||||
: fileName;
|
: fileName;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Control CreateLauncherHiddenItemRow(LauncherHiddenItemView hiddenItem)
|
private SettingsExpanderItem CreateLauncherHiddenItemRow(LauncherHiddenItemView hiddenItem)
|
||||||
{
|
{
|
||||||
Control icon = hiddenItem.IconBitmap is not null
|
|
||||||
? new Image
|
|
||||||
{
|
|
||||||
Source = hiddenItem.IconBitmap,
|
|
||||||
Width = 24,
|
|
||||||
Height = 24,
|
|
||||||
Stretch = Stretch.Uniform
|
|
||||||
}
|
|
||||||
: new Border
|
|
||||||
{
|
|
||||||
Width = 24,
|
|
||||||
Height = 24,
|
|
||||||
CornerRadius = new CornerRadius(999),
|
|
||||||
Background = GetThemeBrush("AdaptiveButtonBackgroundBrush"),
|
|
||||||
Child = new TextBlock
|
|
||||||
{
|
|
||||||
Text = hiddenItem.Monogram,
|
|
||||||
FontSize = 10,
|
|
||||||
FontWeight = FontWeight.Bold,
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Center,
|
|
||||||
VerticalAlignment = VerticalAlignment.Center
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var typeText = hiddenItem.Kind == LauncherEntryKind.Folder
|
var typeText = hiddenItem.Kind == LauncherEntryKind.Folder
|
||||||
? L("settings.launcher.hidden_type_folder", "Folder")
|
? L("settings.launcher.hidden_type_folder", "Folder")
|
||||||
: L("settings.launcher.hidden_type_shortcut", "Shortcut");
|
: L("settings.launcher.hidden_type_shortcut", "Shortcut");
|
||||||
|
|
||||||
var infoPanel = new StackPanel
|
|
||||||
{
|
|
||||||
Orientation = Orientation.Horizontal,
|
|
||||||
Spacing = 10,
|
|
||||||
VerticalAlignment = VerticalAlignment.Center,
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Stretch
|
|
||||||
};
|
|
||||||
infoPanel.Children.Add(icon);
|
|
||||||
infoPanel.Children.Add(new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 2,
|
|
||||||
VerticalAlignment = VerticalAlignment.Center,
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Left,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = hiddenItem.DisplayName,
|
|
||||||
TextTrimming = TextTrimming.CharacterEllipsis,
|
|
||||||
MaxLines = 1
|
|
||||||
},
|
|
||||||
new TextBlock
|
|
||||||
{
|
|
||||||
Text = typeText,
|
|
||||||
FontSize = 11,
|
|
||||||
Opacity = 0.7
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var restoreButton = new Button
|
var restoreButton = new Button
|
||||||
{
|
{
|
||||||
Content = L("settings.launcher.restore_button", "Show Again"),
|
Width = 36,
|
||||||
MinWidth = 110,
|
Height = 36,
|
||||||
Padding = new Thickness(12, 6),
|
Padding = new Thickness(0),
|
||||||
|
Background = Brushes.Transparent,
|
||||||
|
BorderThickness = new Thickness(0),
|
||||||
Tag = new LauncherHiddenItemToken(hiddenItem.Kind, hiddenItem.Key)
|
Tag = new LauncherHiddenItemToken(hiddenItem.Kind, hiddenItem.Key)
|
||||||
};
|
};
|
||||||
|
restoreButton.Content = new FluentIcons.Avalonia.Fluent.SymbolIcon
|
||||||
|
{
|
||||||
|
Symbol = FluentIcons.Common.Symbol.Eye,
|
||||||
|
IconVariant = FluentIcons.Common.IconVariant.Regular,
|
||||||
|
FontSize = 18,
|
||||||
|
HorizontalAlignment = HorizontalAlignment.Center,
|
||||||
|
VerticalAlignment = VerticalAlignment.Center
|
||||||
|
};
|
||||||
|
ToolTip.SetTip(restoreButton, L("settings.launcher.restore_button", "Unhide"));
|
||||||
restoreButton.Click += OnRestoreLauncherHiddenItemClick;
|
restoreButton.Click += OnRestoreLauncherHiddenItemClick;
|
||||||
|
|
||||||
var row = new Grid
|
return new SettingsExpanderItem
|
||||||
{
|
{
|
||||||
ColumnDefinitions = new ColumnDefinitions("*,Auto"),
|
Content = hiddenItem.DisplayName,
|
||||||
ColumnSpacing = 10
|
Description = typeText,
|
||||||
|
IconSource = CreateLauncherHiddenItemIconSource(hiddenItem),
|
||||||
|
IsClickEnabled = false,
|
||||||
|
Footer = restoreButton
|
||||||
};
|
};
|
||||||
row.Children.Add(infoPanel);
|
}
|
||||||
Grid.SetColumn(infoPanel, 0);
|
|
||||||
row.Children.Add(restoreButton);
|
|
||||||
Grid.SetColumn(restoreButton, 1);
|
|
||||||
|
|
||||||
return new Border
|
private IconSource CreateLauncherHiddenItemIconSource(LauncherHiddenItemView hiddenItem)
|
||||||
|
{
|
||||||
|
if (hiddenItem.IconBitmap is not null)
|
||||||
{
|
{
|
||||||
Classes = { "glass-panel" },
|
return new ImageIconSource
|
||||||
BorderThickness = new Thickness(0),
|
{
|
||||||
CornerRadius = new CornerRadius(14),
|
Source = hiddenItem.IconBitmap
|
||||||
Padding = new Thickness(10, 8),
|
};
|
||||||
Child = row
|
}
|
||||||
|
|
||||||
|
return new FluentIcons.Avalonia.Fluent.SymbolIconSource
|
||||||
|
{
|
||||||
|
Symbol = hiddenItem.Kind == LauncherEntryKind.Folder
|
||||||
|
? FluentIcons.Common.Symbol.Folder
|
||||||
|
: FluentIcons.Common.Symbol.Apps,
|
||||||
|
IconVariant = FluentIcons.Common.IconVariant.Regular
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -119,6 +119,7 @@ public partial class MainWindow
|
|||||||
SettingsNavUpdateItem.Content = L("settings.nav.update", "Update");
|
SettingsNavUpdateItem.Content = L("settings.nav.update", "Update");
|
||||||
SettingsNavLauncherItem.Content = L("settings.nav.launcher", "App Launcher");
|
SettingsNavLauncherItem.Content = L("settings.nav.launcher", "App Launcher");
|
||||||
SettingsNavPluginsItem.Content = L("settings.nav.plugins", "Plugins");
|
SettingsNavPluginsItem.Content = L("settings.nav.plugins", "Plugins");
|
||||||
|
SettingsNavPluginMarketItem.Content = L("settings.nav.plugin_market", "Plugin Market");
|
||||||
|
|
||||||
WallpaperPanelTitleTextBlock.Text = L("settings.wallpaper.title", "Personalize your wallpaper");
|
WallpaperPanelTitleTextBlock.Text = L("settings.wallpaper.title", "Personalize your wallpaper");
|
||||||
WallpaperPlacementSettingsExpander.Header = L("settings.wallpaper.placement_label", "Placement");
|
WallpaperPlacementSettingsExpander.Header = L("settings.wallpaper.placement_label", "Placement");
|
||||||
@@ -283,6 +284,7 @@ public partial class MainWindow
|
|||||||
LauncherHiddenItemsEmptyTextBlock.Text = L("settings.launcher.hidden_empty", "No hidden items.");
|
LauncherHiddenItemsEmptyTextBlock.Text = L("settings.launcher.hidden_empty", "No hidden items.");
|
||||||
|
|
||||||
ApplyPluginSettingsLocalization();
|
ApplyPluginSettingsLocalization();
|
||||||
|
ApplyPluginMarketSettingsLocalization();
|
||||||
|
|
||||||
SettingsNavAboutItem.Content = L("settings.nav.about", "About");
|
SettingsNavAboutItem.Content = L("settings.nav.about", "About");
|
||||||
AboutPanelTitleTextBlock.Text = L("settings.about.title", "About");
|
AboutPanelTitleTextBlock.Text = L("settings.about.title", "About");
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ using System.Threading.Tasks;
|
|||||||
using Avalonia.Interactivity;
|
using Avalonia.Interactivity;
|
||||||
using Avalonia.Threading;
|
using Avalonia.Threading;
|
||||||
using FluentAvalonia.UI.Controls;
|
using FluentAvalonia.UI.Controls;
|
||||||
|
using LanMountainDesktop.PluginSdk;
|
||||||
using LanMountainDesktop.Services;
|
using LanMountainDesktop.Services;
|
||||||
|
|
||||||
namespace LanMountainDesktop.Views;
|
namespace LanMountainDesktop.Views;
|
||||||
@@ -77,7 +78,9 @@ public partial class MainWindow
|
|||||||
var result = await dialog.ShowAsync(this);
|
var result = await dialog.ShowAsync(this);
|
||||||
if (result == ContentDialogResult.Primary)
|
if (result == ContentDialogResult.Primary)
|
||||||
{
|
{
|
||||||
if (!AppRestartService.TryRestartApplication())
|
if (App.CurrentHostApplicationLifecycle?.TryRestart(new HostApplicationLifecycleRequest(
|
||||||
|
Source: nameof(MainWindow),
|
||||||
|
Reason: "User confirmed a pending restart prompt.")) != true)
|
||||||
{
|
{
|
||||||
UpdatePendingRestartDock();
|
UpdatePendingRestartDock();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -115,7 +115,8 @@ public partial class MainWindow
|
|||||||
UpdateSettingsPanel is null ||
|
UpdateSettingsPanel is null ||
|
||||||
LauncherSettingsPanel is null ||
|
LauncherSettingsPanel is null ||
|
||||||
AboutSettingsPanel is null ||
|
AboutSettingsPanel is null ||
|
||||||
PluginSettingsPanel is null)
|
PluginSettingsPanel is null ||
|
||||||
|
PluginMarketSettingsPanel is null)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -133,6 +134,7 @@ public partial class MainWindow
|
|||||||
AboutSettingsPanel.IsVisible = tag == "About";
|
AboutSettingsPanel.IsVisible = tag == "About";
|
||||||
LauncherSettingsPanel.IsVisible = tag == "Launcher";
|
LauncherSettingsPanel.IsVisible = tag == "Launcher";
|
||||||
PluginSettingsPanel.IsVisible = tag == "Plugins";
|
PluginSettingsPanel.IsVisible = tag == "Plugins";
|
||||||
|
PluginMarketSettingsPanel.IsVisible = tag == "PluginMarket";
|
||||||
UpdatePluginSettingsPageVisibility(tag);
|
UpdatePluginSettingsPageVisibility(tag);
|
||||||
|
|
||||||
if (tag == "Launcher")
|
if (tag == "Launcher")
|
||||||
@@ -140,12 +142,23 @@ public partial class MainWindow
|
|||||||
RenderLauncherHiddenItemsList();
|
RenderLauncherHiddenItemsList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (tag == "Plugins")
|
||||||
|
{
|
||||||
|
PluginSettingsPanel.RefreshFromRuntime();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tag == "PluginMarket")
|
||||||
|
{
|
||||||
|
PluginMarketSettingsPanel.RefreshFromRuntime();
|
||||||
|
}
|
||||||
|
|
||||||
if (tag == "Grid")
|
if (tag == "Grid")
|
||||||
{
|
{
|
||||||
UpdateGridPreviewLayout();
|
UpdateGridPreviewLayout();
|
||||||
}
|
}
|
||||||
|
|
||||||
ApplyTaskbarActionVisibility(GetCurrentTaskbarContext());
|
ApplyTaskbarActionVisibility(GetCurrentTaskbarContext());
|
||||||
|
UpdateVideoWallpaperPreviewVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnNightModeChecked(object? sender, RoutedEventArgs e)
|
private void OnNightModeChecked(object? sender, RoutedEventArgs e)
|
||||||
@@ -332,6 +345,7 @@ public partial class MainWindow
|
|||||||
var placement = GetSelectedWallpaperPlacement();
|
var placement = GetSelectedWallpaperPlacement();
|
||||||
DesktopWallpaperLayer.Background = CreateWallpaperBrush(_wallpaperBitmap, placement, false);
|
DesktopWallpaperLayer.Background = CreateWallpaperBrush(_wallpaperBitmap, placement, false);
|
||||||
WallpaperPreviewViewport.Background = CreateWallpaperBrush(_wallpaperBitmap, placement, true);
|
WallpaperPreviewViewport.Background = CreateWallpaperBrush(_wallpaperBitmap, placement, true);
|
||||||
|
UpdateVideoWallpaperPreviewVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdateWallpaperDisplay()
|
private void UpdateWallpaperDisplay()
|
||||||
@@ -616,12 +630,99 @@ public partial class MainWindow
|
|||||||
EnableHardwareDecoding = false
|
EnableHardwareDecoding = false
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (_previewVideoWallpaperPlayer is null && WallpaperPreviewVideoView is not null)
|
private void EnsureDesktopVideoFrameRefreshTimer()
|
||||||
|
{
|
||||||
|
if (_desktopVideoFrameRefreshTimer is not null)
|
||||||
{
|
{
|
||||||
_previewVideoWallpaperPlayer = new MediaPlayer(_libVlc);
|
return;
|
||||||
WallpaperPreviewVideoView.MediaPlayer = _previewVideoWallpaperPlayer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_desktopVideoFrameRefreshTimer = new DispatcherTimer
|
||||||
|
{
|
||||||
|
Interval = TimeSpan.FromMilliseconds(33)
|
||||||
|
};
|
||||||
|
_desktopVideoFrameRefreshTimer.Tick += OnDesktopVideoFrameRefreshTimerTick;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void StartDesktopVideoFrameRefreshTimer()
|
||||||
|
{
|
||||||
|
EnsureDesktopVideoFrameRefreshTimer();
|
||||||
|
if (_desktopVideoFrameRefreshTimer?.IsEnabled == false)
|
||||||
|
{
|
||||||
|
_desktopVideoFrameRefreshTimer.Start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void StopDesktopVideoFrameRefreshTimer()
|
||||||
|
{
|
||||||
|
if (_desktopVideoFrameRefreshTimer?.IsEnabled == true)
|
||||||
|
{
|
||||||
|
_desktopVideoFrameRefreshTimer.Stop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnDesktopVideoFrameRefreshTimerTick(object? sender, EventArgs e)
|
||||||
|
{
|
||||||
|
PushDesktopVideoFrameToWallpaperImage();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void UpdateVideoWallpaperPreviewVisibility()
|
||||||
|
{
|
||||||
|
var shouldShowPreview =
|
||||||
|
_wallpaperMediaType == WallpaperMediaType.Video &&
|
||||||
|
_isSettingsOpen &&
|
||||||
|
SettingsPage.IsVisible &&
|
||||||
|
WallpaperSettingsPanel.IsVisible &&
|
||||||
|
_wallpaperPreviewSnapshotBitmap is not null;
|
||||||
|
|
||||||
|
WallpaperPreviewVideoImage.IsVisible = shouldShowPreview;
|
||||||
|
if (shouldShowPreview && !ReferenceEquals(WallpaperPreviewVideoImage.Source, _wallpaperPreviewSnapshotBitmap))
|
||||||
|
{
|
||||||
|
WallpaperPreviewVideoImage.Source = _wallpaperPreviewSnapshotBitmap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void InvalidateVideoWallpaperPreviewSnapshot()
|
||||||
|
{
|
||||||
|
_wallpaperPreviewSnapshotPending = true;
|
||||||
|
_wallpaperPreviewSnapshotBitmap?.Dispose();
|
||||||
|
_wallpaperPreviewSnapshotBitmap = null;
|
||||||
|
WallpaperPreviewVideoImage.Source = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CaptureVideoWallpaperPreviewSnapshotFromStagingBuffer()
|
||||||
|
{
|
||||||
|
if (!_wallpaperPreviewSnapshotPending ||
|
||||||
|
_desktopVideoStagingBuffer is null ||
|
||||||
|
_desktopVideoFrameWidth <= 0 ||
|
||||||
|
_desktopVideoFrameHeight <= 0 ||
|
||||||
|
_desktopVideoFramePitch <= 0)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_wallpaperPreviewSnapshotBitmap?.Dispose();
|
||||||
|
_wallpaperPreviewSnapshotBitmap = new WriteableBitmap(
|
||||||
|
new PixelSize(_desktopVideoFrameWidth, _desktopVideoFrameHeight),
|
||||||
|
new Vector(96, 96),
|
||||||
|
PixelFormat.Bgra8888,
|
||||||
|
AlphaFormat.Opaque);
|
||||||
|
|
||||||
|
using var framebuffer = _wallpaperPreviewSnapshotBitmap.Lock();
|
||||||
|
var rows = Math.Min(framebuffer.Size.Height, _desktopVideoFrameHeight);
|
||||||
|
var bytesPerRow = Math.Min(framebuffer.RowBytes, _desktopVideoFramePitch);
|
||||||
|
for (var row = 0; row < rows; row++)
|
||||||
|
{
|
||||||
|
var sourceOffset = row * _desktopVideoFramePitch;
|
||||||
|
var destinationPtr = IntPtr.Add(framebuffer.Address, row * framebuffer.RowBytes);
|
||||||
|
Marshal.Copy(_desktopVideoStagingBuffer, sourceOffset, destinationPtr, bytesPerRow);
|
||||||
|
}
|
||||||
|
|
||||||
|
_wallpaperPreviewSnapshotPending = false;
|
||||||
|
WallpaperPreviewVideoImage.Source = _wallpaperPreviewSnapshotBitmap;
|
||||||
|
UpdateVideoWallpaperPreviewVisibility();
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool ConfigureDesktopVideoRenderer()
|
private bool ConfigureDesktopVideoRenderer()
|
||||||
@@ -673,6 +774,7 @@ public partial class MainWindow
|
|||||||
(uint)_desktopVideoFrameHeight,
|
(uint)_desktopVideoFrameHeight,
|
||||||
(uint)_desktopVideoFramePitch);
|
(uint)_desktopVideoFramePitch);
|
||||||
DesktopVideoWallpaperImage.Source = _desktopVideoBitmap;
|
DesktopVideoWallpaperImage.Source = _desktopVideoBitmap;
|
||||||
|
InvalidateVideoWallpaperPreviewSnapshot();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
@@ -733,31 +835,6 @@ public partial class MainWindow
|
|||||||
private void OnDesktopVideoFrameDisplay(IntPtr opaque, IntPtr picture)
|
private void OnDesktopVideoFrameDisplay(IntPtr opaque, IntPtr picture)
|
||||||
{
|
{
|
||||||
Interlocked.Exchange(ref _desktopVideoFrameDirtyFlag, 1);
|
Interlocked.Exchange(ref _desktopVideoFrameDirtyFlag, 1);
|
||||||
ScheduleDesktopVideoFrameUiRefresh();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void ScheduleDesktopVideoFrameUiRefresh()
|
|
||||||
{
|
|
||||||
if (Interlocked.Exchange(ref _desktopVideoFrameUiRefreshScheduledFlag, 1) == 1)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Dispatcher.UIThread.Post(() =>
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
PushDesktopVideoFrameToWallpaperImage();
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
Interlocked.Exchange(ref _desktopVideoFrameUiRefreshScheduledFlag, 0);
|
|
||||||
if (Volatile.Read(ref _desktopVideoFrameDirtyFlag) == 1)
|
|
||||||
{
|
|
||||||
ScheduleDesktopVideoFrameUiRefresh();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, DispatcherPriority.Render);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void PushDesktopVideoFrameToWallpaperImage()
|
private void PushDesktopVideoFrameToWallpaperImage()
|
||||||
@@ -800,18 +877,22 @@ public partial class MainWindow
|
|||||||
{
|
{
|
||||||
DesktopVideoWallpaperImage.Source = _desktopVideoBitmap;
|
DesktopVideoWallpaperImage.Source = _desktopVideoBitmap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CaptureVideoWallpaperPreviewSnapshotFromStagingBuffer();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ReleaseDesktopVideoRendererResources()
|
private void ReleaseDesktopVideoRendererResources()
|
||||||
{
|
{
|
||||||
Interlocked.Exchange(ref _desktopVideoFrameDirtyFlag, 0);
|
Interlocked.Exchange(ref _desktopVideoFrameDirtyFlag, 0);
|
||||||
Interlocked.Exchange(ref _desktopVideoFrameUiRefreshScheduledFlag, 0);
|
|
||||||
|
|
||||||
if (DesktopVideoWallpaperImage is not null)
|
if (DesktopVideoWallpaperImage is not null)
|
||||||
{
|
{
|
||||||
DesktopVideoWallpaperImage.Source = null;
|
DesktopVideoWallpaperImage.Source = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
InvalidateVideoWallpaperPreviewSnapshot();
|
||||||
|
WallpaperPreviewVideoImage.Source = null;
|
||||||
|
|
||||||
_desktopVideoBitmap?.Dispose();
|
_desktopVideoBitmap?.Dispose();
|
||||||
_desktopVideoBitmap = null;
|
_desktopVideoBitmap = null;
|
||||||
_desktopVideoStagingBuffer = null;
|
_desktopVideoStagingBuffer = null;
|
||||||
@@ -843,10 +924,8 @@ public partial class MainWindow
|
|||||||
{
|
{
|
||||||
EnsureVideoWallpaperPlayers();
|
EnsureVideoWallpaperPlayers();
|
||||||
if (_videoWallpaperPlayer is null ||
|
if (_videoWallpaperPlayer is null ||
|
||||||
_previewVideoWallpaperPlayer is null ||
|
|
||||||
_libVlc is null ||
|
_libVlc is null ||
|
||||||
DesktopVideoWallpaperImage is null ||
|
DesktopVideoWallpaperImage is null)
|
||||||
WallpaperPreviewVideoView is null)
|
|
||||||
{
|
{
|
||||||
_wallpaperStatus = L("settings.wallpaper.video_player_unavailable", "Video player is unavailable.");
|
_wallpaperStatus = L("settings.wallpaper.video_player_unavailable", "Video player is unavailable.");
|
||||||
StopVideoWallpaper();
|
StopVideoWallpaper();
|
||||||
@@ -861,15 +940,13 @@ public partial class MainWindow
|
|||||||
}
|
}
|
||||||
|
|
||||||
_videoWallpaperMedia?.Dispose();
|
_videoWallpaperMedia?.Dispose();
|
||||||
_previewVideoWallpaperMedia?.Dispose();
|
|
||||||
_videoWallpaperMedia = new Media(_libVlc, new Uri(videoPath));
|
_videoWallpaperMedia = new Media(_libVlc, new Uri(videoPath));
|
||||||
_previewVideoWallpaperMedia = new Media(_libVlc, new Uri(videoPath));
|
|
||||||
_videoWallpaperMedia.AddOption(":input-repeat=65535");
|
_videoWallpaperMedia.AddOption(":input-repeat=65535");
|
||||||
_previewVideoWallpaperMedia.AddOption(":input-repeat=65535");
|
InvalidateVideoWallpaperPreviewSnapshot();
|
||||||
_videoWallpaperPlayer.Play(_videoWallpaperMedia);
|
_videoWallpaperPlayer.Play(_videoWallpaperMedia);
|
||||||
_previewVideoWallpaperPlayer.Play(_previewVideoWallpaperMedia);
|
StartDesktopVideoFrameRefreshTimer();
|
||||||
DesktopVideoWallpaperImage.IsVisible = true;
|
DesktopVideoWallpaperImage.IsVisible = true;
|
||||||
WallpaperPreviewVideoView.IsVisible = true;
|
UpdateVideoWallpaperPreviewVisibility();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
@@ -885,26 +962,17 @@ public partial class MainWindow
|
|||||||
DesktopVideoWallpaperImage.IsVisible = false;
|
DesktopVideoWallpaperImage.IsVisible = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (WallpaperPreviewVideoView is not null)
|
WallpaperPreviewVideoImage.IsVisible = false;
|
||||||
{
|
|
||||||
WallpaperPreviewVideoView.IsVisible = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_videoWallpaperPlayer is not null)
|
if (_videoWallpaperPlayer is not null)
|
||||||
{
|
{
|
||||||
_videoWallpaperPlayer.Stop();
|
_videoWallpaperPlayer.Stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_previewVideoWallpaperPlayer is not null)
|
StopDesktopVideoFrameRefreshTimer();
|
||||||
{
|
|
||||||
_previewVideoWallpaperPlayer.Stop();
|
|
||||||
}
|
|
||||||
|
|
||||||
ReleaseDesktopVideoRendererResources();
|
ReleaseDesktopVideoRendererResources();
|
||||||
_videoWallpaperMedia?.Dispose();
|
_videoWallpaperMedia?.Dispose();
|
||||||
_videoWallpaperMedia = null;
|
_videoWallpaperMedia = null;
|
||||||
_previewVideoWallpaperMedia?.Dispose();
|
|
||||||
_previewVideoWallpaperMedia = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void PersistSettings()
|
private void PersistSettings()
|
||||||
@@ -2367,7 +2435,14 @@ public partial class MainWindow
|
|||||||
_isSettingsOpen = true;
|
_isSettingsOpen = true;
|
||||||
UpdateDesktopPageAwareComponentContext();
|
UpdateDesktopPageAwareComponentContext();
|
||||||
UpdateAdaptiveTextSystem();
|
UpdateAdaptiveTextSystem();
|
||||||
ApplyWallpaperBrush();
|
if (_wallpaperMediaType == WallpaperMediaType.Video)
|
||||||
|
{
|
||||||
|
UpdateVideoWallpaperPreviewVisibility();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ApplyWallpaperBrush();
|
||||||
|
}
|
||||||
ApplyTaskbarActionVisibility(GetCurrentTaskbarContext());
|
ApplyTaskbarActionVisibility(GetCurrentTaskbarContext());
|
||||||
if (_settingsContentPanelTransform is not null)
|
if (_settingsContentPanelTransform is not null)
|
||||||
{
|
{
|
||||||
@@ -2375,6 +2450,7 @@ public partial class MainWindow
|
|||||||
}
|
}
|
||||||
SettingsPage.IsVisible = true;
|
SettingsPage.IsVisible = true;
|
||||||
SettingsPage.Opacity = 0;
|
SettingsPage.Opacity = 0;
|
||||||
|
UpdateVideoWallpaperPreviewVisibility();
|
||||||
UpdateSettingsViewportInsets(Math.Max(1, _currentDesktopCellSize));
|
UpdateSettingsViewportInsets(Math.Max(1, _currentDesktopCellSize));
|
||||||
|
|
||||||
UpdateWallpaperPreviewLayout();
|
UpdateWallpaperPreviewLayout();
|
||||||
@@ -2404,7 +2480,11 @@ public partial class MainWindow
|
|||||||
_isSettingsOpen = false;
|
_isSettingsOpen = false;
|
||||||
UpdateDesktopPageAwareComponentContext();
|
UpdateDesktopPageAwareComponentContext();
|
||||||
UpdateAdaptiveTextSystem();
|
UpdateAdaptiveTextSystem();
|
||||||
ApplyWallpaperBrush();
|
UpdateVideoWallpaperPreviewVisibility();
|
||||||
|
if (_wallpaperMediaType != WallpaperMediaType.Video)
|
||||||
|
{
|
||||||
|
ApplyWallpaperBrush();
|
||||||
|
}
|
||||||
ApplyTaskbarActionVisibility(GetCurrentTaskbarContext());
|
ApplyTaskbarActionVisibility(GetCurrentTaskbarContext());
|
||||||
|
|
||||||
if (immediate)
|
if (immediate)
|
||||||
@@ -2596,7 +2676,7 @@ public partial class MainWindow
|
|||||||
internal Border WallpaperPreviewHost => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewHost")!;
|
internal Border WallpaperPreviewHost => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewHost")!;
|
||||||
internal Border WallpaperPreviewFrame => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewFrame")!;
|
internal Border WallpaperPreviewFrame => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewFrame")!;
|
||||||
internal Border WallpaperPreviewViewport => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewViewport")!;
|
internal Border WallpaperPreviewViewport => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewViewport")!;
|
||||||
internal LibVLCSharp.Avalonia.VideoView? WallpaperPreviewVideoView => WallpaperSettingsPanel.FindControl<LibVLCSharp.Avalonia.VideoView>("WallpaperPreviewVideoView");
|
internal Image WallpaperPreviewVideoImage => WallpaperSettingsPanel.FindControl<Image>("WallpaperPreviewVideoImage")!;
|
||||||
internal Grid WallpaperPreviewGrid => WallpaperSettingsPanel.FindControl<Grid>("WallpaperPreviewGrid")!;
|
internal Grid WallpaperPreviewGrid => WallpaperSettingsPanel.FindControl<Grid>("WallpaperPreviewGrid")!;
|
||||||
internal Border WallpaperPreviewTopStatusBarHost => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewTopStatusBarHost")!;
|
internal Border WallpaperPreviewTopStatusBarHost => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewTopStatusBarHost")!;
|
||||||
internal StackPanel WallpaperPreviewTopStatusComponentsPanel => WallpaperSettingsPanel.FindControl<StackPanel>("WallpaperPreviewTopStatusComponentsPanel")!;
|
internal StackPanel WallpaperPreviewTopStatusComponentsPanel => WallpaperSettingsPanel.FindControl<StackPanel>("WallpaperPreviewTopStatusComponentsPanel")!;
|
||||||
@@ -2793,7 +2873,6 @@ public partial class MainWindow
|
|||||||
// --- LauncherSettingsPage ---
|
// --- LauncherSettingsPage ---
|
||||||
internal TextBlock LauncherSettingsPanelTitleTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherSettingsPanelTitleTextBlock")!;
|
internal TextBlock LauncherSettingsPanelTitleTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherSettingsPanelTitleTextBlock")!;
|
||||||
internal FluentAvalonia.UI.Controls.SettingsExpander LauncherHiddenItemsSettingsExpander => LauncherSettingsPanel.FindControl<FluentAvalonia.UI.Controls.SettingsExpander>("LauncherHiddenItemsSettingsExpander")!;
|
internal FluentAvalonia.UI.Controls.SettingsExpander LauncherHiddenItemsSettingsExpander => LauncherSettingsPanel.FindControl<FluentAvalonia.UI.Controls.SettingsExpander>("LauncherHiddenItemsSettingsExpander")!;
|
||||||
internal StackPanel LauncherHiddenItemsListPanel => LauncherSettingsPanel.FindControl<StackPanel>("LauncherHiddenItemsListPanel")!;
|
|
||||||
internal TextBlock LauncherHiddenItemsEmptyTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherHiddenItemsEmptyTextBlock")!;
|
internal TextBlock LauncherHiddenItemsEmptyTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherHiddenItemsEmptyTextBlock")!;
|
||||||
internal TextBlock LauncherHiddenItemsDescriptionTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherHiddenItemsDescriptionTextBlock")!;
|
internal TextBlock LauncherHiddenItemsDescriptionTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherHiddenItemsDescriptionTextBlock")!;
|
||||||
|
|
||||||
|
|||||||
59
LanMountainDesktop/Views/MainWindow.SingleInstanceNotice.cs
Normal file
59
LanMountainDesktop/Views/MainWindow.SingleInstanceNotice.cs
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
using System;
|
||||||
|
using Avalonia.Interactivity;
|
||||||
|
using Avalonia.Threading;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Views;
|
||||||
|
|
||||||
|
public partial class MainWindow
|
||||||
|
{
|
||||||
|
private readonly DispatcherTimer _singleInstanceNoticeTimer = new()
|
||||||
|
{
|
||||||
|
Interval = TimeSpan.FromSeconds(6)
|
||||||
|
};
|
||||||
|
|
||||||
|
internal void ShowSingleInstanceNotice()
|
||||||
|
{
|
||||||
|
if (Dispatcher.UIThread.CheckAccess())
|
||||||
|
{
|
||||||
|
ShowSingleInstanceNoticeCore();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Dispatcher.UIThread.Post(ShowSingleInstanceNoticeCore, DispatcherPriority.Send);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ShowSingleInstanceNoticeCore()
|
||||||
|
{
|
||||||
|
SingleInstanceNoticeTitleTextBlock.Text = L(
|
||||||
|
"single_instance.notice.title",
|
||||||
|
"App already open");
|
||||||
|
SingleInstanceNoticeDescriptionTextBlock.Text = L(
|
||||||
|
"single_instance.notice.description",
|
||||||
|
"LanMountainDesktop is already running. Switched back to the active desktop.");
|
||||||
|
SingleInstanceNoticeButtonTextBlock.Text = L(
|
||||||
|
"single_instance.notice.button",
|
||||||
|
"Got it");
|
||||||
|
SingleInstanceNoticeDock.IsVisible = true;
|
||||||
|
|
||||||
|
_singleInstanceNoticeTimer.Stop();
|
||||||
|
_singleInstanceNoticeTimer.Tick -= OnSingleInstanceNoticeTimerTick;
|
||||||
|
_singleInstanceNoticeTimer.Tick += OnSingleInstanceNoticeTimerTick;
|
||||||
|
_singleInstanceNoticeTimer.Start();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnSingleInstanceNoticeButtonClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
HideSingleInstanceNotice();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnSingleInstanceNoticeTimerTick(object? sender, EventArgs e)
|
||||||
|
{
|
||||||
|
HideSingleInstanceNotice();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void HideSingleInstanceNotice()
|
||||||
|
{
|
||||||
|
_singleInstanceNoticeTimer.Stop();
|
||||||
|
SingleInstanceNoticeDock.IsVisible = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.ComponentModel;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
using Avalonia.Interactivity;
|
using Avalonia.Interactivity;
|
||||||
using Avalonia.Threading;
|
|
||||||
using LanMountainDesktop.Models;
|
using LanMountainDesktop.Models;
|
||||||
|
using LanMountainDesktop.PluginSdk;
|
||||||
using LanMountainDesktop.Services;
|
using LanMountainDesktop.Services;
|
||||||
|
|
||||||
namespace LanMountainDesktop.Views;
|
namespace LanMountainDesktop.Views;
|
||||||
@@ -357,7 +358,8 @@ public partial class MainWindow
|
|||||||
{
|
{
|
||||||
FileName = installerPath,
|
FileName = installerPath,
|
||||||
WorkingDirectory = Path.GetDirectoryName(installerPath) ?? Environment.CurrentDirectory,
|
WorkingDirectory = Path.GetDirectoryName(installerPath) ?? Environment.CurrentDirectory,
|
||||||
UseShellExecute = true
|
UseShellExecute = true,
|
||||||
|
Verb = "runas"
|
||||||
});
|
});
|
||||||
|
|
||||||
_updateStatusText = L(
|
_updateStatusText = L(
|
||||||
@@ -365,7 +367,16 @@ public partial class MainWindow
|
|||||||
"Installer started. The app will close for update.");
|
"Installer started. The app will close for update.");
|
||||||
UpdateUpdatePanelState();
|
UpdateUpdatePanelState();
|
||||||
|
|
||||||
Dispatcher.UIThread.Post(Close, DispatcherPriority.Background);
|
_ = App.CurrentHostApplicationLifecycle?.TryExit(new HostApplicationLifecycleRequest(
|
||||||
|
Source: nameof(MainWindow),
|
||||||
|
Reason: "Update installer started successfully."));
|
||||||
|
}
|
||||||
|
catch (Win32Exception ex) when (ex.NativeErrorCode == 1223)
|
||||||
|
{
|
||||||
|
_updateStatusText = L(
|
||||||
|
"settings.update.status_elevation_cancelled",
|
||||||
|
"Administrator permission was not granted. Update was cancelled.");
|
||||||
|
UpdateUpdatePanelState();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -436,6 +436,11 @@
|
|||||||
<ic:SymbolIconSource Symbol="PuzzlePiece" IconVariant="Regular" />
|
<ic:SymbolIconSource Symbol="PuzzlePiece" IconVariant="Regular" />
|
||||||
</ui:NavigationViewItem.IconSource>
|
</ui:NavigationViewItem.IconSource>
|
||||||
</ui:NavigationViewItem>
|
</ui:NavigationViewItem>
|
||||||
|
<ui:NavigationViewItem x:Name="SettingsNavPluginMarketItem" Content="插件市场" Tag="PluginMarket" ToolTip.Tip="插件市场">
|
||||||
|
<ui:NavigationViewItem.IconSource>
|
||||||
|
<ic:SymbolIconSource Symbol="PuzzlePiece" IconVariant="Regular" />
|
||||||
|
</ui:NavigationViewItem.IconSource>
|
||||||
|
</ui:NavigationViewItem>
|
||||||
</ui:NavigationView.MenuItems>
|
</ui:NavigationView.MenuItems>
|
||||||
|
|
||||||
<ScrollViewer x:Name="SettingsContentScrollViewer"
|
<ScrollViewer x:Name="SettingsContentScrollViewer"
|
||||||
@@ -459,55 +464,103 @@
|
|||||||
<pages:LauncherSettingsPage x:Name="LauncherSettingsPanel" IsVisible="False" />
|
<pages:LauncherSettingsPage x:Name="LauncherSettingsPanel" IsVisible="False" />
|
||||||
<pages:AboutSettingsPage x:Name="AboutSettingsPanel" IsVisible="False" />
|
<pages:AboutSettingsPage x:Name="AboutSettingsPanel" IsVisible="False" />
|
||||||
<pages:PluginSettingsPage x:Name="PluginSettingsPanel" IsVisible="False" />
|
<pages:PluginSettingsPage x:Name="PluginSettingsPanel" IsVisible="False" />
|
||||||
|
<pages:PluginMarketSettingsPage x:Name="PluginMarketSettingsPanel" IsVisible="False" />
|
||||||
</Grid>
|
</Grid>
|
||||||
</ScrollViewer>
|
</ScrollViewer>
|
||||||
</ui:NavigationView>
|
</ui:NavigationView>
|
||||||
|
|
||||||
<Border x:Name="PendingRestartDock"
|
<StackPanel Grid.Row="1"
|
||||||
Grid.Row="1"
|
Spacing="12">
|
||||||
IsVisible="False"
|
<Border x:Name="SingleInstanceNoticeDock"
|
||||||
Classes="glass-panel"
|
IsVisible="False"
|
||||||
CornerRadius="18"
|
Classes="glass-panel"
|
||||||
Padding="14,12">
|
CornerRadius="18"
|
||||||
<Grid ColumnDefinitions="Auto,*,Auto"
|
Padding="14,12">
|
||||||
ColumnSpacing="12">
|
<Grid ColumnDefinitions="Auto,*,Auto"
|
||||||
<Border Width="34"
|
ColumnSpacing="12">
|
||||||
Height="34"
|
<Border Width="34"
|
||||||
CornerRadius="17"
|
Height="34"
|
||||||
Background="{DynamicResource AdaptiveAccentBrush}">
|
CornerRadius="17"
|
||||||
<fi:FluentIcon Icon="ArrowSync"
|
Background="{DynamicResource AdaptiveAccentBrush}">
|
||||||
IconVariant="Regular"
|
<fi:FluentIcon Icon="Alert"
|
||||||
FontSize="16"
|
IconVariant="Regular"
|
||||||
Foreground="White"
|
FontSize="16"
|
||||||
HorizontalAlignment="Center"
|
Foreground="White"
|
||||||
VerticalAlignment="Center" />
|
HorizontalAlignment="Center"
|
||||||
</Border>
|
VerticalAlignment="Center" />
|
||||||
<StackPanel Grid.Column="1"
|
</Border>
|
||||||
Spacing="2"
|
<StackPanel Grid.Column="1"
|
||||||
VerticalAlignment="Center">
|
Spacing="2"
|
||||||
<TextBlock x:Name="PendingRestartDockTitleTextBlock"
|
VerticalAlignment="Center">
|
||||||
FontSize="13"
|
<TextBlock x:Name="SingleInstanceNoticeTitleTextBlock"
|
||||||
FontWeight="SemiBold"
|
FontSize="13"
|
||||||
Text="Restart required" />
|
FontWeight="SemiBold"
|
||||||
<TextBlock x:Name="PendingRestartDockDescriptionTextBlock"
|
Text="App already open" />
|
||||||
TextWrapping="Wrap"
|
<TextBlock x:Name="SingleInstanceNoticeDescriptionTextBlock"
|
||||||
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
TextWrapping="Wrap"
|
||||||
Text="Your changes will apply after restarting the app." />
|
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
||||||
</StackPanel>
|
Text="LanMountainDesktop is already running. Switched back to the active desktop." />
|
||||||
<Button x:Name="PendingRestartDockButton"
|
|
||||||
Grid.Column="2"
|
|
||||||
Padding="14,8"
|
|
||||||
Click="OnPendingRestartDockButtonClick">
|
|
||||||
<StackPanel Orientation="Horizontal" Spacing="8">
|
|
||||||
<fi:FluentIcon Icon="ArrowSync"
|
|
||||||
IconVariant="Regular" />
|
|
||||||
<TextBlock x:Name="PendingRestartDockButtonTextBlock"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
Text="Restart app" />
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Button>
|
<Button x:Name="SingleInstanceNoticeButton"
|
||||||
</Grid>
|
Grid.Column="2"
|
||||||
</Border>
|
Padding="14,8"
|
||||||
|
Click="OnSingleInstanceNoticeButtonClick">
|
||||||
|
<StackPanel Orientation="Horizontal" Spacing="8">
|
||||||
|
<fi:FluentIcon Icon="Checkmark"
|
||||||
|
IconVariant="Regular" />
|
||||||
|
<TextBlock x:Name="SingleInstanceNoticeButtonTextBlock"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="Got it" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
</Grid>
|
||||||
|
</Border>
|
||||||
|
|
||||||
|
<Border x:Name="PendingRestartDock"
|
||||||
|
IsVisible="False"
|
||||||
|
Classes="glass-panel"
|
||||||
|
CornerRadius="18"
|
||||||
|
Padding="14,12">
|
||||||
|
<Grid ColumnDefinitions="Auto,*,Auto"
|
||||||
|
ColumnSpacing="12">
|
||||||
|
<Border Width="34"
|
||||||
|
Height="34"
|
||||||
|
CornerRadius="17"
|
||||||
|
Background="{DynamicResource AdaptiveAccentBrush}">
|
||||||
|
<fi:FluentIcon Icon="ArrowSync"
|
||||||
|
IconVariant="Regular"
|
||||||
|
FontSize="16"
|
||||||
|
Foreground="White"
|
||||||
|
HorizontalAlignment="Center"
|
||||||
|
VerticalAlignment="Center" />
|
||||||
|
</Border>
|
||||||
|
<StackPanel Grid.Column="1"
|
||||||
|
Spacing="2"
|
||||||
|
VerticalAlignment="Center">
|
||||||
|
<TextBlock x:Name="PendingRestartDockTitleTextBlock"
|
||||||
|
FontSize="13"
|
||||||
|
FontWeight="SemiBold"
|
||||||
|
Text="Restart required" />
|
||||||
|
<TextBlock x:Name="PendingRestartDockDescriptionTextBlock"
|
||||||
|
TextWrapping="Wrap"
|
||||||
|
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
||||||
|
Text="Your changes will apply after restarting the app." />
|
||||||
|
</StackPanel>
|
||||||
|
<Button x:Name="PendingRestartDockButton"
|
||||||
|
Grid.Column="2"
|
||||||
|
Padding="14,8"
|
||||||
|
Click="OnPendingRestartDockButtonClick">
|
||||||
|
<StackPanel Orientation="Horizontal" Spacing="8">
|
||||||
|
<fi:FluentIcon Icon="ArrowSync"
|
||||||
|
IconVariant="Regular" />
|
||||||
|
<TextBlock x:Name="PendingRestartDockButtonTextBlock"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Text="Restart app" />
|
||||||
|
</StackPanel>
|
||||||
|
</Button>
|
||||||
|
</Grid>
|
||||||
|
</Border>
|
||||||
|
</StackPanel>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Border>
|
</Border>
|
||||||
</Border>
|
</Border>
|
||||||
|
|||||||
@@ -124,21 +124,21 @@ public partial class MainWindow : Window
|
|||||||
private LibVLC? _libVlc;
|
private LibVLC? _libVlc;
|
||||||
private MediaPlayer? _videoWallpaperPlayer;
|
private MediaPlayer? _videoWallpaperPlayer;
|
||||||
private Media? _videoWallpaperMedia;
|
private Media? _videoWallpaperMedia;
|
||||||
private MediaPlayer? _previewVideoWallpaperPlayer;
|
|
||||||
private Media? _previewVideoWallpaperMedia;
|
|
||||||
private readonly object _desktopVideoFrameSync = new();
|
private readonly object _desktopVideoFrameSync = new();
|
||||||
private MediaPlayer.LibVLCVideoLockCb? _desktopVideoLockCallback;
|
private MediaPlayer.LibVLCVideoLockCb? _desktopVideoLockCallback;
|
||||||
private MediaPlayer.LibVLCVideoUnlockCb? _desktopVideoUnlockCallback;
|
private MediaPlayer.LibVLCVideoUnlockCb? _desktopVideoUnlockCallback;
|
||||||
private MediaPlayer.LibVLCVideoDisplayCb? _desktopVideoDisplayCallback;
|
private MediaPlayer.LibVLCVideoDisplayCb? _desktopVideoDisplayCallback;
|
||||||
|
private DispatcherTimer? _desktopVideoFrameRefreshTimer;
|
||||||
private IntPtr _desktopVideoFrameBufferPtr;
|
private IntPtr _desktopVideoFrameBufferPtr;
|
||||||
private byte[]? _desktopVideoStagingBuffer;
|
private byte[]? _desktopVideoStagingBuffer;
|
||||||
private WriteableBitmap? _desktopVideoBitmap;
|
private WriteableBitmap? _desktopVideoBitmap;
|
||||||
|
private WriteableBitmap? _wallpaperPreviewSnapshotBitmap;
|
||||||
private int _desktopVideoFrameWidth;
|
private int _desktopVideoFrameWidth;
|
||||||
private int _desktopVideoFrameHeight;
|
private int _desktopVideoFrameHeight;
|
||||||
private int _desktopVideoFramePitch;
|
private int _desktopVideoFramePitch;
|
||||||
private int _desktopVideoFrameBufferSize;
|
private int _desktopVideoFrameBufferSize;
|
||||||
private int _desktopVideoFrameDirtyFlag;
|
private int _desktopVideoFrameDirtyFlag;
|
||||||
private int _desktopVideoFrameUiRefreshScheduledFlag;
|
private bool _wallpaperPreviewSnapshotPending;
|
||||||
private string? _wallpaperPath;
|
private string? _wallpaperPath;
|
||||||
private string _wallpaperStatus = "Current background uses solid color.";
|
private string _wallpaperStatus = "Current background uses solid color.";
|
||||||
private IReadOnlyList<Color> _recommendedColors = Array.Empty<Color>();
|
private IReadOnlyList<Color> _recommendedColors = Array.Empty<Color>();
|
||||||
@@ -384,15 +384,15 @@ public partial class MainWindow : Window
|
|||||||
{
|
{
|
||||||
PersistSettings();
|
PersistSettings();
|
||||||
StopVideoWallpaper();
|
StopVideoWallpaper();
|
||||||
_previewVideoWallpaperMedia?.Dispose();
|
|
||||||
_previewVideoWallpaperMedia = null;
|
|
||||||
_previewVideoWallpaperPlayer?.Dispose();
|
|
||||||
_previewVideoWallpaperPlayer = null;
|
|
||||||
DisposeLauncherResources();
|
DisposeLauncherResources();
|
||||||
_videoWallpaperMedia?.Dispose();
|
_videoWallpaperMedia?.Dispose();
|
||||||
_videoWallpaperMedia = null;
|
_videoWallpaperMedia = null;
|
||||||
_videoWallpaperPlayer?.Dispose();
|
_videoWallpaperPlayer?.Dispose();
|
||||||
_videoWallpaperPlayer = null;
|
_videoWallpaperPlayer = null;
|
||||||
|
_desktopVideoFrameRefreshTimer?.Stop();
|
||||||
|
_desktopVideoFrameRefreshTimer = null;
|
||||||
|
_wallpaperPreviewSnapshotBitmap?.Dispose();
|
||||||
|
_wallpaperPreviewSnapshotBitmap = null;
|
||||||
_libVlc?.Dispose();
|
_libVlc?.Dispose();
|
||||||
_libVlc = null;
|
_libVlc = null;
|
||||||
if (_weatherDataService is IDisposable weatherServiceDisposable)
|
if (_weatherDataService is IDisposable weatherServiceDisposable)
|
||||||
|
|||||||
@@ -31,12 +31,6 @@
|
|||||||
IsVisible="False"
|
IsVisible="False"
|
||||||
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
||||||
Text="No hidden items." />
|
Text="No hidden items." />
|
||||||
<ScrollViewer MaxHeight="420"
|
|
||||||
VerticalScrollBarVisibility="Auto"
|
|
||||||
HorizontalScrollBarVisibility="Disabled">
|
|
||||||
<StackPanel x:Name="LauncherHiddenItemsListPanel"
|
|
||||||
Spacing="8" />
|
|
||||||
</ScrollViewer>
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</ui:SettingsExpander.Footer>
|
</ui:SettingsExpander.Footer>
|
||||||
</ui:SettingsExpander>
|
</ui:SettingsExpander>
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
xmlns:fi="using:FluentIcons.Avalonia"
|
xmlns:fi="using:FluentIcons.Avalonia"
|
||||||
xmlns:ic="using:FluentIcons.Avalonia.Fluent"
|
xmlns:ic="using:FluentIcons.Avalonia.Fluent"
|
||||||
xmlns:comp="using:LanMountainDesktop.Views.Components"
|
xmlns:comp="using:LanMountainDesktop.Views.Components"
|
||||||
xmlns:vlc="clr-namespace:LibVLCSharp.Avalonia;assembly=LibVLCSharp.Avalonia"
|
|
||||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="600"
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="600"
|
||||||
x:Class="LanMountainDesktop.Views.SettingsPages.WallpaperSettingsPage">
|
x:Class="LanMountainDesktop.Views.SettingsPages.WallpaperSettingsPage">
|
||||||
<Grid x:Name="WallpaperSettingsPanel"
|
<Grid x:Name="WallpaperSettingsPanel"
|
||||||
@@ -37,11 +36,12 @@
|
|||||||
CornerRadius="12"
|
CornerRadius="12"
|
||||||
Background="#30111827">
|
Background="#30111827">
|
||||||
<Grid>
|
<Grid>
|
||||||
<vlc:VideoView x:Name="WallpaperPreviewVideoView"
|
<Image x:Name="WallpaperPreviewVideoImage"
|
||||||
IsVisible="False"
|
IsVisible="False"
|
||||||
IsHitTestVisible="False"
|
IsHitTestVisible="False"
|
||||||
HorizontalAlignment="Stretch"
|
Stretch="UniformToFill"
|
||||||
VerticalAlignment="Stretch" />
|
HorizontalAlignment="Stretch"
|
||||||
|
VerticalAlignment="Stretch" />
|
||||||
|
|
||||||
<Grid x:Name="WallpaperPreviewGrid"
|
<Grid x:Name="WallpaperPreviewGrid"
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
using Avalonia.Media;
|
using Avalonia.Media;
|
||||||
using Avalonia.Media.Imaging;
|
using Avalonia.Media.Imaging;
|
||||||
using LibVLCSharp.Avalonia;
|
|
||||||
namespace LanMountainDesktop.Views;
|
namespace LanMountainDesktop.Views;
|
||||||
|
|
||||||
public partial class SettingsWindow
|
public partial class SettingsWindow
|
||||||
@@ -14,7 +13,7 @@ public partial class SettingsWindow
|
|||||||
internal Border WallpaperPreviewHost => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewHost")!;
|
internal Border WallpaperPreviewHost => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewHost")!;
|
||||||
internal Border WallpaperPreviewFrame => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewFrame")!;
|
internal Border WallpaperPreviewFrame => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewFrame")!;
|
||||||
internal Border WallpaperPreviewViewport => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewViewport")!;
|
internal Border WallpaperPreviewViewport => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewViewport")!;
|
||||||
internal LibVLCSharp.Avalonia.VideoView? WallpaperPreviewVideoView => WallpaperSettingsPanel.FindControl<LibVLCSharp.Avalonia.VideoView>("WallpaperPreviewVideoView");
|
internal Image WallpaperPreviewVideoImage => WallpaperSettingsPanel.FindControl<Image>("WallpaperPreviewVideoImage")!;
|
||||||
internal Grid WallpaperPreviewGrid => WallpaperSettingsPanel.FindControl<Grid>("WallpaperPreviewGrid")!;
|
internal Grid WallpaperPreviewGrid => WallpaperSettingsPanel.FindControl<Grid>("WallpaperPreviewGrid")!;
|
||||||
internal Border WallpaperPreviewTopStatusBarHost => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewTopStatusBarHost")!;
|
internal Border WallpaperPreviewTopStatusBarHost => WallpaperSettingsPanel.FindControl<Border>("WallpaperPreviewTopStatusBarHost")!;
|
||||||
internal StackPanel WallpaperPreviewTopStatusComponentsPanel => WallpaperSettingsPanel.FindControl<StackPanel>("WallpaperPreviewTopStatusComponentsPanel")!;
|
internal StackPanel WallpaperPreviewTopStatusComponentsPanel => WallpaperSettingsPanel.FindControl<StackPanel>("WallpaperPreviewTopStatusComponentsPanel")!;
|
||||||
@@ -211,7 +210,6 @@ public partial class SettingsWindow
|
|||||||
// --- LauncherSettingsPage ---
|
// --- LauncherSettingsPage ---
|
||||||
internal TextBlock LauncherSettingsPanelTitleTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherSettingsPanelTitleTextBlock")!;
|
internal TextBlock LauncherSettingsPanelTitleTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherSettingsPanelTitleTextBlock")!;
|
||||||
internal FluentAvalonia.UI.Controls.SettingsExpander LauncherHiddenItemsSettingsExpander => LauncherSettingsPanel.FindControl<FluentAvalonia.UI.Controls.SettingsExpander>("LauncherHiddenItemsSettingsExpander")!;
|
internal FluentAvalonia.UI.Controls.SettingsExpander LauncherHiddenItemsSettingsExpander => LauncherSettingsPanel.FindControl<FluentAvalonia.UI.Controls.SettingsExpander>("LauncherHiddenItemsSettingsExpander")!;
|
||||||
internal StackPanel LauncherHiddenItemsListPanel => LauncherSettingsPanel.FindControl<StackPanel>("LauncherHiddenItemsListPanel")!;
|
|
||||||
internal TextBlock LauncherHiddenItemsEmptyTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherHiddenItemsEmptyTextBlock")!;
|
internal TextBlock LauncherHiddenItemsEmptyTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherHiddenItemsEmptyTextBlock")!;
|
||||||
internal TextBlock LauncherHiddenItemsDescriptionTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherHiddenItemsDescriptionTextBlock")!;
|
internal TextBlock LauncherHiddenItemsDescriptionTextBlock => LauncherSettingsPanel.FindControl<TextBlock>("LauncherHiddenItemsDescriptionTextBlock")!;
|
||||||
|
|
||||||
|
|||||||
@@ -29,6 +29,8 @@ public partial class SettingsWindow
|
|||||||
_previewVideoWallpaperPlayer = null;
|
_previewVideoWallpaperPlayer = null;
|
||||||
_previewVideoWallpaperMedia?.Dispose();
|
_previewVideoWallpaperMedia?.Dispose();
|
||||||
_previewVideoWallpaperMedia = null;
|
_previewVideoWallpaperMedia = null;
|
||||||
|
_previewVideoFrameRefreshTimer?.Stop();
|
||||||
|
_previewVideoFrameRefreshTimer = null;
|
||||||
_libVlc?.Dispose();
|
_libVlc?.Dispose();
|
||||||
_libVlc = null;
|
_libVlc = null;
|
||||||
|
|
||||||
@@ -69,6 +71,7 @@ public partial class SettingsWindow
|
|||||||
AddSettingsNavItem(SettingsSecondaryNavHost, "Update", Symbol.ArrowSync, "Update");
|
AddSettingsNavItem(SettingsSecondaryNavHost, "Update", Symbol.ArrowSync, "Update");
|
||||||
AddSettingsNavItem(SettingsSecondaryNavHost, "About", Symbol.Info, "About");
|
AddSettingsNavItem(SettingsSecondaryNavHost, "About", Symbol.Info, "About");
|
||||||
AddSettingsNavItem(SettingsSecondaryNavHost, "Plugins", Symbol.PuzzlePiece, "Plugins");
|
AddSettingsNavItem(SettingsSecondaryNavHost, "Plugins", Symbol.PuzzlePiece, "Plugins");
|
||||||
|
AddSettingsNavItem(SettingsSecondaryNavHost, "PluginMarket", Symbol.PuzzlePiece, "Plugin Market");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnSettingsNavItemClick(object? sender, RoutedEventArgs e)
|
private void OnSettingsNavItemClick(object? sender, RoutedEventArgs e)
|
||||||
@@ -229,6 +232,7 @@ public partial class SettingsWindow
|
|||||||
AboutSettingsPanel.IsVisible = tag == "About";
|
AboutSettingsPanel.IsVisible = tag == "About";
|
||||||
LauncherSettingsPanel.IsVisible = tag == "Launcher";
|
LauncherSettingsPanel.IsVisible = tag == "Launcher";
|
||||||
PluginSettingsPanel.IsVisible = tag == "Plugins";
|
PluginSettingsPanel.IsVisible = tag == "Plugins";
|
||||||
|
PluginMarketSettingsPanel.IsVisible = tag == "PluginMarket";
|
||||||
UpdatePluginSettingsPageVisibility(tag);
|
UpdatePluginSettingsPageVisibility(tag);
|
||||||
|
|
||||||
if (tag == "Launcher")
|
if (tag == "Launcher")
|
||||||
@@ -236,12 +240,23 @@ public partial class SettingsWindow
|
|||||||
RenderLauncherHiddenItemsList();
|
RenderLauncherHiddenItemsList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (tag == "Plugins")
|
||||||
|
{
|
||||||
|
PluginSettingsPanel.RefreshFromRuntime();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tag == "PluginMarket")
|
||||||
|
{
|
||||||
|
PluginMarketSettingsPanel.RefreshFromRuntime();
|
||||||
|
}
|
||||||
|
|
||||||
if (tag == "Grid")
|
if (tag == "Grid")
|
||||||
{
|
{
|
||||||
UpdateGridPreviewLayout();
|
UpdateGridPreviewLayout();
|
||||||
}
|
}
|
||||||
|
|
||||||
ApplyTaskbarActionVisibility(GetCurrentTaskbarContext());
|
ApplyTaskbarActionVisibility(GetCurrentTaskbarContext());
|
||||||
|
SyncVideoWallpaperPreviewPlayback();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void PersistSettings()
|
private void PersistSettings()
|
||||||
|
|||||||
@@ -74,6 +74,7 @@ public partial class SettingsWindow
|
|||||||
SetSettingsNavItemLabel(GetSettingsNavItem("About"), L("settings.nav.about", "About"));
|
SetSettingsNavItemLabel(GetSettingsNavItem("About"), L("settings.nav.about", "About"));
|
||||||
SetSettingsNavItemLabel(GetSettingsNavItem("Launcher"), L("settings.nav.launcher", "App Launcher"));
|
SetSettingsNavItemLabel(GetSettingsNavItem("Launcher"), L("settings.nav.launcher", "App Launcher"));
|
||||||
SetSettingsNavItemLabel(GetSettingsNavItem("Plugins"), L("settings.nav.plugins", "Plugins"));
|
SetSettingsNavItemLabel(GetSettingsNavItem("Plugins"), L("settings.nav.plugins", "Plugins"));
|
||||||
|
SetSettingsNavItemLabel(GetSettingsNavItem("PluginMarket"), L("settings.nav.plugin_market", "Plugin Market"));
|
||||||
|
|
||||||
WallpaperPanelTitleTextBlock.Text = L("settings.wallpaper.title", "Personalize your wallpaper");
|
WallpaperPanelTitleTextBlock.Text = L("settings.wallpaper.title", "Personalize your wallpaper");
|
||||||
WallpaperPlacementSettingsExpander.Header = L("settings.wallpaper.placement_label", "Placement");
|
WallpaperPlacementSettingsExpander.Header = L("settings.wallpaper.placement_label", "Placement");
|
||||||
@@ -177,6 +178,7 @@ public partial class SettingsWindow
|
|||||||
LauncherHiddenItemsEmptyTextBlock.Text = L("settings.launcher.hidden_empty", "No hidden items.");
|
LauncherHiddenItemsEmptyTextBlock.Text = L("settings.launcher.hidden_empty", "No hidden items.");
|
||||||
|
|
||||||
ApplyPluginSettingsLocalization();
|
ApplyPluginSettingsLocalization();
|
||||||
|
ApplyPluginMarketSettingsLocalization();
|
||||||
|
|
||||||
AboutPanelTitleTextBlock.Text = L("settings.about.title", "About");
|
AboutPanelTitleTextBlock.Text = L("settings.about.title", "About");
|
||||||
VersionTextBlock.Text = Lf("settings.about.version_format", "Version: {0}", GetAppVersionText());
|
VersionTextBlock.Text = Lf("settings.about.version_format", "Version: {0}", GetAppVersionText());
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ using System.Threading.Tasks;
|
|||||||
using Avalonia.Interactivity;
|
using Avalonia.Interactivity;
|
||||||
using Avalonia.Threading;
|
using Avalonia.Threading;
|
||||||
using FluentAvalonia.UI.Controls;
|
using FluentAvalonia.UI.Controls;
|
||||||
|
using LanMountainDesktop.PluginSdk;
|
||||||
using LanMountainDesktop.Services;
|
using LanMountainDesktop.Services;
|
||||||
|
|
||||||
namespace LanMountainDesktop.Views;
|
namespace LanMountainDesktop.Views;
|
||||||
@@ -77,7 +78,9 @@ public partial class SettingsWindow
|
|||||||
var result = await dialog.ShowAsync(this);
|
var result = await dialog.ShowAsync(this);
|
||||||
if (result == ContentDialogResult.Primary)
|
if (result == ContentDialogResult.Primary)
|
||||||
{
|
{
|
||||||
if (!AppRestartService.TryRestartApplication())
|
if (App.CurrentHostApplicationLifecycle?.TryRestart(new HostApplicationLifecycleRequest(
|
||||||
|
Source: nameof(SettingsWindow),
|
||||||
|
Reason: "User confirmed a pending restart prompt from settings.")) != true)
|
||||||
{
|
{
|
||||||
UpdatePendingRestartDock();
|
UpdatePendingRestartDock();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.ComponentModel;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Avalonia;
|
|
||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
using Avalonia.Controls.ApplicationLifetimes;
|
|
||||||
using Avalonia.Interactivity;
|
using Avalonia.Interactivity;
|
||||||
using Avalonia.Threading;
|
|
||||||
using LanMountainDesktop.Models;
|
using LanMountainDesktop.Models;
|
||||||
|
using LanMountainDesktop.PluginSdk;
|
||||||
using LanMountainDesktop.Services;
|
using LanMountainDesktop.Services;
|
||||||
|
|
||||||
namespace LanMountainDesktop.Views;
|
namespace LanMountainDesktop.Views;
|
||||||
@@ -250,23 +249,23 @@ public partial class SettingsWindow
|
|||||||
{
|
{
|
||||||
FileName = installerPath,
|
FileName = installerPath,
|
||||||
WorkingDirectory = Path.GetDirectoryName(installerPath) ?? Environment.CurrentDirectory,
|
WorkingDirectory = Path.GetDirectoryName(installerPath) ?? Environment.CurrentDirectory,
|
||||||
UseShellExecute = true
|
UseShellExecute = true,
|
||||||
|
Verb = "runas"
|
||||||
});
|
});
|
||||||
|
|
||||||
_updateStatusText = L("settings.update.status_installer_started", "Installer started. The app will close for update.");
|
_updateStatusText = L("settings.update.status_installer_started", "Installer started. The app will close for update.");
|
||||||
UpdateUpdatePanelState();
|
UpdateUpdatePanelState();
|
||||||
|
|
||||||
Dispatcher.UIThread.Post(() =>
|
_ = App.CurrentHostApplicationLifecycle?.TryExit(new HostApplicationLifecycleRequest(
|
||||||
{
|
Source: nameof(SettingsWindow),
|
||||||
if (Application.Current?.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
Reason: "Update installer started successfully from settings."));
|
||||||
{
|
}
|
||||||
desktop.Shutdown();
|
catch (Win32Exception ex) when (ex.NativeErrorCode == 1223)
|
||||||
}
|
{
|
||||||
else
|
_updateStatusText = L(
|
||||||
{
|
"settings.update.status_elevation_cancelled",
|
||||||
Close();
|
"Administrator permission was not granted. Update was cancelled.");
|
||||||
}
|
UpdateUpdatePanelState();
|
||||||
}, DispatcherPriority.Background);
|
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Avalonia;
|
using Avalonia;
|
||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
@@ -12,6 +13,7 @@ using Avalonia.Media.Imaging;
|
|||||||
using Avalonia.Platform;
|
using Avalonia.Platform;
|
||||||
using Avalonia.Styling;
|
using Avalonia.Styling;
|
||||||
using Avalonia.Platform.Storage;
|
using Avalonia.Platform.Storage;
|
||||||
|
using Avalonia.Threading;
|
||||||
using LanMountainDesktop.Services;
|
using LanMountainDesktop.Services;
|
||||||
using LanMountainDesktop.Theme;
|
using LanMountainDesktop.Theme;
|
||||||
using LibVLCSharp.Shared;
|
using LibVLCSharp.Shared;
|
||||||
@@ -157,7 +159,7 @@ public partial class SettingsWindow
|
|||||||
{
|
{
|
||||||
DesktopWallpaperLayer.Background = Brushes.Transparent;
|
DesktopWallpaperLayer.Background = Brushes.Transparent;
|
||||||
WallpaperPreviewViewport.Background = GetThemeDefaultDesktopBackground();
|
WallpaperPreviewViewport.Background = GetThemeDefaultDesktopBackground();
|
||||||
PlayVideoWallpaper(_wallpaperVideoPath);
|
SyncVideoWallpaperPreviewPlayback();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -175,6 +177,36 @@ public partial class SettingsWindow
|
|||||||
WallpaperPreviewViewport.Background = CreateWallpaperBrush(_wallpaperBitmap, placement, true);
|
WallpaperPreviewViewport.Background = CreateWallpaperBrush(_wallpaperBitmap, placement, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void SyncVideoWallpaperPreviewPlayback()
|
||||||
|
{
|
||||||
|
var shouldPlay =
|
||||||
|
_wallpaperMediaType == WallpaperMediaType.Video &&
|
||||||
|
!string.IsNullOrWhiteSpace(_wallpaperVideoPath) &&
|
||||||
|
WallpaperSettingsPanel.IsVisible;
|
||||||
|
|
||||||
|
if (!shouldPlay)
|
||||||
|
{
|
||||||
|
if (_previewVideoWallpaperPlayer?.IsPlaying == true)
|
||||||
|
{
|
||||||
|
StopPreviewVideoCapture(clearSnapshot: false);
|
||||||
|
}
|
||||||
|
|
||||||
|
WallpaperPreviewVideoImage.IsVisible = WallpaperPreviewVideoImage.Source is not null && WallpaperSettingsPanel.IsVisible;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (WallpaperPreviewVideoImage.Source is not null)
|
||||||
|
{
|
||||||
|
WallpaperPreviewVideoImage.IsVisible = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_previewVideoWallpaperMedia is null || _previewVideoSnapshotPending)
|
||||||
|
{
|
||||||
|
PlayVideoWallpaper(_wallpaperVideoPath!);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void UpdateWallpaperDisplay()
|
private void UpdateWallpaperDisplay()
|
||||||
{
|
{
|
||||||
WallpaperPathTextBlock.Text = string.IsNullOrWhiteSpace(_wallpaperPath)
|
WallpaperPathTextBlock.Text = string.IsNullOrWhiteSpace(_wallpaperPath)
|
||||||
@@ -417,11 +449,239 @@ public partial class SettingsWindow
|
|||||||
private void EnsureVideoWallpaperPlayers()
|
private void EnsureVideoWallpaperPlayers()
|
||||||
{
|
{
|
||||||
Core.Initialize();
|
Core.Initialize();
|
||||||
_libVlc ??= new LibVLC();
|
_libVlc ??= new LibVLC("--quiet");
|
||||||
_previewVideoWallpaperPlayer ??= new MediaPlayer(_libVlc);
|
if (_previewVideoWallpaperPlayer is null)
|
||||||
if (WallpaperPreviewVideoView is not null)
|
|
||||||
{
|
{
|
||||||
WallpaperPreviewVideoView.MediaPlayer = _previewVideoWallpaperPlayer;
|
_previewVideoWallpaperPlayer = new MediaPlayer(_libVlc)
|
||||||
|
{
|
||||||
|
EnableHardwareDecoding = false
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void EnsurePreviewVideoFrameRefreshTimer()
|
||||||
|
{
|
||||||
|
if (_previewVideoFrameRefreshTimer is not null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_previewVideoFrameRefreshTimer = new DispatcherTimer
|
||||||
|
{
|
||||||
|
Interval = TimeSpan.FromMilliseconds(33)
|
||||||
|
};
|
||||||
|
_previewVideoFrameRefreshTimer.Tick += OnPreviewVideoFrameRefreshTimerTick;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void StartPreviewVideoFrameRefreshTimer()
|
||||||
|
{
|
||||||
|
EnsurePreviewVideoFrameRefreshTimer();
|
||||||
|
if (_previewVideoFrameRefreshTimer?.IsEnabled == false)
|
||||||
|
{
|
||||||
|
_previewVideoFrameRefreshTimer.Start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void StopPreviewVideoFrameRefreshTimer()
|
||||||
|
{
|
||||||
|
if (_previewVideoFrameRefreshTimer?.IsEnabled == true)
|
||||||
|
{
|
||||||
|
_previewVideoFrameRefreshTimer.Stop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnPreviewVideoFrameRefreshTimerTick(object? sender, EventArgs e)
|
||||||
|
{
|
||||||
|
PushPreviewVideoFrameToWallpaperImage();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void StopPreviewVideoCapture(bool clearSnapshot)
|
||||||
|
{
|
||||||
|
WallpaperPreviewVideoImage.IsVisible = false;
|
||||||
|
_previewVideoWallpaperPlayer?.Stop();
|
||||||
|
StopPreviewVideoFrameRefreshTimer();
|
||||||
|
_previewVideoWallpaperMedia?.Dispose();
|
||||||
|
_previewVideoWallpaperMedia = null;
|
||||||
|
_previewVideoSnapshotPending = false;
|
||||||
|
|
||||||
|
if (clearSnapshot)
|
||||||
|
{
|
||||||
|
ReleasePreviewVideoRendererResources();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool ConfigurePreviewVideoRenderer()
|
||||||
|
{
|
||||||
|
if (_previewVideoWallpaperPlayer is null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var hostWidth = Math.Max(1, WallpaperPreviewViewport.Bounds.Width);
|
||||||
|
var hostHeight = Math.Max(1, WallpaperPreviewViewport.Bounds.Height);
|
||||||
|
var pixelWidth = Math.Max(1, (int)Math.Round(hostWidth * RenderScaling));
|
||||||
|
var pixelHeight = Math.Max(1, (int)Math.Round(hostHeight * RenderScaling));
|
||||||
|
const int maxPixelCount = 1280 * 720;
|
||||||
|
var pixelCount = (long)pixelWidth * pixelHeight;
|
||||||
|
if (pixelCount > maxPixelCount)
|
||||||
|
{
|
||||||
|
var scale = Math.Sqrt((double)maxPixelCount / pixelCount);
|
||||||
|
pixelWidth = Math.Max(1, (int)Math.Round(pixelWidth * scale));
|
||||||
|
pixelHeight = Math.Max(1, (int)Math.Round(pixelHeight * scale));
|
||||||
|
}
|
||||||
|
|
||||||
|
var pitch = pixelWidth * 4;
|
||||||
|
var bufferSize = pitch * pixelHeight;
|
||||||
|
if (bufferSize <= 0)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pixelWidth == _previewVideoFrameWidth &&
|
||||||
|
pixelHeight == _previewVideoFrameHeight &&
|
||||||
|
_previewVideoFrameBufferPtr != IntPtr.Zero &&
|
||||||
|
_previewVideoBitmap is not null)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
ReleasePreviewVideoRendererResources();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_previewVideoFrameWidth = pixelWidth;
|
||||||
|
_previewVideoFrameHeight = pixelHeight;
|
||||||
|
_previewVideoFramePitch = pitch;
|
||||||
|
_previewVideoFrameBufferSize = bufferSize;
|
||||||
|
_previewVideoFrameBufferPtr = Marshal.AllocHGlobal(_previewVideoFrameBufferSize);
|
||||||
|
_previewVideoStagingBuffer = new byte[_previewVideoFrameBufferSize];
|
||||||
|
_previewVideoBitmap = new WriteableBitmap(
|
||||||
|
new PixelSize(_previewVideoFrameWidth, _previewVideoFrameHeight),
|
||||||
|
new Vector(96, 96),
|
||||||
|
PixelFormat.Bgra8888,
|
||||||
|
AlphaFormat.Opaque);
|
||||||
|
EnsurePreviewVideoCallbacks();
|
||||||
|
_previewVideoWallpaperPlayer.SetVideoCallbacks(
|
||||||
|
_previewVideoLockCallback!,
|
||||||
|
_previewVideoUnlockCallback!,
|
||||||
|
_previewVideoDisplayCallback!);
|
||||||
|
_previewVideoWallpaperPlayer.SetVideoFormat(
|
||||||
|
"RV32",
|
||||||
|
(uint)_previewVideoFrameWidth,
|
||||||
|
(uint)_previewVideoFrameHeight,
|
||||||
|
(uint)_previewVideoFramePitch);
|
||||||
|
WallpaperPreviewVideoImage.Source = _previewVideoBitmap;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
ReleasePreviewVideoRendererResources();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void EnsurePreviewVideoCallbacks()
|
||||||
|
{
|
||||||
|
_previewVideoLockCallback ??= OnPreviewVideoFrameLock;
|
||||||
|
_previewVideoUnlockCallback ??= OnPreviewVideoFrameUnlock;
|
||||||
|
_previewVideoDisplayCallback ??= OnPreviewVideoFrameDisplay;
|
||||||
|
}
|
||||||
|
|
||||||
|
private IntPtr OnPreviewVideoFrameLock(IntPtr opaque, IntPtr planes)
|
||||||
|
{
|
||||||
|
Monitor.Enter(_previewVideoFrameSync);
|
||||||
|
if (_previewVideoFrameBufferPtr == IntPtr.Zero)
|
||||||
|
{
|
||||||
|
Marshal.WriteIntPtr(planes, IntPtr.Zero);
|
||||||
|
Monitor.Exit(_previewVideoFrameSync);
|
||||||
|
return IntPtr.Zero;
|
||||||
|
}
|
||||||
|
|
||||||
|
Marshal.WriteIntPtr(planes, _previewVideoFrameBufferPtr);
|
||||||
|
return IntPtr.Zero;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnPreviewVideoFrameUnlock(IntPtr opaque, IntPtr picture, IntPtr planes)
|
||||||
|
{
|
||||||
|
if (Monitor.IsEntered(_previewVideoFrameSync))
|
||||||
|
{
|
||||||
|
Monitor.Exit(_previewVideoFrameSync);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnPreviewVideoFrameDisplay(IntPtr opaque, IntPtr picture)
|
||||||
|
{
|
||||||
|
Interlocked.Exchange(ref _previewVideoFrameDirtyFlag, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void PushPreviewVideoFrameToWallpaperImage()
|
||||||
|
{
|
||||||
|
if (Interlocked.Exchange(ref _previewVideoFrameDirtyFlag, 0) == 0)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_previewVideoBitmap is null ||
|
||||||
|
_previewVideoStagingBuffer is null ||
|
||||||
|
_previewVideoFrameBufferPtr == IntPtr.Zero ||
|
||||||
|
_previewVideoFrameBufferSize <= 0)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
lock (_previewVideoFrameSync)
|
||||||
|
{
|
||||||
|
if (_previewVideoFrameBufferPtr == IntPtr.Zero)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Marshal.Copy(_previewVideoFrameBufferPtr, _previewVideoStagingBuffer, 0, _previewVideoFrameBufferSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
using var framebuffer = _previewVideoBitmap.Lock();
|
||||||
|
var rows = Math.Min(framebuffer.Size.Height, _previewVideoFrameHeight);
|
||||||
|
var bytesPerRow = Math.Min(framebuffer.RowBytes, _previewVideoFramePitch);
|
||||||
|
for (var row = 0; row < rows; row++)
|
||||||
|
{
|
||||||
|
var sourceOffset = row * _previewVideoFramePitch;
|
||||||
|
var destinationPtr = IntPtr.Add(framebuffer.Address, row * framebuffer.RowBytes);
|
||||||
|
Marshal.Copy(_previewVideoStagingBuffer, sourceOffset, destinationPtr, bytesPerRow);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!ReferenceEquals(WallpaperPreviewVideoImage.Source, _previewVideoBitmap))
|
||||||
|
{
|
||||||
|
WallpaperPreviewVideoImage.Source = _previewVideoBitmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_previewVideoSnapshotPending)
|
||||||
|
{
|
||||||
|
_previewVideoSnapshotPending = false;
|
||||||
|
WallpaperPreviewVideoImage.IsVisible = WallpaperSettingsPanel.IsVisible;
|
||||||
|
StopPreviewVideoCapture(clearSnapshot: false);
|
||||||
|
WallpaperPreviewVideoImage.IsVisible = WallpaperSettingsPanel.IsVisible;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ReleasePreviewVideoRendererResources()
|
||||||
|
{
|
||||||
|
Interlocked.Exchange(ref _previewVideoFrameDirtyFlag, 0);
|
||||||
|
WallpaperPreviewVideoImage.Source = null;
|
||||||
|
_previewVideoBitmap?.Dispose();
|
||||||
|
_previewVideoBitmap = null;
|
||||||
|
_previewVideoStagingBuffer = null;
|
||||||
|
_previewVideoFrameWidth = 0;
|
||||||
|
_previewVideoFrameHeight = 0;
|
||||||
|
_previewVideoFramePitch = 0;
|
||||||
|
_previewVideoFrameBufferSize = 0;
|
||||||
|
|
||||||
|
lock (_previewVideoFrameSync)
|
||||||
|
{
|
||||||
|
if (_previewVideoFrameBufferPtr != IntPtr.Zero)
|
||||||
|
{
|
||||||
|
Marshal.FreeHGlobal(_previewVideoFrameBufferPtr);
|
||||||
|
_previewVideoFrameBufferPtr = IntPtr.Zero;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -437,7 +697,14 @@ public partial class SettingsWindow
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
EnsureVideoWallpaperPlayers();
|
EnsureVideoWallpaperPlayers();
|
||||||
if (_previewVideoWallpaperPlayer is null || _libVlc is null || WallpaperPreviewVideoView is null)
|
if (_previewVideoWallpaperPlayer is null || _libVlc is null)
|
||||||
|
{
|
||||||
|
_wallpaperStatus = L("settings.wallpaper.video_player_unavailable", "Video player is unavailable.");
|
||||||
|
StopVideoWallpaper();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!ConfigurePreviewVideoRenderer())
|
||||||
{
|
{
|
||||||
_wallpaperStatus = L("settings.wallpaper.video_player_unavailable", "Video player is unavailable.");
|
_wallpaperStatus = L("settings.wallpaper.video_player_unavailable", "Video player is unavailable.");
|
||||||
StopVideoWallpaper();
|
StopVideoWallpaper();
|
||||||
@@ -447,8 +714,10 @@ public partial class SettingsWindow
|
|||||||
_previewVideoWallpaperMedia?.Dispose();
|
_previewVideoWallpaperMedia?.Dispose();
|
||||||
_previewVideoWallpaperMedia = new Media(_libVlc, new Uri(videoPath));
|
_previewVideoWallpaperMedia = new Media(_libVlc, new Uri(videoPath));
|
||||||
_previewVideoWallpaperMedia.AddOption(":input-repeat=65535");
|
_previewVideoWallpaperMedia.AddOption(":input-repeat=65535");
|
||||||
|
_previewVideoSnapshotPending = true;
|
||||||
|
WallpaperPreviewVideoImage.IsVisible = false;
|
||||||
_previewVideoWallpaperPlayer.Play(_previewVideoWallpaperMedia);
|
_previewVideoWallpaperPlayer.Play(_previewVideoWallpaperMedia);
|
||||||
WallpaperPreviewVideoView.IsVisible = true;
|
StartPreviewVideoFrameRefreshTimer();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
@@ -459,14 +728,7 @@ public partial class SettingsWindow
|
|||||||
|
|
||||||
private void StopVideoWallpaper()
|
private void StopVideoWallpaper()
|
||||||
{
|
{
|
||||||
if (WallpaperPreviewVideoView is not null)
|
StopPreviewVideoCapture(clearSnapshot: true);
|
||||||
{
|
|
||||||
WallpaperPreviewVideoView.IsVisible = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
_previewVideoWallpaperPlayer?.Stop();
|
|
||||||
_previewVideoWallpaperMedia?.Dispose();
|
|
||||||
_previewVideoWallpaperMedia = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnRecommendedColorClick(object? sender, RoutedEventArgs e)
|
private void OnRecommendedColorClick(object? sender, RoutedEventArgs e)
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ using Avalonia.Layout;
|
|||||||
using Avalonia.Media;
|
using Avalonia.Media;
|
||||||
using Avalonia.Media.Imaging;
|
using Avalonia.Media.Imaging;
|
||||||
using Avalonia.Threading;
|
using Avalonia.Threading;
|
||||||
|
using FluentAvalonia.UI.Controls;
|
||||||
using FluentIcons.Common;
|
using FluentIcons.Common;
|
||||||
using LanMountainDesktop.Models;
|
using LanMountainDesktop.Models;
|
||||||
using LanMountainDesktop.Services;
|
using LanMountainDesktop.Services;
|
||||||
@@ -626,18 +627,18 @@ public partial class SettingsWindow
|
|||||||
return string.Create(CultureInfo.InvariantCulture, $"{temperatureC:0.#}°C");
|
return string.Create(CultureInfo.InvariantCulture, $"{temperatureC:0.#}°C");
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Symbol ResolveWeatherPreviewSymbol(int? weatherCode, bool isNight)
|
private static FluentIcons.Common.Symbol ResolveWeatherPreviewSymbol(int? weatherCode, bool isNight)
|
||||||
{
|
{
|
||||||
return weatherCode switch
|
return weatherCode switch
|
||||||
{
|
{
|
||||||
0 => isNight ? Symbol.WeatherMoon : Symbol.WeatherSunny,
|
0 => isNight ? FluentIcons.Common.Symbol.WeatherMoon : FluentIcons.Common.Symbol.WeatherSunny,
|
||||||
1 or 2 => isNight ? Symbol.WeatherPartlyCloudyNight : Symbol.WeatherPartlyCloudyDay,
|
1 or 2 => isNight ? FluentIcons.Common.Symbol.WeatherPartlyCloudyNight : FluentIcons.Common.Symbol.WeatherPartlyCloudyDay,
|
||||||
3 or 7 => Symbol.WeatherRainShowersDay,
|
3 or 7 => FluentIcons.Common.Symbol.WeatherRainShowersDay,
|
||||||
8 or 9 => Symbol.WeatherRain,
|
8 or 9 => FluentIcons.Common.Symbol.WeatherRain,
|
||||||
4 => Symbol.WeatherThunderstorm,
|
4 => FluentIcons.Common.Symbol.WeatherThunderstorm,
|
||||||
13 or 14 or 15 or 16 => Symbol.WeatherSnow,
|
13 or 14 or 15 or 16 => FluentIcons.Common.Symbol.WeatherSnow,
|
||||||
18 or 32 => Symbol.WeatherFog,
|
18 or 32 => FluentIcons.Common.Symbol.WeatherFog,
|
||||||
_ => isNight ? Symbol.WeatherPartlyCloudyNight : Symbol.WeatherPartlyCloudyDay
|
_ => isNight ? FluentIcons.Common.Symbol.WeatherPartlyCloudyNight : FluentIcons.Common.Symbol.WeatherPartlyCloudyDay
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -782,7 +783,7 @@ public partial class SettingsWindow
|
|||||||
|
|
||||||
private void RenderLauncherHiddenItemsList()
|
private void RenderLauncherHiddenItemsList()
|
||||||
{
|
{
|
||||||
LauncherHiddenItemsListPanel.Children.Clear();
|
LauncherHiddenItemsSettingsExpander.Items.Clear();
|
||||||
var hiddenItems = BuildLauncherHiddenItems();
|
var hiddenItems = BuildLauncherHiddenItems();
|
||||||
LauncherHiddenItemsEmptyTextBlock.IsVisible = hiddenItems.Count == 0;
|
LauncherHiddenItemsEmptyTextBlock.IsVisible = hiddenItems.Count == 0;
|
||||||
if (hiddenItems.Count == 0)
|
if (hiddenItems.Count == 0)
|
||||||
@@ -792,7 +793,7 @@ public partial class SettingsWindow
|
|||||||
|
|
||||||
foreach (var hiddenItem in hiddenItems)
|
foreach (var hiddenItem in hiddenItems)
|
||||||
{
|
{
|
||||||
LauncherHiddenItemsListPanel.Children.Add(CreateLauncherHiddenItemRow(hiddenItem));
|
LauncherHiddenItemsSettingsExpander.Items.Add(CreateLauncherHiddenItemRow(hiddenItem));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -864,82 +865,58 @@ public partial class SettingsWindow
|
|||||||
return string.IsNullOrWhiteSpace(fileName) ? key : fileName;
|
return string.IsNullOrWhiteSpace(fileName) ? key : fileName;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Control CreateLauncherHiddenItemRow(LauncherHiddenItemView hiddenItem)
|
private SettingsExpanderItem CreateLauncherHiddenItemRow(LauncherHiddenItemView hiddenItem)
|
||||||
{
|
{
|
||||||
Control icon = hiddenItem.IconBitmap is not null
|
|
||||||
? new Image
|
|
||||||
{
|
|
||||||
Source = hiddenItem.IconBitmap,
|
|
||||||
Width = 24,
|
|
||||||
Height = 24,
|
|
||||||
Stretch = Stretch.Uniform
|
|
||||||
}
|
|
||||||
: new Border
|
|
||||||
{
|
|
||||||
Width = 24,
|
|
||||||
Height = 24,
|
|
||||||
CornerRadius = new CornerRadius(999),
|
|
||||||
Background = GetThemeBrush("AdaptiveButtonBackgroundBrush"),
|
|
||||||
Child = new TextBlock
|
|
||||||
{
|
|
||||||
Text = hiddenItem.Monogram,
|
|
||||||
FontSize = 10,
|
|
||||||
FontWeight = FontWeight.Bold,
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Center,
|
|
||||||
VerticalAlignment = VerticalAlignment.Center
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var typeText = hiddenItem.Kind == LauncherEntryKind.Folder
|
var typeText = hiddenItem.Kind == LauncherEntryKind.Folder
|
||||||
? L("settings.launcher.hidden_type_folder", "Folder")
|
? L("settings.launcher.hidden_type_folder", "Folder")
|
||||||
: L("settings.launcher.hidden_type_shortcut", "Shortcut");
|
: L("settings.launcher.hidden_type_shortcut", "Shortcut");
|
||||||
|
|
||||||
var infoPanel = new StackPanel
|
|
||||||
{
|
|
||||||
Orientation = Orientation.Horizontal,
|
|
||||||
Spacing = 10,
|
|
||||||
VerticalAlignment = VerticalAlignment.Center,
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Stretch
|
|
||||||
};
|
|
||||||
infoPanel.Children.Add(icon);
|
|
||||||
infoPanel.Children.Add(new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 2,
|
|
||||||
VerticalAlignment = VerticalAlignment.Center,
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Left,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
new TextBlock { Text = hiddenItem.DisplayName, TextTrimming = TextTrimming.CharacterEllipsis, MaxLines = 1 },
|
|
||||||
new TextBlock { Text = typeText, FontSize = 11, Opacity = 0.7 }
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
var restoreButton = new Button
|
var restoreButton = new Button
|
||||||
{
|
{
|
||||||
Content = L("settings.launcher.restore_button", "Show Again"),
|
Width = 36,
|
||||||
MinWidth = 110,
|
Height = 36,
|
||||||
Padding = new Thickness(12, 6),
|
Padding = new Thickness(0),
|
||||||
|
Background = Brushes.Transparent,
|
||||||
|
BorderThickness = new Thickness(0),
|
||||||
Tag = new LauncherHiddenItemToken(hiddenItem.Kind, hiddenItem.Key)
|
Tag = new LauncherHiddenItemToken(hiddenItem.Kind, hiddenItem.Key)
|
||||||
};
|
};
|
||||||
|
restoreButton.Content = new FluentIcons.Avalonia.Fluent.SymbolIcon
|
||||||
|
{
|
||||||
|
Symbol = FluentIcons.Common.Symbol.Eye,
|
||||||
|
IconVariant = FluentIcons.Common.IconVariant.Regular,
|
||||||
|
FontSize = 18,
|
||||||
|
HorizontalAlignment = HorizontalAlignment.Center,
|
||||||
|
VerticalAlignment = VerticalAlignment.Center
|
||||||
|
};
|
||||||
|
ToolTip.SetTip(restoreButton, L("settings.launcher.restore_button", "Unhide"));
|
||||||
restoreButton.Click += OnRestoreLauncherHiddenItemClick;
|
restoreButton.Click += OnRestoreLauncherHiddenItemClick;
|
||||||
|
|
||||||
var row = new Grid
|
return new SettingsExpanderItem
|
||||||
{
|
{
|
||||||
ColumnDefinitions = new ColumnDefinitions("*,Auto"),
|
Content = hiddenItem.DisplayName,
|
||||||
ColumnSpacing = 10
|
Description = typeText,
|
||||||
|
IconSource = CreateLauncherHiddenItemIconSource(hiddenItem),
|
||||||
|
IsClickEnabled = false,
|
||||||
|
Footer = restoreButton
|
||||||
};
|
};
|
||||||
row.Children.Add(infoPanel);
|
}
|
||||||
Grid.SetColumn(infoPanel, 0);
|
|
||||||
row.Children.Add(restoreButton);
|
|
||||||
Grid.SetColumn(restoreButton, 1);
|
|
||||||
|
|
||||||
return new Border
|
private IconSource CreateLauncherHiddenItemIconSource(LauncherHiddenItemView hiddenItem)
|
||||||
|
{
|
||||||
|
if (hiddenItem.IconBitmap is not null)
|
||||||
{
|
{
|
||||||
Classes = { "glass-panel" },
|
return new ImageIconSource
|
||||||
BorderThickness = new Thickness(0),
|
{
|
||||||
CornerRadius = new CornerRadius(14),
|
Source = hiddenItem.IconBitmap
|
||||||
Padding = new Thickness(10, 8),
|
};
|
||||||
Child = row
|
}
|
||||||
|
|
||||||
|
return new FluentIcons.Avalonia.Fluent.SymbolIconSource
|
||||||
|
{
|
||||||
|
Symbol = hiddenItem.Kind == LauncherEntryKind.Folder
|
||||||
|
? FluentIcons.Common.Symbol.Folder
|
||||||
|
: FluentIcons.Common.Symbol.Apps,
|
||||||
|
IconVariant = FluentIcons.Common.IconVariant.Regular
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -253,6 +253,7 @@
|
|||||||
<pages:LauncherSettingsPage x:Name="LauncherSettingsPanel" IsVisible="False" />
|
<pages:LauncherSettingsPage x:Name="LauncherSettingsPanel" IsVisible="False" />
|
||||||
<pages:AboutSettingsPage x:Name="AboutSettingsPanel" IsVisible="False" />
|
<pages:AboutSettingsPage x:Name="AboutSettingsPanel" IsVisible="False" />
|
||||||
<pages:PluginSettingsPage x:Name="PluginSettingsPanel" IsVisible="False" />
|
<pages:PluginSettingsPage x:Name="PluginSettingsPanel" IsVisible="False" />
|
||||||
|
<pages:PluginMarketSettingsPage x:Name="PluginMarketSettingsPanel" IsVisible="False" />
|
||||||
</Grid>
|
</Grid>
|
||||||
</ScrollViewer>
|
</ScrollViewer>
|
||||||
</Border>
|
</Border>
|
||||||
|
|||||||
@@ -129,6 +129,20 @@ public partial class SettingsWindow : Window
|
|||||||
private MediaPlayer? _previewVideoWallpaperPlayer;
|
private MediaPlayer? _previewVideoWallpaperPlayer;
|
||||||
private Media? _previewVideoWallpaperMedia;
|
private Media? _previewVideoWallpaperMedia;
|
||||||
private LibVLC? _libVlc;
|
private LibVLC? _libVlc;
|
||||||
|
private readonly object _previewVideoFrameSync = new();
|
||||||
|
private MediaPlayer.LibVLCVideoLockCb? _previewVideoLockCallback;
|
||||||
|
private MediaPlayer.LibVLCVideoUnlockCb? _previewVideoUnlockCallback;
|
||||||
|
private MediaPlayer.LibVLCVideoDisplayCb? _previewVideoDisplayCallback;
|
||||||
|
private DispatcherTimer? _previewVideoFrameRefreshTimer;
|
||||||
|
private IntPtr _previewVideoFrameBufferPtr;
|
||||||
|
private byte[]? _previewVideoStagingBuffer;
|
||||||
|
private WriteableBitmap? _previewVideoBitmap;
|
||||||
|
private int _previewVideoFrameWidth;
|
||||||
|
private int _previewVideoFrameHeight;
|
||||||
|
private int _previewVideoFramePitch;
|
||||||
|
private int _previewVideoFrameBufferSize;
|
||||||
|
private int _previewVideoFrameDirtyFlag;
|
||||||
|
private bool _previewVideoSnapshotPending;
|
||||||
private string? _wallpaperPath;
|
private string? _wallpaperPath;
|
||||||
private string _wallpaperStatus = "Current background uses solid color.";
|
private string _wallpaperStatus = "Current background uses solid color.";
|
||||||
private IReadOnlyList<Color> _recommendedColors = Array.Empty<Color>();
|
private IReadOnlyList<Color> _recommendedColors = Array.Empty<Color>();
|
||||||
|
|||||||
418
LanMountainDesktop/installer/ChineseSimplified.isl
Normal file
418
LanMountainDesktop/installer/ChineseSimplified.isl
Normal file
@@ -0,0 +1,418 @@
|
|||||||
|
; *** Inno Setup version 6.5.0+ Chinese Simplified messages ***
|
||||||
|
;
|
||||||
|
; To download user-contributed translations of this file, go to:
|
||||||
|
; https://jrsoftware.org/files/istrans/
|
||||||
|
;
|
||||||
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
|
; messages that didn't have them already, because on those messages Inno
|
||||||
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
|
; two periods being displayed).
|
||||||
|
;
|
||||||
|
; Maintained by Zhenghan Yang
|
||||||
|
; Email: 847320916@QQ.com
|
||||||
|
; Translation based on network resource
|
||||||
|
; The latest Translation is on https://github.com/kira-96/Inno-Setup-Chinese-Simplified-Translation
|
||||||
|
;
|
||||||
|
|
||||||
|
[LangOptions]
|
||||||
|
; The following three entries are very important. Be sure to read and
|
||||||
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
|
LanguageName=简体中文
|
||||||
|
; If Language Name display incorrect, uncomment next line
|
||||||
|
; LanguageName=<7B80><4F53><4E2D><6587>
|
||||||
|
; About LanguageID, to reference link:
|
||||||
|
; https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-lcid/a9eac961-e77d-41a6-90a5-ce1a8b0cdb9c
|
||||||
|
LanguageID=$0804
|
||||||
|
; About CodePage, to reference link:
|
||||||
|
; https://docs.microsoft.com/en-us/windows/win32/intl/code-page-identifiers
|
||||||
|
LanguageCodePage=936
|
||||||
|
; If the language you are translating to requires special font faces or
|
||||||
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
|
;DialogFontName=
|
||||||
|
;DialogFontSize=9
|
||||||
|
;DialogFontBaseScaleWidth=7
|
||||||
|
;DialogFontBaseScaleHeight=15
|
||||||
|
;WelcomeFontName=Segoe UI
|
||||||
|
;WelcomeFontSize=14
|
||||||
|
|
||||||
|
[Messages]
|
||||||
|
|
||||||
|
; *** 应用程序标题
|
||||||
|
SetupAppTitle=安装
|
||||||
|
SetupWindowTitle=安装 - %1
|
||||||
|
UninstallAppTitle=卸载
|
||||||
|
UninstallAppFullTitle=%1 卸载
|
||||||
|
|
||||||
|
; *** Misc. common
|
||||||
|
InformationTitle=信息
|
||||||
|
ConfirmTitle=确认
|
||||||
|
ErrorTitle=错误
|
||||||
|
|
||||||
|
; *** SetupLdr messages
|
||||||
|
SetupLdrStartupMessage=现在将安装 %1。您想要继续吗?
|
||||||
|
LdrCannotCreateTemp=无法创建临时文件。安装程序已中止
|
||||||
|
LdrCannotExecTemp=无法执行临时目录中的文件。安装程序已中止
|
||||||
|
HelpTextNote=
|
||||||
|
|
||||||
|
; *** 启动错误消息
|
||||||
|
LastErrorMessage=%1。%n%n错误 %2: %3
|
||||||
|
SetupFileMissing=安装目录中缺少文件 %1。请修正这个问题或者获取程序的新副本。
|
||||||
|
SetupFileCorrupt=安装文件已损坏。请获取程序的新副本。
|
||||||
|
SetupFileCorruptOrWrongVer=安装文件已损坏,或是与这个安装程序的版本不兼容。请修正这个问题或获取新的程序副本。
|
||||||
|
InvalidParameter=无效的命令行参数:%n%n%1
|
||||||
|
SetupAlreadyRunning=安装程序正在运行。
|
||||||
|
WindowsVersionNotSupported=此程序不支持当前计算机运行的 Windows 版本。
|
||||||
|
WindowsServicePackRequired=此程序需要 %1 服务包 %2 或更高版本。
|
||||||
|
NotOnThisPlatform=此程序不能在 %1 上运行。
|
||||||
|
OnlyOnThisPlatform=此程序只能在 %1 上运行。
|
||||||
|
OnlyOnTheseArchitectures=此程序只能安装到为下列处理器架构设计的 Windows 版本中:%n%n%1
|
||||||
|
WinVersionTooLowError=此程序需要 %1 版本 %2 或更高。
|
||||||
|
WinVersionTooHighError=此程序不能安装于 %1 版本 %2 或更高。
|
||||||
|
AdminPrivilegesRequired=在安装此程序时您必须以管理员身份登录。
|
||||||
|
PowerUserPrivilegesRequired=在安装此程序时您必须以管理员身份或有权限的用户组身份登录。
|
||||||
|
SetupAppRunningError=安装程序发现 %1 当前正在运行。%n%n请先关闭正在运行的程序,然后点击“确定”继续,或点击“取消”退出。
|
||||||
|
UninstallAppRunningError=卸载程序发现 %1 当前正在运行。%n%n请先关闭正在运行的程序,然后点击“确定”继续,或点击“取消”退出。
|
||||||
|
|
||||||
|
; *** 启动问题
|
||||||
|
PrivilegesRequiredOverrideTitle=选择安装程序模式
|
||||||
|
PrivilegesRequiredOverrideInstruction=选择安装模式
|
||||||
|
PrivilegesRequiredOverrideText1=%1 可以为所有用户安装(需要管理员权限),或仅为您安装。
|
||||||
|
PrivilegesRequiredOverrideText2=%1 可以仅为您安装,或为所有用户安装(需要管理员权限)。
|
||||||
|
PrivilegesRequiredOverrideAllUsers=为所有用户安装(&A)
|
||||||
|
PrivilegesRequiredOverrideAllUsersRecommended=为所有用户安装(&A) (建议选项)
|
||||||
|
PrivilegesRequiredOverrideCurrentUser=仅为我安装(&M)
|
||||||
|
PrivilegesRequiredOverrideCurrentUserRecommended=仅为我安装(&M) (建议选项)
|
||||||
|
|
||||||
|
; *** 其他错误
|
||||||
|
ErrorCreatingDir=安装程序无法创建目录“%1”
|
||||||
|
ErrorTooManyFilesInDir=无法在目录“%1”中创建文件,因为里面包含太多文件
|
||||||
|
|
||||||
|
; *** 安装程序公共消息
|
||||||
|
ExitSetupTitle=退出安装程序
|
||||||
|
ExitSetupMessage=安装程序尚未完成。如果现在退出,将不会安装该程序。%n%n您之后可以再次运行安装程序完成安装。%n%n现在退出安装程序吗?
|
||||||
|
AboutSetupMenuItem=关于安装程序(&A)...
|
||||||
|
AboutSetupTitle=关于安装程序
|
||||||
|
AboutSetupMessage=%1 版本 %2%n%3%n%n%1 主页:%n%4
|
||||||
|
AboutSetupNote=
|
||||||
|
TranslatorNote=简体中文翻译由Kira(847320916@qq.com)维护。项目地址:https://github.com/kira-96/Inno-Setup-Chinese-Simplified-Translation
|
||||||
|
|
||||||
|
; *** 按钮
|
||||||
|
ButtonBack=< 上一步(&B)
|
||||||
|
ButtonNext=下一步(&N) >
|
||||||
|
ButtonInstall=安装(&I)
|
||||||
|
ButtonOK=确定
|
||||||
|
ButtonCancel=取消
|
||||||
|
ButtonYes=是(&Y)
|
||||||
|
ButtonYesToAll=全是(&A)
|
||||||
|
ButtonNo=否(&N)
|
||||||
|
ButtonNoToAll=全否(&O)
|
||||||
|
ButtonFinish=完成(&F)
|
||||||
|
ButtonBrowse=浏览(&B)...
|
||||||
|
ButtonWizardBrowse=浏览(&R)...
|
||||||
|
ButtonNewFolder=新建文件夹(&M)
|
||||||
|
|
||||||
|
; *** “选择语言”对话框消息
|
||||||
|
SelectLanguageTitle=选择安装语言
|
||||||
|
SelectLanguageLabel=选择安装时使用的语言。
|
||||||
|
|
||||||
|
; *** 公共向导文字
|
||||||
|
ClickNext=点击“下一步”继续,或点击“取消”退出安装程序。
|
||||||
|
BeveledLabel=
|
||||||
|
BrowseDialogTitle=浏览文件夹
|
||||||
|
BrowseDialogLabel=在下面的列表中选择一个文件夹,然后点击“确定”。
|
||||||
|
NewFolderName=新建文件夹
|
||||||
|
|
||||||
|
; *** “欢迎”向导页
|
||||||
|
WelcomeLabel1=欢迎使用 [name] 安装向导
|
||||||
|
WelcomeLabel2=现在将安装 [name/ver] 到您的电脑中。%n%n建议您在继续安装前关闭所有其他应用程序。
|
||||||
|
|
||||||
|
; *** “密码”向导页
|
||||||
|
WizardPassword=密码
|
||||||
|
PasswordLabel1=这个安装程序有密码保护。
|
||||||
|
PasswordLabel3=请输入密码,然后点击“下一步”继续。密码区分大小写。
|
||||||
|
PasswordEditLabel=密码(&P):
|
||||||
|
IncorrectPassword=您输入的密码不正确,请重新输入。
|
||||||
|
|
||||||
|
; *** “许可协议”向导页
|
||||||
|
WizardLicense=许可协议
|
||||||
|
LicenseLabel=请在继续安装前阅读以下重要信息。
|
||||||
|
LicenseLabel3=请仔细阅读下列许可协议。在继续安装前您必须同意这些协议条款。
|
||||||
|
LicenseAccepted=我同意此协议(&A)
|
||||||
|
LicenseNotAccepted=我不同意此协议(&D)
|
||||||
|
|
||||||
|
; *** “信息”向导页
|
||||||
|
WizardInfoBefore=信息
|
||||||
|
InfoBeforeLabel=请在继续安装前阅读以下重要信息。
|
||||||
|
InfoBeforeClickLabel=准备好继续安装后,点击“下一步”。
|
||||||
|
WizardInfoAfter=信息
|
||||||
|
InfoAfterLabel=请在继续安装前阅读以下重要信息。
|
||||||
|
InfoAfterClickLabel=准备好继续安装后,点击“下一步”。
|
||||||
|
|
||||||
|
; *** “用户信息”向导页
|
||||||
|
WizardUserInfo=用户信息
|
||||||
|
UserInfoDesc=请输入您的信息。
|
||||||
|
UserInfoName=用户名(&U):
|
||||||
|
UserInfoOrg=组织(&O):
|
||||||
|
UserInfoSerial=序列号(&S):
|
||||||
|
UserInfoNameRequired=您必须输入用户名。
|
||||||
|
|
||||||
|
; *** “选择目标目录”向导页
|
||||||
|
WizardSelectDir=选择目标位置
|
||||||
|
SelectDirDesc=您想将 [name] 安装在哪里?
|
||||||
|
SelectDirLabel3=安装程序将安装 [name] 到下面的文件夹中。
|
||||||
|
SelectDirBrowseLabel=点击“下一步”继续。如果您想选择其他文件夹,点击“浏览”。
|
||||||
|
DiskSpaceGBLabel=至少需要有 [gb] GB 的可用磁盘空间。
|
||||||
|
DiskSpaceMBLabel=至少需要有 [mb] MB 的可用磁盘空间。
|
||||||
|
CannotInstallToNetworkDrive=安装程序无法安装到一个网络驱动器。
|
||||||
|
CannotInstallToUNCPath=安装程序无法安装到一个 UNC 路径。
|
||||||
|
InvalidPath=您必须输入一个带驱动器卷标的完整路径,例如:%n%nC:\APP%n%n或UNC路径:%n%n\\server\share
|
||||||
|
InvalidDrive=您选定的驱动器或 UNC 共享不存在或不能访问。请选择其他位置。
|
||||||
|
DiskSpaceWarningTitle=磁盘空间不足
|
||||||
|
DiskSpaceWarning=安装程序至少需要 %1 KB 的可用空间才能安装,但选定驱动器只有 %2 KB 的可用空间。%n%n您一定要继续吗?
|
||||||
|
DirNameTooLong=文件夹名称或路径太长。
|
||||||
|
InvalidDirName=文件夹名称无效。
|
||||||
|
BadDirName32=文件夹名称不能包含下列任何字符:%n%n%1
|
||||||
|
DirExistsTitle=文件夹已存在
|
||||||
|
DirExists=文件夹:%n%n%1%n%n已经存在。您一定要安装到这个文件夹中吗?
|
||||||
|
DirDoesntExistTitle=文件夹不存在
|
||||||
|
DirDoesntExist=文件夹:%n%n%1%n%n不存在。您想要创建此文件夹吗?
|
||||||
|
|
||||||
|
; *** “选择组件”向导页
|
||||||
|
WizardSelectComponents=选择组件
|
||||||
|
SelectComponentsDesc=您想安装哪些程序组件?
|
||||||
|
SelectComponentsLabel2=选中您想安装的组件;取消您不想安装的组件。然后点击“下一步”继续。
|
||||||
|
FullInstallation=完全安装
|
||||||
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
|
CompactInstallation=简洁安装
|
||||||
|
CustomInstallation=自定义安装
|
||||||
|
NoUninstallWarningTitle=组件已存在
|
||||||
|
NoUninstallWarning=安装程序检测到下列组件已安装在您的电脑中:%n%n%1%n%n取消选中这些组件不会卸载它们。%n%n确定要继续吗?
|
||||||
|
ComponentSize1=%1 KB
|
||||||
|
ComponentSize2=%1 MB
|
||||||
|
ComponentsDiskSpaceGBLabel=当前选择的组件需要至少 [gb] GB 的磁盘空间。
|
||||||
|
ComponentsDiskSpaceMBLabel=当前选择的组件需要至少 [mb] MB 的磁盘空间。
|
||||||
|
|
||||||
|
; *** “选择附加任务”向导页
|
||||||
|
WizardSelectTasks=选择附加任务
|
||||||
|
SelectTasksDesc=您想要安装程序执行哪些附加任务?
|
||||||
|
SelectTasksLabel2=选择您想要安装程序在安装 [name] 时执行的附加任务,然后点击“下一步”。
|
||||||
|
|
||||||
|
; *** “选择开始菜单文件夹”向导页
|
||||||
|
WizardSelectProgramGroup=选择开始菜单文件夹
|
||||||
|
SelectStartMenuFolderDesc=安装程序应该在哪里放置程序的快捷方式?
|
||||||
|
SelectStartMenuFolderLabel3=安装程序将在下列“开始”菜单文件夹中创建程序的快捷方式。
|
||||||
|
SelectStartMenuFolderBrowseLabel=点击“下一步”继续。如果您想选择其他文件夹,点击“浏览”。
|
||||||
|
MustEnterGroupName=您必须输入一个文件夹名。
|
||||||
|
GroupNameTooLong=文件夹名或路径太长。
|
||||||
|
InvalidGroupName=无效的文件夹名字。
|
||||||
|
BadGroupName=文件夹名不能包含下列任何字符:%n%n%1
|
||||||
|
NoProgramGroupCheck2=不创建开始菜单文件夹(&D)
|
||||||
|
|
||||||
|
; *** “准备安装”向导页
|
||||||
|
WizardReady=准备安装
|
||||||
|
ReadyLabel1=安装程序准备就绪,现在可以开始安装 [name] 到您的电脑。
|
||||||
|
ReadyLabel2a=点击“安装”继续此安装程序。如果您想重新考虑或修改任何设置,点击“上一步”。
|
||||||
|
ReadyLabel2b=点击“安装”继续此安装程序。
|
||||||
|
ReadyMemoUserInfo=用户信息:
|
||||||
|
ReadyMemoDir=目标位置:
|
||||||
|
ReadyMemoType=安装类型:
|
||||||
|
ReadyMemoComponents=已选择组件:
|
||||||
|
ReadyMemoGroup=开始菜单文件夹:
|
||||||
|
ReadyMemoTasks=附加任务:
|
||||||
|
|
||||||
|
; *** TExtractionWizardPage 向导页面与 ExtractArchive
|
||||||
|
ExtractingLabel=正在解压文件...
|
||||||
|
ButtonStopExtraction=停止解压(&S)
|
||||||
|
StopExtraction=您确定要停止解压吗?
|
||||||
|
ErrorExtractionAborted=解压已中止
|
||||||
|
ErrorExtractionFailed=解压失败:%1
|
||||||
|
|
||||||
|
; *** 压缩文件解压失败详情
|
||||||
|
ArchiveIncorrectPassword=压缩文件密码不正确
|
||||||
|
ArchiveIsCorrupted=压缩文件已损坏
|
||||||
|
ArchiveUnsupportedFormat=不支持的压缩文件格式
|
||||||
|
|
||||||
|
; *** TDownloadWizardPage 向导页面和 DownloadTemporaryFile
|
||||||
|
DownloadingLabel2=正在下载文件...
|
||||||
|
ButtonStopDownload=停止下载(&S)
|
||||||
|
StopDownload=您确定要停止下载吗?
|
||||||
|
ErrorDownloadAborted=下载已中止
|
||||||
|
ErrorDownloadFailed=下载失败:%1 %2
|
||||||
|
ErrorDownloadSizeFailed=获取下载大小失败:%1 %2
|
||||||
|
ErrorProgress=无效的进度:%1 / %2
|
||||||
|
ErrorFileSize=文件大小错误:预期 %1,实际 %2
|
||||||
|
|
||||||
|
; *** “正在准备安装”向导页
|
||||||
|
WizardPreparing=正在准备安装
|
||||||
|
PreparingDesc=安装程序正在准备安装 [name] 到您的电脑。
|
||||||
|
PreviousInstallNotCompleted=先前的程序安装或卸载未完成,您需要重启您的电脑以完成。%n%n在重启电脑后,再次运行安装程序以完成 [name] 的安装。
|
||||||
|
CannotContinue=安装程序不能继续。请点击“取消”退出。
|
||||||
|
ApplicationsFound=以下应用程序正在使用将由安装程序更新的文件。建议您允许安装程序自动关闭这些应用程序。
|
||||||
|
ApplicationsFound2=以下应用程序正在使用将由安装程序更新的文件。建议您允许安装程序自动关闭这些应用程序。安装完成后,安装程序将尝试重新启动这些应用程序。
|
||||||
|
CloseApplications=自动关闭应用程序(&A)
|
||||||
|
DontCloseApplications=不要关闭应用程序(&D)
|
||||||
|
ErrorCloseApplications=安装程序无法自动关闭所有应用程序。建议您在继续之前,关闭所有在使用需要由安装程序更新的文件的应用程序。
|
||||||
|
PrepareToInstallNeedsRestart=安装程序必须重启您的计算机。计算机重启后,请再次运行安装程序以完成 [name] 的安装。%n%n是否立即重新启动?
|
||||||
|
|
||||||
|
; *** “正在安装”向导页
|
||||||
|
WizardInstalling=正在安装
|
||||||
|
InstallingLabel=安装程序正在安装 [name] 到您的电脑,请稍候。
|
||||||
|
|
||||||
|
; *** “安装完成”向导页
|
||||||
|
FinishedHeadingLabel=[name] 安装完成
|
||||||
|
FinishedLabelNoIcons=安装程序已在您的电脑中安装了 [name]。
|
||||||
|
FinishedLabel=安装程序已在您的电脑中安装了 [name]。您可以通过已安装的快捷方式运行此应用程序。
|
||||||
|
ClickFinish=点击“完成”退出安装程序。
|
||||||
|
FinishedRestartLabel=为完成 [name] 的安装,安装程序必须重新启动您的电脑。要立即重启吗?
|
||||||
|
FinishedRestartMessage=为完成 [name] 的安装,安装程序必须重新启动您的电脑。%n%n要立即重启吗?
|
||||||
|
ShowReadmeCheck=是,我想查阅自述文件
|
||||||
|
YesRadio=是,立即重启电脑(&Y)
|
||||||
|
NoRadio=否,稍后重启电脑(&N)
|
||||||
|
; used for example as 'Run MyProg.exe'
|
||||||
|
RunEntryExec=运行 %1
|
||||||
|
; used for example as 'View Readme.txt'
|
||||||
|
RunEntryShellExec=查阅 %1
|
||||||
|
|
||||||
|
; *** “安装程序需要下一张磁盘”提示
|
||||||
|
ChangeDiskTitle=安装程序需要下一张磁盘
|
||||||
|
SelectDiskLabel2=请插入磁盘 %1 并点击“确定”。%n%n如果这个磁盘中的文件可以在下列文件夹之外的文件夹中找到,请输入正确的路径或点击“浏览”。
|
||||||
|
PathLabel=路径(&P):
|
||||||
|
FileNotInDir2=“%2”中找不到文件“%1”。请插入正确的磁盘或选择其他文件夹。
|
||||||
|
SelectDirectoryLabel=请指定下一张磁盘的位置。
|
||||||
|
|
||||||
|
; *** 安装阶段消息
|
||||||
|
SetupAborted=安装程序未完成安装。%n%n请修正这个问题并重新运行安装程序。
|
||||||
|
AbortRetryIgnoreSelectAction=选择操作
|
||||||
|
AbortRetryIgnoreRetry=重试(&T)
|
||||||
|
AbortRetryIgnoreIgnore=忽略错误并继续(&I)
|
||||||
|
AbortRetryIgnoreCancel=关闭安装程序
|
||||||
|
RetryCancelSelectAction=选择操作
|
||||||
|
RetryCancelRetry=重试(&T)
|
||||||
|
RetryCancelCancel=取消(&C)
|
||||||
|
|
||||||
|
; *** 安装状态消息
|
||||||
|
StatusClosingApplications=正在关闭应用程序...
|
||||||
|
StatusCreateDirs=正在创建目录...
|
||||||
|
StatusExtractFiles=正在提取文件...
|
||||||
|
StatusDownloadFiles=正在下载文件...
|
||||||
|
StatusCreateIcons=正在创建快捷方式...
|
||||||
|
StatusCreateIniEntries=正在创建 INI 条目...
|
||||||
|
StatusCreateRegistryEntries=正在创建注册表条目...
|
||||||
|
StatusRegisterFiles=正在注册文件...
|
||||||
|
StatusSavingUninstall=正在保存卸载信息...
|
||||||
|
StatusRunProgram=正在完成安装...
|
||||||
|
StatusRestartingApplications=正在重启应用程序...
|
||||||
|
StatusRollback=正在撤销更改...
|
||||||
|
|
||||||
|
; *** 其他错误
|
||||||
|
ErrorInternal2=内部错误:%1
|
||||||
|
ErrorFunctionFailedNoCode=%1 失败
|
||||||
|
ErrorFunctionFailed=%1 失败;错误代码 %2
|
||||||
|
ErrorFunctionFailedWithMessage=%1 失败;错误代码 %2.%n%3
|
||||||
|
ErrorExecutingProgram=无法执行文件:%n%1
|
||||||
|
|
||||||
|
; *** 注册表错误
|
||||||
|
ErrorRegOpenKey=打开注册表项时出错:%n%1\%2
|
||||||
|
ErrorRegCreateKey=创建注册表项时出错:%n%1\%2
|
||||||
|
ErrorRegWriteKey=写入注册表项时出错:%n%1\%2
|
||||||
|
|
||||||
|
; *** INI 错误
|
||||||
|
ErrorIniEntry=在文件“%1”中创建 INI 条目时出错。
|
||||||
|
|
||||||
|
; *** 文件复制错误
|
||||||
|
FileAbortRetryIgnoreSkipNotRecommended=跳过此文件(&S) (不推荐)
|
||||||
|
FileAbortRetryIgnoreIgnoreNotRecommended=忽略错误并继续(&I) (不推荐)
|
||||||
|
SourceIsCorrupted=源文件已损坏
|
||||||
|
SourceDoesntExist=源文件“%1”不存在
|
||||||
|
SourceVerificationFailed=源文件验证失败: %1
|
||||||
|
VerificationSignatureDoesntExist=签名文件“%1”不存在
|
||||||
|
VerificationSignatureInvalid=签名文件“%1”无效
|
||||||
|
VerificationKeyNotFound=签名文件“%1”使用了未知密钥
|
||||||
|
VerificationFileNameIncorrect=文件名不正确
|
||||||
|
VerificationFileTagIncorrect=文件标签不正确
|
||||||
|
VerificationFileSizeIncorrect=文件大小不正确
|
||||||
|
VerificationFileHashIncorrect=文件哈希值不正确
|
||||||
|
ExistingFileReadOnly2=无法替换现有文件,它是只读的。
|
||||||
|
ExistingFileReadOnlyRetry=移除只读属性并重试(&R)
|
||||||
|
ExistingFileReadOnlyKeepExisting=保留现有文件(&K)
|
||||||
|
ErrorReadingExistingDest=尝试读取现有文件时出错:
|
||||||
|
FileExistsSelectAction=选择操作
|
||||||
|
FileExists2=文件已经存在。
|
||||||
|
FileExistsOverwriteExisting=覆盖已存在的文件(&O)
|
||||||
|
FileExistsKeepExisting=保留现有的文件(&K)
|
||||||
|
FileExistsOverwriteOrKeepAll=为所有冲突文件执行此操作(&D)
|
||||||
|
ExistingFileNewerSelectAction=选择操作
|
||||||
|
ExistingFileNewer2=现有的文件比安装程序将要安装的文件还要新。
|
||||||
|
ExistingFileNewerOverwriteExisting=覆盖已存在的文件(&O)
|
||||||
|
ExistingFileNewerKeepExisting=保留现有的文件(&K) (推荐)
|
||||||
|
ExistingFileNewerOverwriteOrKeepAll=为所有冲突文件执行此操作(&D)
|
||||||
|
ErrorChangingAttr=尝试更改下列现有文件的属性时出错:
|
||||||
|
ErrorCreatingTemp=尝试在目标目录创建文件时出错:
|
||||||
|
ErrorReadingSource=尝试读取下列源文件时出错:
|
||||||
|
ErrorCopying=尝试复制下列文件时出错:
|
||||||
|
ErrorDownloading=下载文件时出错:
|
||||||
|
ErrorExtracting=解压压缩文件时出错:
|
||||||
|
ErrorReplacingExistingFile=尝试替换现有文件时出错:
|
||||||
|
ErrorRestartReplace=重启并替换失败:
|
||||||
|
ErrorRenamingTemp=尝试重命名下列目标目录中的一个文件时出错:
|
||||||
|
ErrorRegisterServer=无法注册 DLL/OCX:%1
|
||||||
|
ErrorRegSvr32Failed=RegSvr32 失败;退出代码 %1
|
||||||
|
ErrorRegisterTypeLib=无法注册类库:%1
|
||||||
|
|
||||||
|
; *** 卸载显示名字标记
|
||||||
|
; used for example as 'My Program (32-bit)'
|
||||||
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
|
UninstallDisplayNameMark32Bit=32 位
|
||||||
|
UninstallDisplayNameMark64Bit=64 位
|
||||||
|
UninstallDisplayNameMarkAllUsers=所有用户
|
||||||
|
UninstallDisplayNameMarkCurrentUser=当前用户
|
||||||
|
|
||||||
|
; *** 安装后错误
|
||||||
|
ErrorOpeningReadme=尝试打开自述文件时出错。
|
||||||
|
ErrorRestartingComputer=安装程序无法重启电脑,请手动重启。
|
||||||
|
|
||||||
|
; *** 卸载消息
|
||||||
|
UninstallNotFound=文件“%1”不存在。无法卸载。
|
||||||
|
UninstallOpenError=文件“%1”不能被打开。无法卸载。
|
||||||
|
UninstallUnsupportedVer=此版本的卸载程序无法识别卸载日志文件“%1”的格式。无法卸载
|
||||||
|
UninstallUnknownEntry=卸载日志中遇到一个未知条目 (%1)
|
||||||
|
ConfirmUninstall=您确认要完全移除 %1 及其所有组件吗?
|
||||||
|
UninstallOnlyOnWin64=仅允许在 64 位 Windows 中卸载此程序。
|
||||||
|
OnlyAdminCanUninstall=仅使用管理员权限的用户能完成此卸载。
|
||||||
|
UninstallStatusLabel=正在从您的电脑中移除 %1,请稍候。
|
||||||
|
UninstalledAll=已顺利从您的电脑中移除 %1。
|
||||||
|
UninstalledMost=%1 卸载完成。%n%n有部分内容未能被删除,但您可以手动删除它们。
|
||||||
|
UninstalledAndNeedsRestart=为完成 %1 的卸载,需要重启您的电脑。%n%n立即重启电脑吗?
|
||||||
|
UninstallDataCorrupted=文件“%1”已损坏。无法卸载
|
||||||
|
|
||||||
|
; *** 卸载状态消息
|
||||||
|
ConfirmDeleteSharedFileTitle=删除共享的文件吗?
|
||||||
|
ConfirmDeleteSharedFile2=系统表示下列共享的文件已不有其他程序使用。您希望卸载程序删除这些共享的文件吗?%n%n如果删除这些文件,但仍有程序在使用这些文件,则这些程序可能出现异常。如果您不能确定,请选择“否”,在系统中保留这些文件以免引发问题。
|
||||||
|
SharedFileNameLabel=文件名:
|
||||||
|
SharedFileLocationLabel=位置:
|
||||||
|
WizardUninstalling=卸载状态
|
||||||
|
StatusUninstalling=正在卸载 %1...
|
||||||
|
|
||||||
|
; *** Shutdown block reasons
|
||||||
|
ShutdownBlockReasonInstallingApp=正在安装 %1。
|
||||||
|
ShutdownBlockReasonUninstallingApp=正在卸载 %1。
|
||||||
|
|
||||||
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
|
[CustomMessages]
|
||||||
|
|
||||||
|
NameAndVersion=%1 版本 %2
|
||||||
|
AdditionalIcons=附加快捷方式:
|
||||||
|
CreateDesktopIcon=创建桌面快捷方式(&D)
|
||||||
|
CreateQuickLaunchIcon=创建快速启动栏快捷方式(&Q)
|
||||||
|
ProgramOnTheWeb=%1 网站
|
||||||
|
UninstallProgram=卸载 %1
|
||||||
|
LaunchProgram=运行 %1
|
||||||
|
AssocFileExtension=将 %2 文件扩展名与 %1 建立关联(&A)
|
||||||
|
AssocingFileExtension=正在将 %2 文件扩展名与 %1 建立关联...
|
||||||
|
AutoStartProgramGroupDescription=启动:
|
||||||
|
AutoStartProgram=自动启动 %1
|
||||||
|
AddonHostProgramNotFound=您选择的文件夹中无法找到 %1。%n%n您要继续吗?
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
#define MyAppName "LanMountainDesktop"
|
#define MyAppName "LanMountainDesktop"
|
||||||
#define MyAppPublisher "LanMountainDesktop Team"
|
#define MyAppPublisher "LanMountainDesktop Team"
|
||||||
#define MyAppExeName "LanMountainDesktop.exe"
|
#define MyAppExeName "LanMountainDesktop.exe"
|
||||||
|
#define MyAppId "{{5A058B0D-F95D-4A18-B9A0-93F843655DDB}"
|
||||||
|
#define MyAppRegistryId "{5A058B0D-F95D-4A18-B9A0-93F843655DDB}"
|
||||||
|
|
||||||
#ifndef MyAppVersion
|
#ifndef MyAppVersion
|
||||||
#define MyAppVersion "0.0.0"
|
#define MyAppVersion "0.0.0"
|
||||||
@@ -19,13 +21,16 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
[Setup]
|
[Setup]
|
||||||
AppId={{5A058B0D-F95D-4A18-B9A0-93F843655DDB}
|
AppId={#MyAppId}
|
||||||
AppName={#MyAppName}
|
AppName={#MyAppName}
|
||||||
AppVersion={#MyAppVersion}
|
AppVersion={#MyAppVersion}
|
||||||
AppPublisher={#MyAppPublisher}
|
AppPublisher={#MyAppPublisher}
|
||||||
DefaultDirName={autopf}\{#MyAppName}
|
DefaultDirName={autopf}\{#MyAppName}
|
||||||
DisableDirPage=no
|
DisableDirPage=no
|
||||||
UsePreviousAppDir=no
|
UsePreviousAppDir=no
|
||||||
|
ShowLanguageDialog=yes
|
||||||
|
UsePreviousLanguage=no
|
||||||
|
LanguageDetectionMethod=uilanguage
|
||||||
DefaultGroupName={#MyAppName}
|
DefaultGroupName={#MyAppName}
|
||||||
UninstallDisplayIcon={app}\{#MyAppExeName}
|
UninstallDisplayIcon={app}\{#MyAppExeName}
|
||||||
OutputDir={#MyOutputDir}
|
OutputDir={#MyOutputDir}
|
||||||
@@ -33,7 +38,12 @@ OutputBaseFilename={#MyAppName}-Setup-{#MyAppVersion}-{#MyAppArch}
|
|||||||
Compression=lzma2/ultra64
|
Compression=lzma2/ultra64
|
||||||
SolidCompression=yes
|
SolidCompression=yes
|
||||||
WizardStyle=modern
|
WizardStyle=modern
|
||||||
|
; Leave PrivilegesRequiredOverridesAllowed unset so users cannot downgrade
|
||||||
|
; installation mode via dialog or /ALLUSERS /CURRENTUSER command-line switches.
|
||||||
PrivilegesRequired=admin
|
PrivilegesRequired=admin
|
||||||
|
CloseApplications=yes
|
||||||
|
CloseApplicationsFilter={#MyAppExeName}
|
||||||
|
RestartApplications=no
|
||||||
DisableProgramGroupPage=yes
|
DisableProgramGroupPage=yes
|
||||||
|
|
||||||
#if MyAppArch == "x64"
|
#if MyAppArch == "x64"
|
||||||
@@ -47,10 +57,55 @@ ArchitecturesAllowed=x86compatible
|
|||||||
|
|
||||||
[Languages]
|
[Languages]
|
||||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||||
|
Name: "chinesesimplified"; MessagesFile: "{#SourcePath}\ChineseSimplified.isl"
|
||||||
|
|
||||||
|
[CustomMessages]
|
||||||
|
english.StartupTaskDescription=Launch LanMountainDesktop when you sign in to Windows
|
||||||
|
chinesesimplified.StartupTaskDescription=登录 Windows 时启动 LanMountainDesktop
|
||||||
|
english.WebView2MissingMessage=Microsoft Edge WebView2 Runtime is required for the browser component.
|
||||||
|
chinesesimplified.WebView2MissingMessage=浏览器组件需要 Microsoft Edge WebView2 Runtime。
|
||||||
|
english.WebView2MissingAction=Click "Yes" to open the official download page. Install it first, then run this installer again.
|
||||||
|
chinesesimplified.WebView2MissingAction=单击“是”打开官方下载页面。请先完成安装,然后重新运行此安装程序。
|
||||||
|
english.WebView2OpenFailedMessage=Unable to open the download page automatically.
|
||||||
|
chinesesimplified.WebView2OpenFailedMessage=无法自动打开下载页面。
|
||||||
|
english.WebView2OpenFailedAction=Please open this URL manually:
|
||||||
|
chinesesimplified.WebView2OpenFailedAction=请手动打开以下链接:
|
||||||
|
english.UpgradePageCaption=Upgrade Existing Installation
|
||||||
|
chinesesimplified.UpgradePageCaption=升级现有安装
|
||||||
|
english.UpgradePageDescription=LanMountainDesktop is already installed on this computer. Choose how to upgrade it.
|
||||||
|
chinesesimplified.UpgradePageDescription=此计算机上已安装 LanMountainDesktop。请选择升级方式。
|
||||||
|
english.UpgradeDetectedVersionLabel=Detected version:
|
||||||
|
chinesesimplified.UpgradeDetectedVersionLabel=检测到的版本:
|
||||||
|
english.UpgradeCurrentLocationLabel=Current location:
|
||||||
|
chinesesimplified.UpgradeCurrentLocationLabel=当前安装位置:
|
||||||
|
english.UpgradePageSubCaption=Choose "Upgrade existing installation" to reuse the current location, or choose "Change installation location and migrate installation" to move the app without leaving a duplicate copy behind.
|
||||||
|
chinesesimplified.UpgradePageSubCaption=选择“升级现有安装”可复用当前安装位置;选择“更改安装位置并迁移安装”可移动应用,同时避免留下重复安装。
|
||||||
|
english.UpgradeOptionInPlace=Upgrade existing installation
|
||||||
|
chinesesimplified.UpgradeOptionInPlace=升级现有安装
|
||||||
|
english.UpgradeOptionRelocate=Change installation location and migrate installation
|
||||||
|
chinesesimplified.UpgradeOptionRelocate=更改安装位置并迁移安装
|
||||||
|
english.UpgradeUnknownVersion=Unknown
|
||||||
|
chinesesimplified.UpgradeUnknownVersion=未知
|
||||||
|
english.UpgradeCleanupMissingUninstaller=Setup found an existing installation, but its uninstaller is unavailable. Please uninstall the current version manually and run this installer again.
|
||||||
|
chinesesimplified.UpgradeCleanupMissingUninstaller=安装程序发现了现有安装,但无法找到它的卸载程序。请先手动卸载当前版本,再重新运行此安装程序。
|
||||||
|
english.UpgradeCleanupFailedPrefix=Setup could not remove the existing installation automatically. Error code:
|
||||||
|
chinesesimplified.UpgradeCleanupFailedPrefix=安装程序无法自动移除现有安装。错误代码:
|
||||||
|
english.UpgradeCleanupFailedSuffix=Please close LanMountainDesktop, uninstall the current version manually, and then run this installer again.
|
||||||
|
chinesesimplified.UpgradeCleanupFailedSuffix=请关闭 LanMountainDesktop,手动卸载当前版本,然后重新运行此安装程序。
|
||||||
|
|
||||||
[Tasks]
|
[Tasks]
|
||||||
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"
|
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"
|
||||||
Name: "startup"; Description: "Launch LanMountainDesktop when you sign in to Windows"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
Name: "startup"; Description: "{cm:StartupTaskDescription}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
||||||
|
|
||||||
|
[Dirs]
|
||||||
|
Name: "{app}\log"; Permissions: users-modify
|
||||||
|
|
||||||
|
[InstallDelete]
|
||||||
|
Type: files; Name: "{app}\LanMontainDesktop.exe"
|
||||||
|
Type: files; Name: "{app}\LanMontainDesktop.dll"
|
||||||
|
Type: files; Name: "{app}\LanMontainDesktop.deps.json"
|
||||||
|
Type: files; Name: "{app}\LanMontainDesktop.runtimeconfig.json"
|
||||||
|
Type: files; Name: "{app}\LanMontainDesktop.pdb"
|
||||||
|
|
||||||
[Files]
|
[Files]
|
||||||
Source: "{#PublishDir}\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
|
Source: "{#PublishDir}\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||||
@@ -60,19 +115,316 @@ Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
|||||||
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||||||
|
|
||||||
[Registry]
|
[Registry]
|
||||||
Root: HKCU; Subkey: "Software\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "{#MyAppName}"; ValueData: """{app}\{#MyAppExeName}"""; Tasks: startup; Flags: uninsdeletevalue
|
Root: HKA; Subkey: "Software\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "{#MyAppName}"; ValueData: """{app}\{#MyAppExeName}"""; Tasks: startup; Flags: uninsdeletevalue
|
||||||
|
|
||||||
[Run]
|
[Run]
|
||||||
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
||||||
|
|
||||||
[Code]
|
[Code]
|
||||||
const
|
const
|
||||||
|
UninstallRegSubkey = 'Software\Microsoft\Windows\CurrentVersion\Uninstall\{#MyAppRegistryId}_is1';
|
||||||
WebView2RuntimeKeyPath = 'SOFTWARE\Microsoft\EdgeUpdate\Clients\{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}';
|
WebView2RuntimeKeyPath = 'SOFTWARE\Microsoft\EdgeUpdate\Clients\{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}';
|
||||||
WebView2RuntimeDownloadUrl = 'https://go.microsoft.com/fwlink/p/?LinkId=2124703';
|
WebView2RuntimeDownloadUrl = 'https://go.microsoft.com/fwlink/p/?LinkId=2124703';
|
||||||
|
UpgradeChoiceInPlace = 0;
|
||||||
|
UpgradeChoiceRelocate = 1;
|
||||||
|
|
||||||
|
var
|
||||||
|
UpgradeModePage: TInputOptionWizardPage;
|
||||||
|
ExistingInstallFound: Boolean;
|
||||||
|
ExistingInstallPath: String;
|
||||||
|
ExistingInstallVersion: String;
|
||||||
|
ExistingUninstallCommand: String;
|
||||||
|
ExistingInstallWas64Bit: Boolean;
|
||||||
|
ExistingInstallIsPerUser: Boolean;
|
||||||
|
ExistingInstallRemoved: Boolean;
|
||||||
|
|
||||||
|
function NormalizePathValue(const Value: String): String;
|
||||||
|
begin
|
||||||
|
Result := RemoveBackslashUnlessRoot(Trim(Value));
|
||||||
|
end;
|
||||||
|
|
||||||
|
function CombinePath(const BasePath: String; const ChildName: String): String;
|
||||||
|
begin
|
||||||
|
if BasePath = '' then
|
||||||
|
begin
|
||||||
|
Result := ChildName;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
Result := NormalizePathValue(BasePath) + '\' + ChildName;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function SamePath(const LeftPath: String; const RightPath: String): Boolean;
|
||||||
|
begin
|
||||||
|
Result := CompareText(NormalizePathValue(LeftPath), NormalizePathValue(RightPath)) = 0;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function ExtractExecutableFromCommand(const CommandLine: String): String;
|
||||||
|
var
|
||||||
|
CommandText: String;
|
||||||
|
ClosingQuotePos: Integer;
|
||||||
|
ExePos: Integer;
|
||||||
|
begin
|
||||||
|
Result := '';
|
||||||
|
CommandText := Trim(CommandLine);
|
||||||
|
if CommandText = '' then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if CommandText[1] = '"' then
|
||||||
|
begin
|
||||||
|
Delete(CommandText, 1, 1);
|
||||||
|
ClosingQuotePos := Pos('"', CommandText);
|
||||||
|
if ClosingQuotePos > 0 then
|
||||||
|
begin
|
||||||
|
Result := Copy(CommandText, 1, ClosingQuotePos - 1);
|
||||||
|
end
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
Result := CommandText;
|
||||||
|
end;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
ExePos := Pos('.exe', LowerCase(CommandText));
|
||||||
|
if ExePos > 0 then
|
||||||
|
begin
|
||||||
|
Result := Copy(CommandText, 1, ExePos + 3);
|
||||||
|
end
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
Result := CommandText;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
Result := NormalizePathValue(RemoveQuotes(Result));
|
||||||
|
end;
|
||||||
|
|
||||||
|
function GetExistingExecutablePath(): String;
|
||||||
|
begin
|
||||||
|
if ExistingInstallPath = '' then
|
||||||
|
begin
|
||||||
|
Result := '';
|
||||||
|
end
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
Result := CombinePath(ExistingInstallPath, '{#MyAppExeName}');
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function GetDefaultInstallPath(): String;
|
||||||
|
begin
|
||||||
|
Result := NormalizePathValue(ExpandConstant('{autopf}\{#MyAppName}'));
|
||||||
|
end;
|
||||||
|
|
||||||
|
function GetExistingInstallVersionText(): String;
|
||||||
|
begin
|
||||||
|
Result := Trim(ExistingInstallVersion);
|
||||||
|
if Result = '' then
|
||||||
|
begin
|
||||||
|
Result := CustomMessage('UpgradeUnknownVersion');
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure ShowUpgradeCleanupError(const MessageText: String);
|
||||||
|
begin
|
||||||
|
Log(MessageText);
|
||||||
|
if not WizardSilent then
|
||||||
|
begin
|
||||||
|
MsgBox(MessageText, mbError, MB_OK);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function TryLoadExistingInstallation(
|
||||||
|
const RootKey: Integer;
|
||||||
|
const Is64BitView: Boolean;
|
||||||
|
const IsPerUser: Boolean): Boolean;
|
||||||
|
var
|
||||||
|
InstallLocation: String;
|
||||||
|
AppPath: String;
|
||||||
|
UninstallString: String;
|
||||||
|
DisplayVersion: String;
|
||||||
|
ResolvedPath: String;
|
||||||
|
begin
|
||||||
|
Result := False;
|
||||||
|
InstallLocation := '';
|
||||||
|
AppPath := '';
|
||||||
|
UninstallString := '';
|
||||||
|
DisplayVersion := '';
|
||||||
|
|
||||||
|
if not RegKeyExists(RootKey, UninstallRegSubkey) then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
RegQueryStringValue(RootKey, UninstallRegSubkey, 'InstallLocation', InstallLocation);
|
||||||
|
RegQueryStringValue(RootKey, UninstallRegSubkey, 'Inno Setup: App Path', AppPath);
|
||||||
|
RegQueryStringValue(RootKey, UninstallRegSubkey, 'UninstallString', UninstallString);
|
||||||
|
RegQueryStringValue(RootKey, UninstallRegSubkey, 'DisplayVersion', DisplayVersion);
|
||||||
|
|
||||||
|
ResolvedPath := NormalizePathValue(InstallLocation);
|
||||||
|
if ResolvedPath = '' then
|
||||||
|
begin
|
||||||
|
ResolvedPath := NormalizePathValue(AppPath);
|
||||||
|
end;
|
||||||
|
if (ResolvedPath = '') and (UninstallString <> '') then
|
||||||
|
begin
|
||||||
|
ResolvedPath := NormalizePathValue(ExtractFileDir(ExtractExecutableFromCommand(UninstallString)));
|
||||||
|
end;
|
||||||
|
|
||||||
|
if (ResolvedPath = '') or
|
||||||
|
(not DirExists(ResolvedPath)) or
|
||||||
|
(not FileExists(CombinePath(ResolvedPath, '{#MyAppExeName}'))) then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
ExistingInstallFound := True;
|
||||||
|
ExistingInstallPath := ResolvedPath;
|
||||||
|
ExistingInstallVersion := Trim(DisplayVersion);
|
||||||
|
ExistingUninstallCommand := Trim(UninstallString);
|
||||||
|
ExistingInstallWas64Bit := Is64BitView;
|
||||||
|
ExistingInstallIsPerUser := IsPerUser;
|
||||||
|
Result := True;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure DetectExistingInstallation;
|
||||||
|
begin
|
||||||
|
ExistingInstallFound := False;
|
||||||
|
ExistingInstallPath := '';
|
||||||
|
ExistingInstallVersion := '';
|
||||||
|
ExistingUninstallCommand := '';
|
||||||
|
ExistingInstallWas64Bit := False;
|
||||||
|
ExistingInstallIsPerUser := False;
|
||||||
|
ExistingInstallRemoved := False;
|
||||||
|
|
||||||
|
if IsWin64 then
|
||||||
|
begin
|
||||||
|
if TryLoadExistingInstallation(HKLM64, True, False) then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
if TryLoadExistingInstallation(HKCU64, True, True) then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if TryLoadExistingInstallation(HKLM32, False, False) then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
TryLoadExistingInstallation(HKCU32, False, True);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function SelectedUpgradeChoice(): Integer;
|
||||||
|
begin
|
||||||
|
if UpgradeModePage <> nil then
|
||||||
|
begin
|
||||||
|
Result := UpgradeModePage.SelectedValueIndex;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
Result := UpgradeChoiceInPlace;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure ApplySelectedInstallDirectory;
|
||||||
|
var
|
||||||
|
CurrentDir: String;
|
||||||
|
begin
|
||||||
|
if not ExistingInstallFound then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if SelectedUpgradeChoice() = UpgradeChoiceInPlace then
|
||||||
|
begin
|
||||||
|
WizardForm.DirEdit.Text := ExistingInstallPath;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
CurrentDir := NormalizePathValue(WizardDirValue);
|
||||||
|
if (CurrentDir = '') or SamePath(CurrentDir, GetDefaultInstallPath()) then
|
||||||
|
begin
|
||||||
|
WizardForm.DirEdit.Text := ExistingInstallPath;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function GetSelectedInstallPath(): String;
|
||||||
|
begin
|
||||||
|
Result := NormalizePathValue(ExpandConstant('{app}'));
|
||||||
|
if Result = '' then
|
||||||
|
begin
|
||||||
|
Result := NormalizePathValue(WizardDirValue);
|
||||||
|
end;
|
||||||
|
if Result = '' then
|
||||||
|
begin
|
||||||
|
Result := ExistingInstallPath;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function ExistingInstallRequiresCleanup(): Boolean;
|
||||||
|
var
|
||||||
|
TargetPath: String;
|
||||||
|
begin
|
||||||
|
Result := False;
|
||||||
|
if not ExistingInstallFound or ExistingInstallRemoved then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
TargetPath := GetSelectedInstallPath();
|
||||||
|
Result := ExistingInstallIsPerUser or
|
||||||
|
(not SamePath(TargetPath, ExistingInstallPath)) or
|
||||||
|
(ExistingInstallWas64Bit <> Is64BitInstallMode);
|
||||||
|
end;
|
||||||
|
|
||||||
|
function RemoveExistingInstallation(): Boolean;
|
||||||
|
var
|
||||||
|
UninstallerPath: String;
|
||||||
|
ResultCode: Integer;
|
||||||
|
begin
|
||||||
|
Result := True;
|
||||||
|
|
||||||
|
if not ExistingInstallRequiresCleanup() then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
UninstallerPath := ExtractExecutableFromCommand(ExistingUninstallCommand);
|
||||||
|
if (UninstallerPath = '') or (not FileExists(UninstallerPath)) then
|
||||||
|
begin
|
||||||
|
ShowUpgradeCleanupError(CustomMessage('UpgradeCleanupMissingUninstaller'));
|
||||||
|
Result := False;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
ResultCode := -1;
|
||||||
|
if not Exec(
|
||||||
|
UninstallerPath,
|
||||||
|
'/VERYSILENT /SUPPRESSMSGBOXES /NORESTART',
|
||||||
|
ExtractFileDir(UninstallerPath),
|
||||||
|
SW_SHOWNORMAL,
|
||||||
|
ewWaitUntilTerminated,
|
||||||
|
ResultCode) or (ResultCode <> 0) then
|
||||||
|
begin
|
||||||
|
ShowUpgradeCleanupError(
|
||||||
|
CustomMessage('UpgradeCleanupFailedPrefix') + ' ' + IntToStr(ResultCode) + '. ' +
|
||||||
|
CustomMessage('UpgradeCleanupFailedSuffix'));
|
||||||
|
Result := False;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
ExistingInstallRemoved := True;
|
||||||
|
end;
|
||||||
|
|
||||||
function IsWebView2RuntimeInstalled(): Boolean;
|
function IsWebView2RuntimeInstalled(): Boolean;
|
||||||
var
|
var
|
||||||
VersionValue: string;
|
VersionValue: String;
|
||||||
begin
|
begin
|
||||||
Result :=
|
Result :=
|
||||||
RegQueryStringValue(HKLM64, WebView2RuntimeKeyPath, 'pv', VersionValue) or
|
RegQueryStringValue(HKLM64, WebView2RuntimeKeyPath, 'pv', VersionValue) or
|
||||||
@@ -92,16 +444,16 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
if MsgBox(
|
if MsgBox(
|
||||||
'Microsoft Edge WebView2 Runtime is required for the browser component.'#13#10#13#10 +
|
CustomMessage('WebView2MissingMessage') + #13#10#13#10 +
|
||||||
'Click "Yes" to open the official download page. Install it first, then run this installer again.',
|
CustomMessage('WebView2MissingAction'),
|
||||||
mbConfirmation,
|
mbConfirmation,
|
||||||
MB_YESNO) = IDYES then
|
MB_YESNO) = IDYES then
|
||||||
begin
|
begin
|
||||||
if not ShellExec('open', WebView2RuntimeDownloadUrl, '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode) then
|
if not ShellExec('open', WebView2RuntimeDownloadUrl, '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode) then
|
||||||
begin
|
begin
|
||||||
MsgBox(
|
MsgBox(
|
||||||
'Unable to open the download page automatically.'#13#10 +
|
CustomMessage('WebView2OpenFailedMessage') + #13#10 +
|
||||||
'Please open this URL manually:'#13#10 + WebView2RuntimeDownloadUrl,
|
CustomMessage('WebView2OpenFailedAction') + #13#10 + WebView2RuntimeDownloadUrl,
|
||||||
mbError,
|
mbError,
|
||||||
MB_OK);
|
MB_OK);
|
||||||
end;
|
end;
|
||||||
@@ -109,3 +461,84 @@ begin
|
|||||||
|
|
||||||
Result := False;
|
Result := False;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure InitializeWizard;
|
||||||
|
var
|
||||||
|
DetailsText: String;
|
||||||
|
begin
|
||||||
|
DetectExistingInstallation;
|
||||||
|
|
||||||
|
if not ExistingInstallFound then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
DetailsText :=
|
||||||
|
CustomMessage('UpgradeDetectedVersionLabel') + ' ' + GetExistingInstallVersionText() + #13#10 +
|
||||||
|
CustomMessage('UpgradeCurrentLocationLabel') + ' ' + ExistingInstallPath + #13#10#13#10 +
|
||||||
|
CustomMessage('UpgradePageSubCaption');
|
||||||
|
|
||||||
|
UpgradeModePage := CreateInputOptionPage(
|
||||||
|
wpWelcome,
|
||||||
|
CustomMessage('UpgradePageCaption'),
|
||||||
|
CustomMessage('UpgradePageDescription'),
|
||||||
|
DetailsText,
|
||||||
|
True,
|
||||||
|
False);
|
||||||
|
UpgradeModePage.Add(CustomMessage('UpgradeOptionInPlace'));
|
||||||
|
UpgradeModePage.Add(CustomMessage('UpgradeOptionRelocate'));
|
||||||
|
UpgradeModePage.SelectedValueIndex := UpgradeChoiceInPlace;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function NextButtonClick(CurPageID: Integer): Boolean;
|
||||||
|
begin
|
||||||
|
Result := True;
|
||||||
|
|
||||||
|
if (UpgradeModePage <> nil) and (CurPageID = UpgradeModePage.ID) then
|
||||||
|
begin
|
||||||
|
ApplySelectedInstallDirectory;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function ShouldSkipPage(PageID: Integer): Boolean;
|
||||||
|
begin
|
||||||
|
Result := False;
|
||||||
|
|
||||||
|
if (UpgradeModePage <> nil) and (PageID = UpgradeModePage.ID) then
|
||||||
|
begin
|
||||||
|
Result := not ExistingInstallFound;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
if PageID = wpSelectDir then
|
||||||
|
begin
|
||||||
|
Result := ExistingInstallFound and (SelectedUpgradeChoice() = UpgradeChoiceInPlace);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure RegisterExtraCloseApplicationsResources;
|
||||||
|
var
|
||||||
|
ExistingExecutablePath: String;
|
||||||
|
begin
|
||||||
|
if not ExistingInstallFound then
|
||||||
|
begin
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
|
|
||||||
|
ExistingExecutablePath := GetExistingExecutablePath();
|
||||||
|
if (ExistingExecutablePath <> '') and FileExists(ExistingExecutablePath) then
|
||||||
|
begin
|
||||||
|
RegisterExtraCloseApplicationsResource(False, ExistingExecutablePath);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure CurStepChanged(CurStep: TSetupStep);
|
||||||
|
begin
|
||||||
|
if CurStep = ssInstall then
|
||||||
|
begin
|
||||||
|
if not RemoveExistingInstallation() then
|
||||||
|
begin
|
||||||
|
Abort;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace LanMountainDesktop.Views;
|
||||||
|
|
||||||
|
public partial class MainWindow
|
||||||
|
{
|
||||||
|
private void ApplyPluginMarketSettingsLocalization()
|
||||||
|
{
|
||||||
|
PluginMarketSettingsPanel.RefreshFromRuntime();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -9,6 +9,7 @@ public partial class MainWindow
|
|||||||
internal TextBlock PluginSystemDescriptionTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginSystemDescriptionTextBlock")!;
|
internal TextBlock PluginSystemDescriptionTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginSystemDescriptionTextBlock")!;
|
||||||
internal TextBlock PluginSystemStatusTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginSystemStatusTextBlock")!;
|
internal TextBlock PluginSystemStatusTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginSystemStatusTextBlock")!;
|
||||||
internal FluentAvalonia.UI.Controls.SettingsExpander InstalledPluginsSettingsExpander => PluginSettingsPanel.FindControl<FluentAvalonia.UI.Controls.SettingsExpander>("InstalledPluginsSettingsExpander")!;
|
internal FluentAvalonia.UI.Controls.SettingsExpander InstalledPluginsSettingsExpander => PluginSettingsPanel.FindControl<FluentAvalonia.UI.Controls.SettingsExpander>("InstalledPluginsSettingsExpander")!;
|
||||||
|
internal FluentAvalonia.UI.Controls.SettingsExpander ImportPluginPackageSettingsExpander => PluginSettingsPanel.FindControl<FluentAvalonia.UI.Controls.SettingsExpander>("ImportPluginPackageSettingsExpander")!;
|
||||||
internal TextBlock PluginRestartHintTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginRestartHintTextBlock")!;
|
internal TextBlock PluginRestartHintTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginRestartHintTextBlock")!;
|
||||||
internal TextBlock PluginCatalogEmptyTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginCatalogEmptyTextBlock")!;
|
internal TextBlock PluginCatalogEmptyTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginCatalogEmptyTextBlock")!;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ public partial class MainWindow
|
|||||||
.GroupBy(contribution => contribution.Plugin.Manifest.Id, StringComparer.OrdinalIgnoreCase)
|
.GroupBy(contribution => contribution.Plugin.Manifest.Id, StringComparer.OrdinalIgnoreCase)
|
||||||
.ToDictionary(group => group.Key, group => group.Count(), StringComparer.OrdinalIgnoreCase);
|
.ToDictionary(group => group.Key, group => group.Count(), StringComparer.OrdinalIgnoreCase);
|
||||||
|
|
||||||
var insertIndex = SettingsNavView.MenuItems.IndexOf(SettingsNavPluginsItem) + 1;
|
var insertIndex = SettingsNavView.MenuItems.IndexOf(SettingsNavPluginMarketItem) + 1;
|
||||||
foreach (var contribution in contributions)
|
foreach (var contribution in contributions)
|
||||||
{
|
{
|
||||||
var tag = BuildPluginSettingsTag(contribution);
|
var tag = BuildPluginSettingsTag(contribution);
|
||||||
|
|||||||
@@ -18,10 +18,14 @@ public partial class MainWindow
|
|||||||
InstalledPluginsSettingsExpander.Header = L("settings.plugins.installed_header", "Installed Plugins");
|
InstalledPluginsSettingsExpander.Header = L("settings.plugins.installed_header", "Installed Plugins");
|
||||||
InstalledPluginsSettingsExpander.Description = L(
|
InstalledPluginsSettingsExpander.Description = L(
|
||||||
"settings.plugins.installed_desc",
|
"settings.plugins.installed_desc",
|
||||||
"Enable or disable plugins here. Detailed plugin settings appear as separate settings pages.");
|
"Review installed plugins and remove them here.");
|
||||||
|
ImportPluginPackageSettingsExpander.Header = L("settings.plugins.import_header", "Install From Package");
|
||||||
|
ImportPluginPackageSettingsExpander.Description = L(
|
||||||
|
"settings.plugins.import_desc",
|
||||||
|
"Open a .laapp package and stage it into the local plugin directory.");
|
||||||
PluginRestartHintTextBlock.Text = L(
|
PluginRestartHintTextBlock.Text = L(
|
||||||
"settings.plugins.restart_hint",
|
"settings.plugins.restart_hint",
|
||||||
"Plugin enable state changes take effect after restarting the app.");
|
"Plugin installation and deletion changes take effect after restarting the app.");
|
||||||
PluginCatalogEmptyTextBlock.Text = L("settings.plugins.empty", "No plugins found.");
|
PluginCatalogEmptyTextBlock.Text = L("settings.plugins.empty", "No plugins found.");
|
||||||
PluginSettingsPanel.RefreshFromRuntime();
|
PluginSettingsPanel.RefreshFromRuntime();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ using System.Text;
|
|||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
using LanMountainDesktop.Services;
|
||||||
using LanMountainDesktop.PluginSdk;
|
using LanMountainDesktop.PluginSdk;
|
||||||
|
|
||||||
namespace LanMountainDesktop.Plugins;
|
namespace LanMountainDesktop.Plugins;
|
||||||
@@ -346,6 +347,9 @@ public sealed class PluginLoader
|
|||||||
private string ExtractPackage(string packagePath, string pluginsRootDirectory)
|
private string ExtractPackage(string packagePath, string pluginsRootDirectory)
|
||||||
{
|
{
|
||||||
var extractionDirectory = GetPackageExtractionDirectory(pluginsRootDirectory, packagePath);
|
var extractionDirectory = GetPackageExtractionDirectory(pluginsRootDirectory, packagePath);
|
||||||
|
AppLogger.Info(
|
||||||
|
"PluginLoader",
|
||||||
|
$"Extracting package '{packagePath}' to '{extractionDirectory}'.");
|
||||||
RecreateDirectory(extractionDirectory);
|
RecreateDirectory(extractionDirectory);
|
||||||
ZipFile.ExtractToDirectory(packagePath, extractionDirectory, overwriteFiles: true);
|
ZipFile.ExtractToDirectory(packagePath, extractionDirectory, overwriteFiles: true);
|
||||||
return extractionDirectory;
|
return extractionDirectory;
|
||||||
@@ -381,7 +385,7 @@ public sealed class PluginLoader
|
|||||||
{
|
{
|
||||||
if (Directory.Exists(directoryPath))
|
if (Directory.Exists(directoryPath))
|
||||||
{
|
{
|
||||||
Directory.Delete(directoryPath, recursive: true);
|
FileOperationRetryHelper.DeleteDirectoryWithRetry(directoryPath, recursive: true, "PluginLoader");
|
||||||
}
|
}
|
||||||
|
|
||||||
Directory.CreateDirectory(directoryPath);
|
Directory.CreateDirectory(directoryPath);
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
47
LanMountainDesktop/plugins/PluginMarketIconService.cs
Normal file
47
LanMountainDesktop/plugins/PluginMarketIconService.cs
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Avalonia.Media.Imaging;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Views.SettingsPages;
|
||||||
|
|
||||||
|
internal sealed class AirAppMarketIconService : IDisposable
|
||||||
|
{
|
||||||
|
private readonly HttpClient _httpClient;
|
||||||
|
|
||||||
|
public AirAppMarketIconService()
|
||||||
|
{
|
||||||
|
_httpClient = new HttpClient
|
||||||
|
{
|
||||||
|
Timeout = TimeSpan.FromSeconds(20)
|
||||||
|
};
|
||||||
|
_httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("LanMountainDesktop-PluginMarketplace/1.0");
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<Bitmap> LoadAsync(
|
||||||
|
AirAppMarketPluginEntry plugin,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
ArgumentNullException.ThrowIfNull(plugin);
|
||||||
|
|
||||||
|
if (AirAppMarketDefaults.TryResolveWorkspaceFile(plugin.IconUrl, out var localIconPath))
|
||||||
|
{
|
||||||
|
return new Bitmap(localIconPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
using var response = await _httpClient.GetAsync(plugin.IconUrl, cancellationToken);
|
||||||
|
response.EnsureSuccessStatusCode();
|
||||||
|
await using var stream = await response.Content.ReadAsStreamAsync(cancellationToken);
|
||||||
|
using var memory = new MemoryStream();
|
||||||
|
await stream.CopyToAsync(memory, cancellationToken);
|
||||||
|
memory.Position = 0;
|
||||||
|
return new Bitmap(memory);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
_httpClient.Dispose();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -13,7 +13,10 @@ namespace LanMountainDesktop.Views.SettingsPages;
|
|||||||
internal sealed class AirAppMarketInstallService : IDisposable
|
internal sealed class AirAppMarketInstallService : IDisposable
|
||||||
{
|
{
|
||||||
private readonly PluginRuntimeService _runtime;
|
private readonly PluginRuntimeService _runtime;
|
||||||
|
private readonly PluginsInstallHelperClient _helperClient = new();
|
||||||
private readonly HttpClient _httpClient;
|
private readonly HttpClient _httpClient;
|
||||||
|
private readonly ResumableDownloadService _downloadService;
|
||||||
|
private readonly AirAppMarketReleaseResolverService _releaseResolverService;
|
||||||
private readonly string _downloadsDirectory;
|
private readonly string _downloadsDirectory;
|
||||||
|
|
||||||
public AirAppMarketInstallService(PluginRuntimeService runtime, string dataDirectory)
|
public AirAppMarketInstallService(PluginRuntimeService runtime, string dataDirectory)
|
||||||
@@ -25,6 +28,8 @@ internal sealed class AirAppMarketInstallService : IDisposable
|
|||||||
Timeout = TimeSpan.FromMinutes(2)
|
Timeout = TimeSpan.FromMinutes(2)
|
||||||
};
|
};
|
||||||
_httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("LanMountainDesktop-PluginMarketplace/1.0");
|
_httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("LanMountainDesktop-PluginMarketplace/1.0");
|
||||||
|
_downloadService = new ResumableDownloadService(_httpClient);
|
||||||
|
_releaseResolverService = new AirAppMarketReleaseResolverService(_httpClient);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<AirAppMarketInstallResult> InstallAsync(
|
public async Task<AirAppMarketInstallResult> InstallAsync(
|
||||||
@@ -40,46 +45,99 @@ internal sealed class AirAppMarketInstallService : IDisposable
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (AirAppMarketDefaults.TryResolveWorkspaceFile(plugin.DownloadUrl, out var localPackagePath))
|
AppLogger.Info(
|
||||||
|
"PluginMarket",
|
||||||
|
$"Starting install. PluginId='{plugin.Id}'; Version='{plugin.Version}'; DownloadPath='{downloadPath}'.");
|
||||||
|
var resolvedDownloadUrl = await _releaseResolverService.ResolveDownloadUrlAsync(plugin, cancellationToken);
|
||||||
|
AppLogger.Info(
|
||||||
|
"PluginMarket",
|
||||||
|
$"Resolved download url for '{plugin.Id}' to '{resolvedDownloadUrl}'.");
|
||||||
|
|
||||||
|
if (AirAppMarketDefaults.TryResolveWorkspaceFile(resolvedDownloadUrl, out var localPackagePath))
|
||||||
{
|
{
|
||||||
await using var sourceStream = File.OpenRead(localPackagePath);
|
var localCopyResult = await _downloadService.DownloadAsync(
|
||||||
await using var destinationStream = File.Create(downloadPath);
|
localPackagePath,
|
||||||
await sourceStream.CopyToAsync(destinationStream, cancellationToken);
|
downloadPath,
|
||||||
|
new DownloadOptions(ExpectedSizeBytes: plugin.PackageSizeBytes),
|
||||||
|
cancellationToken: cancellationToken);
|
||||||
|
if (!localCopyResult.Success)
|
||||||
|
{
|
||||||
|
return new AirAppMarketInstallResult(false, null, localCopyResult.ErrorMessage);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
using var response = await _httpClient.GetAsync(
|
var downloadResult = await _downloadService.DownloadAsync(
|
||||||
plugin.DownloadUrl,
|
resolvedDownloadUrl,
|
||||||
HttpCompletionOption.ResponseHeadersRead,
|
downloadPath,
|
||||||
cancellationToken);
|
new DownloadOptions(ExpectedSizeBytes: plugin.PackageSizeBytes),
|
||||||
response.EnsureSuccessStatusCode();
|
cancellationToken: cancellationToken);
|
||||||
|
if (!downloadResult.Success)
|
||||||
await using var responseStream = await response.Content.ReadAsStreamAsync(cancellationToken);
|
{
|
||||||
await using var destinationStream = File.Create(downloadPath);
|
return new AirAppMarketInstallResult(false, null, downloadResult.ErrorMessage);
|
||||||
await responseStream.CopyToAsync(destinationStream, cancellationToken);
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var actualSize = new FileInfo(downloadPath).Length;
|
||||||
|
string actualHash;
|
||||||
|
await using (var hashStream = File.OpenRead(downloadPath))
|
||||||
|
{
|
||||||
|
var hashBytes = await SHA256.HashDataAsync(hashStream, cancellationToken);
|
||||||
|
actualHash = Convert.ToHexString(hashBytes).ToLowerInvariant();
|
||||||
}
|
}
|
||||||
|
|
||||||
await using var hashStream = File.OpenRead(downloadPath);
|
|
||||||
var hashBytes = await SHA256.HashDataAsync(hashStream, cancellationToken);
|
|
||||||
var actualHash = Convert.ToHexString(hashBytes).ToLowerInvariant();
|
|
||||||
if (!string.Equals(actualHash, plugin.Sha256, StringComparison.OrdinalIgnoreCase))
|
if (!string.Equals(actualHash, plugin.Sha256, StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
|
AppLogger.Error(
|
||||||
|
"PluginMarket",
|
||||||
|
$"SHA-256 verification failed. PluginId='{plugin.Id}'; Version='{plugin.Version}'; DownloadUrl='{resolvedDownloadUrl}'; DownloadPath='{downloadPath}'; ExpectedHash='{plugin.Sha256}'; ActualHash='{actualHash}'; ExpectedSize='{plugin.PackageSizeBytes}'; ActualSize='{actualSize}'.");
|
||||||
File.Delete(downloadPath);
|
File.Delete(downloadPath);
|
||||||
return new AirAppMarketInstallResult(
|
return new AirAppMarketInstallResult(
|
||||||
false,
|
false,
|
||||||
null,
|
null,
|
||||||
$"SHA-256 mismatch. Expected {plugin.Sha256}, actual {actualHash}.");
|
$"SHA-256 mismatch. Expected {plugin.Sha256}, actual {actualHash}. Expected size {plugin.PackageSizeBytes}, actual size {actualSize}. Source {resolvedDownloadUrl}.");
|
||||||
}
|
}
|
||||||
|
|
||||||
var manifest = _runtime.InstallPluginPackage(downloadPath);
|
PluginManifest manifest;
|
||||||
|
if (OperatingSystem.IsWindows())
|
||||||
|
{
|
||||||
|
var helperResult = await _helperClient.InstallPackageAsync(
|
||||||
|
downloadPath,
|
||||||
|
_runtime.PluginsDirectory,
|
||||||
|
cancellationToken);
|
||||||
|
if (!helperResult.Success || string.IsNullOrWhiteSpace(helperResult.InstalledPackagePath))
|
||||||
|
{
|
||||||
|
return new AirAppMarketInstallResult(
|
||||||
|
false,
|
||||||
|
null,
|
||||||
|
helperResult.ErrorMessage ?? "Plugins install helper failed.");
|
||||||
|
}
|
||||||
|
|
||||||
|
manifest = _runtime.RegisterInstalledPluginPackage(helperResult.InstalledPackagePath);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
manifest = _runtime.InstallPluginPackage(downloadPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
AppLogger.Info(
|
||||||
|
"PluginMarket",
|
||||||
|
$"Install staged successfully. PluginId='{manifest.Id}'; InstalledName='{manifest.Name}'; PackagePath='{downloadPath}'.");
|
||||||
return new AirAppMarketInstallResult(true, manifest, null);
|
return new AirAppMarketInstallResult(true, manifest, null);
|
||||||
}
|
}
|
||||||
catch (OperationCanceledException)
|
catch (OperationCanceledException)
|
||||||
{
|
{
|
||||||
|
AppLogger.Warn(
|
||||||
|
"PluginMarket",
|
||||||
|
$"Install canceled. PluginId='{plugin.Id}'; Version='{plugin.Version}'; DownloadPath='{downloadPath}'.");
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
AppLogger.Error(
|
||||||
|
"PluginMarket",
|
||||||
|
$"Install failed. PluginId='{plugin.Id}'; Version='{plugin.Version}'; DownloadPath='{downloadPath}'.",
|
||||||
|
ex);
|
||||||
return new AirAppMarketInstallResult(false, null, ex.Message);
|
return new AirAppMarketInstallResult(false, null, ex.Message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,11 +13,25 @@ internal static class AirAppMarketDefaults
|
|||||||
public const string DefaultIndexUrl =
|
public const string DefaultIndexUrl =
|
||||||
"https://raw.githubusercontent.com/wwiinnddyy/LanAirApp/main/airappmarket/index.json";
|
"https://raw.githubusercontent.com/wwiinnddyy/LanAirApp/main/airappmarket/index.json";
|
||||||
|
|
||||||
private const string RawGitHubLanAirAppPathPrefix = "/wwiinnddyy/LanAirApp/main/";
|
public static string BuildGitHubReleaseDownloadUrl(
|
||||||
|
string owner,
|
||||||
|
string repositoryName,
|
||||||
|
string releaseTag,
|
||||||
|
string assetName)
|
||||||
|
{
|
||||||
|
ArgumentException.ThrowIfNullOrWhiteSpace(owner);
|
||||||
|
ArgumentException.ThrowIfNullOrWhiteSpace(repositoryName);
|
||||||
|
ArgumentException.ThrowIfNullOrWhiteSpace(releaseTag);
|
||||||
|
ArgumentException.ThrowIfNullOrWhiteSpace(assetName);
|
||||||
|
|
||||||
|
return string.Create(
|
||||||
|
CultureInfo.InvariantCulture,
|
||||||
|
$"https://github.com/{owner.Trim()}/{repositoryName.Trim()}/releases/download/{Uri.EscapeDataString(releaseTag.Trim())}/{Uri.EscapeDataString(assetName.Trim())}");
|
||||||
|
}
|
||||||
|
|
||||||
public static string? TryGetWorkspaceIndexPath()
|
public static string? TryGetWorkspaceIndexPath()
|
||||||
{
|
{
|
||||||
var repositoryRoot = TryGetWorkspaceLanAirAppRepositoryRoot();
|
var repositoryRoot = TryGetWorkspaceRepositoryRoot("LanAirApp");
|
||||||
if (repositoryRoot is null)
|
if (repositoryRoot is null)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
@@ -31,17 +45,24 @@ internal static class AirAppMarketDefaults
|
|||||||
{
|
{
|
||||||
localPath = string.Empty;
|
localPath = string.Empty;
|
||||||
|
|
||||||
var repositoryRoot = TryGetWorkspaceLanAirAppRepositoryRoot();
|
string repositoryName;
|
||||||
if (repositoryRoot is null ||
|
string relativePath;
|
||||||
!Uri.TryCreate(url, UriKind.Absolute, out var uri) ||
|
|
||||||
!string.Equals(uri.Host, "raw.githubusercontent.com", StringComparison.OrdinalIgnoreCase) ||
|
if (TryParseGitHubReleaseDownloadUrl(url, out repositoryName, out var releaseAssetName))
|
||||||
!uri.AbsolutePath.StartsWith(RawGitHubLanAirAppPathPrefix, StringComparison.OrdinalIgnoreCase))
|
{
|
||||||
|
relativePath = releaseAssetName;
|
||||||
|
}
|
||||||
|
else if (!TryParseRawGitHubUrl(url, out repositoryName, out relativePath))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var repositoryRoot = TryGetWorkspaceRepositoryRoot(repositoryName);
|
||||||
|
if (repositoryRoot is null)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
var relativePath = Uri.UnescapeDataString(uri.AbsolutePath[RawGitHubLanAirAppPathPrefix.Length..])
|
|
||||||
.Replace('/', Path.DirectorySeparatorChar);
|
|
||||||
var candidatePath = Path.GetFullPath(Path.Combine(repositoryRoot, relativePath));
|
var candidatePath = Path.GetFullPath(Path.Combine(repositoryRoot, relativePath));
|
||||||
if (!File.Exists(candidatePath))
|
if (!File.Exists(candidatePath))
|
||||||
{
|
{
|
||||||
@@ -52,13 +73,39 @@ internal static class AirAppMarketDefaults
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static string? TryGetWorkspaceLanAirAppRepositoryRoot()
|
public static bool TryParseGitHubRepositoryUrl(
|
||||||
|
string? url,
|
||||||
|
out string owner,
|
||||||
|
out string repositoryName)
|
||||||
|
{
|
||||||
|
owner = string.Empty;
|
||||||
|
repositoryName = string.Empty;
|
||||||
|
|
||||||
|
if (!Uri.TryCreate(url, UriKind.Absolute, out var uri) ||
|
||||||
|
!string.Equals(uri.Host, "github.com", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var segments = uri.AbsolutePath
|
||||||
|
.Split('/', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries);
|
||||||
|
if (segments.Length != 2)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
owner = segments[0];
|
||||||
|
repositoryName = segments[1];
|
||||||
|
return !string.IsNullOrWhiteSpace(owner) && !string.IsNullOrWhiteSpace(repositoryName);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string? TryGetWorkspaceRepositoryRoot(string repositoryName)
|
||||||
{
|
{
|
||||||
var current = new DirectoryInfo(AppContext.BaseDirectory);
|
var current = new DirectoryInfo(AppContext.BaseDirectory);
|
||||||
while (current is not null)
|
while (current is not null)
|
||||||
{
|
{
|
||||||
var candidate = Path.Combine(current.FullName, "LanAirApp");
|
var candidate = Path.Combine(current.FullName, repositoryName);
|
||||||
if (File.Exists(Path.Combine(candidate, "airappmarket", "index.json")))
|
if (Directory.Exists(candidate))
|
||||||
{
|
{
|
||||||
return candidate;
|
return candidate;
|
||||||
}
|
}
|
||||||
@@ -68,6 +115,60 @@ internal static class AirAppMarketDefaults
|
|||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool TryParseRawGitHubUrl(
|
||||||
|
string url,
|
||||||
|
out string repositoryName,
|
||||||
|
out string relativePath)
|
||||||
|
{
|
||||||
|
repositoryName = string.Empty;
|
||||||
|
relativePath = string.Empty;
|
||||||
|
|
||||||
|
if (!Uri.TryCreate(url, UriKind.Absolute, out var uri) ||
|
||||||
|
!string.Equals(uri.Host, "raw.githubusercontent.com", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var segments = uri.AbsolutePath
|
||||||
|
.Split('/', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries);
|
||||||
|
if (segments.Length < 4)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
repositoryName = segments[1];
|
||||||
|
relativePath = Path.Combine(segments[3..]).Replace(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar);
|
||||||
|
return !string.IsNullOrWhiteSpace(repositoryName) && !string.IsNullOrWhiteSpace(relativePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool TryParseGitHubReleaseDownloadUrl(
|
||||||
|
string url,
|
||||||
|
out string repositoryName,
|
||||||
|
out string assetName)
|
||||||
|
{
|
||||||
|
repositoryName = string.Empty;
|
||||||
|
assetName = string.Empty;
|
||||||
|
|
||||||
|
if (!Uri.TryCreate(url, UriKind.Absolute, out var uri) ||
|
||||||
|
!string.Equals(uri.Host, "github.com", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var segments = uri.AbsolutePath
|
||||||
|
.Split('/', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries);
|
||||||
|
if (segments.Length != 6 ||
|
||||||
|
!string.Equals(segments[2], "releases", StringComparison.OrdinalIgnoreCase) ||
|
||||||
|
!string.Equals(segments[3], "download", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
repositoryName = segments[1];
|
||||||
|
assetName = Uri.UnescapeDataString(segments[5]);
|
||||||
|
return !string.IsNullOrWhiteSpace(repositoryName) && !string.IsNullOrWhiteSpace(assetName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal enum AirAppMarketLoadSource
|
internal enum AirAppMarketLoadSource
|
||||||
@@ -193,6 +294,24 @@ internal sealed class AirAppMarketIndexDocument
|
|||||||
return normalized;
|
return normalized;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal static string NormalizeReleaseTag(string? value, string propertyName, string sourceName)
|
||||||
|
{
|
||||||
|
var normalized = RequireValue(value, propertyName, sourceName);
|
||||||
|
if (!normalized.StartsWith("v", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException(
|
||||||
|
$"Market index '{sourceName}' declares invalid release tag '{normalized}' for '{propertyName}'. Expected format 'v1.2.3'.");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!TryParseVersion(normalized[1..], out _))
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException(
|
||||||
|
$"Market index '{sourceName}' declares invalid release tag '{normalized}' for '{propertyName}'.");
|
||||||
|
}
|
||||||
|
|
||||||
|
return normalized;
|
||||||
|
}
|
||||||
|
|
||||||
internal static void EnsureUrl(string url, string propertyName, string sourceName)
|
internal static void EnsureUrl(string url, string propertyName, string sourceName)
|
||||||
{
|
{
|
||||||
if (!Uri.TryCreate(url, UriKind.Absolute, out var uri) ||
|
if (!Uri.TryCreate(url, UriKind.Absolute, out var uri) ||
|
||||||
@@ -203,6 +322,24 @@ internal sealed class AirAppMarketIndexDocument
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal static string NormalizeGitHubRepositoryUrl(
|
||||||
|
string url,
|
||||||
|
string propertyName,
|
||||||
|
string sourceName)
|
||||||
|
{
|
||||||
|
EnsureUrl(url, propertyName, sourceName);
|
||||||
|
|
||||||
|
if (!AirAppMarketDefaults.TryParseGitHubRepositoryUrl(url, out var owner, out var repositoryName))
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException(
|
||||||
|
$"Market index '{sourceName}' declares invalid GitHub repository url '{url}' for '{propertyName}'.");
|
||||||
|
}
|
||||||
|
|
||||||
|
return string.Create(
|
||||||
|
CultureInfo.InvariantCulture,
|
||||||
|
$"https://github.com/{owner}/{repositoryName}");
|
||||||
|
}
|
||||||
|
|
||||||
internal static bool TryParseVersion(string? value, out Version? version)
|
internal static bool TryParseVersion(string? value, out Version? version)
|
||||||
{
|
{
|
||||||
version = null;
|
version = null;
|
||||||
@@ -260,6 +397,14 @@ internal sealed class AirAppMarketPluginEntry
|
|||||||
|
|
||||||
public string IconUrl { get; init; } = string.Empty;
|
public string IconUrl { get; init; } = string.Empty;
|
||||||
|
|
||||||
|
public string ReleaseTag { get; init; } = string.Empty;
|
||||||
|
|
||||||
|
public string ReleaseAssetName { get; init; } = string.Empty;
|
||||||
|
|
||||||
|
public string ProjectUrl { get; init; } = string.Empty;
|
||||||
|
|
||||||
|
public string ReadmeUrl { get; init; } = string.Empty;
|
||||||
|
|
||||||
public string HomepageUrl { get; init; } = string.Empty;
|
public string HomepageUrl { get; init; } = string.Empty;
|
||||||
|
|
||||||
public string RepositoryUrl { get; init; } = string.Empty;
|
public string RepositoryUrl { get; init; } = string.Empty;
|
||||||
@@ -272,6 +417,10 @@ internal sealed class AirAppMarketPluginEntry
|
|||||||
|
|
||||||
public string ReleaseNotes { get; init; } = string.Empty;
|
public string ReleaseNotes { get; init; } = string.Empty;
|
||||||
|
|
||||||
|
public bool HasReleaseDownloadMetadata =>
|
||||||
|
!string.IsNullOrWhiteSpace(ReleaseTag) &&
|
||||||
|
!string.IsNullOrWhiteSpace(ReleaseAssetName);
|
||||||
|
|
||||||
public AirAppMarketPluginEntry ValidateAndNormalize(string sourceName)
|
public AirAppMarketPluginEntry ValidateAndNormalize(string sourceName)
|
||||||
{
|
{
|
||||||
var normalizedTags = (Tags ?? [])
|
var normalizedTags = (Tags ?? [])
|
||||||
@@ -298,6 +447,14 @@ internal sealed class AirAppMarketPluginEntry
|
|||||||
var normalizedIconUrl = AirAppMarketIndexDocument.NormalizeValue(IconUrl)
|
var normalizedIconUrl = AirAppMarketIndexDocument.NormalizeValue(IconUrl)
|
||||||
?? throw new InvalidOperationException(
|
?? throw new InvalidOperationException(
|
||||||
$"Market index '{sourceName}' is missing required property '{nameof(IconUrl)}'.");
|
$"Market index '{sourceName}' is missing required property '{nameof(IconUrl)}'.");
|
||||||
|
var normalizedReleaseTag = AirAppMarketIndexDocument.NormalizeValue(ReleaseTag);
|
||||||
|
var normalizedReleaseAssetName = AirAppMarketIndexDocument.NormalizeValue(ReleaseAssetName);
|
||||||
|
var normalizedProjectUrl = AirAppMarketIndexDocument.NormalizeValue(ProjectUrl)
|
||||||
|
?? throw new InvalidOperationException(
|
||||||
|
$"Market index '{sourceName}' is missing required property '{nameof(ProjectUrl)}'.");
|
||||||
|
var normalizedReadmeUrl = AirAppMarketIndexDocument.NormalizeValue(ReadmeUrl)
|
||||||
|
?? throw new InvalidOperationException(
|
||||||
|
$"Market index '{sourceName}' is missing required property '{nameof(ReadmeUrl)}'.");
|
||||||
var normalizedHomepageUrl = AirAppMarketIndexDocument.NormalizeValue(HomepageUrl)
|
var normalizedHomepageUrl = AirAppMarketIndexDocument.NormalizeValue(HomepageUrl)
|
||||||
?? throw new InvalidOperationException(
|
?? throw new InvalidOperationException(
|
||||||
$"Market index '{sourceName}' is missing required property '{nameof(HomepageUrl)}'.");
|
$"Market index '{sourceName}' is missing required property '{nameof(HomepageUrl)}'.");
|
||||||
@@ -307,8 +464,30 @@ internal sealed class AirAppMarketPluginEntry
|
|||||||
|
|
||||||
AirAppMarketIndexDocument.EnsureUrl(normalizedDownloadUrl, nameof(DownloadUrl), sourceName);
|
AirAppMarketIndexDocument.EnsureUrl(normalizedDownloadUrl, nameof(DownloadUrl), sourceName);
|
||||||
AirAppMarketIndexDocument.EnsureUrl(normalizedIconUrl, nameof(IconUrl), sourceName);
|
AirAppMarketIndexDocument.EnsureUrl(normalizedIconUrl, nameof(IconUrl), sourceName);
|
||||||
|
normalizedProjectUrl = AirAppMarketIndexDocument.NormalizeGitHubRepositoryUrl(
|
||||||
|
normalizedProjectUrl,
|
||||||
|
nameof(ProjectUrl),
|
||||||
|
sourceName);
|
||||||
|
normalizedRepositoryUrl = AirAppMarketIndexDocument.NormalizeGitHubRepositoryUrl(
|
||||||
|
normalizedRepositoryUrl,
|
||||||
|
nameof(RepositoryUrl),
|
||||||
|
sourceName);
|
||||||
|
AirAppMarketIndexDocument.EnsureUrl(normalizedReadmeUrl, nameof(ReadmeUrl), sourceName);
|
||||||
AirAppMarketIndexDocument.EnsureUrl(normalizedHomepageUrl, nameof(HomepageUrl), sourceName);
|
AirAppMarketIndexDocument.EnsureUrl(normalizedHomepageUrl, nameof(HomepageUrl), sourceName);
|
||||||
AirAppMarketIndexDocument.EnsureUrl(normalizedRepositoryUrl, nameof(RepositoryUrl), sourceName);
|
|
||||||
|
if (string.IsNullOrWhiteSpace(normalizedReleaseTag) != string.IsNullOrWhiteSpace(normalizedReleaseAssetName))
|
||||||
|
{
|
||||||
|
throw new InvalidOperationException(
|
||||||
|
$"Market index '{sourceName}' must declare both '{nameof(ReleaseTag)}' and '{nameof(ReleaseAssetName)}' together for plugin '{Id}'.");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(normalizedReleaseTag))
|
||||||
|
{
|
||||||
|
normalizedReleaseTag = AirAppMarketIndexDocument.NormalizeReleaseTag(
|
||||||
|
normalizedReleaseTag,
|
||||||
|
nameof(ReleaseTag),
|
||||||
|
sourceName);
|
||||||
|
}
|
||||||
|
|
||||||
if (PackageSizeBytes <= 0)
|
if (PackageSizeBytes <= 0)
|
||||||
{
|
{
|
||||||
@@ -339,6 +518,10 @@ internal sealed class AirAppMarketPluginEntry
|
|||||||
Sha256 = normalizedSha,
|
Sha256 = normalizedSha,
|
||||||
PackageSizeBytes = PackageSizeBytes,
|
PackageSizeBytes = PackageSizeBytes,
|
||||||
IconUrl = normalizedIconUrl,
|
IconUrl = normalizedIconUrl,
|
||||||
|
ReleaseTag = normalizedReleaseTag ?? string.Empty,
|
||||||
|
ReleaseAssetName = normalizedReleaseAssetName ?? string.Empty,
|
||||||
|
ProjectUrl = normalizedProjectUrl,
|
||||||
|
ReadmeUrl = normalizedReadmeUrl,
|
||||||
HomepageUrl = normalizedHomepageUrl,
|
HomepageUrl = normalizedHomepageUrl,
|
||||||
RepositoryUrl = normalizedRepositoryUrl,
|
RepositoryUrl = normalizedRepositoryUrl,
|
||||||
Tags = normalizedTags,
|
Tags = normalizedTags,
|
||||||
|
|||||||
42
LanMountainDesktop/plugins/PluginMarketReadmeService.cs
Normal file
42
LanMountainDesktop/plugins/PluginMarketReadmeService.cs
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Views.SettingsPages;
|
||||||
|
|
||||||
|
internal sealed class AirAppMarketReadmeService : IDisposable
|
||||||
|
{
|
||||||
|
private readonly HttpClient _httpClient;
|
||||||
|
|
||||||
|
public AirAppMarketReadmeService()
|
||||||
|
{
|
||||||
|
_httpClient = new HttpClient
|
||||||
|
{
|
||||||
|
Timeout = TimeSpan.FromSeconds(20)
|
||||||
|
};
|
||||||
|
_httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("LanMountainDesktop-PluginMarketplace/1.0");
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<string> LoadAsync(
|
||||||
|
AirAppMarketPluginEntry plugin,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
ArgumentNullException.ThrowIfNull(plugin);
|
||||||
|
|
||||||
|
if (AirAppMarketDefaults.TryResolveWorkspaceFile(plugin.ReadmeUrl, out var localReadmePath))
|
||||||
|
{
|
||||||
|
return await File.ReadAllTextAsync(localReadmePath, cancellationToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
using var response = await _httpClient.GetAsync(plugin.ReadmeUrl, cancellationToken);
|
||||||
|
response.EnsureSuccessStatusCode();
|
||||||
|
return await response.Content.ReadAsStringAsync(cancellationToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
_httpClient.Dispose();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using LanMountainDesktop.Services;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Views.SettingsPages;
|
||||||
|
|
||||||
|
internal sealed class AirAppMarketReleaseResolverService
|
||||||
|
{
|
||||||
|
private readonly HttpClient _httpClient;
|
||||||
|
|
||||||
|
public AirAppMarketReleaseResolverService(HttpClient httpClient)
|
||||||
|
{
|
||||||
|
_httpClient = httpClient ?? throw new ArgumentNullException(nameof(httpClient));
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<string> ResolveDownloadUrlAsync(
|
||||||
|
AirAppMarketPluginEntry plugin,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
ArgumentNullException.ThrowIfNull(plugin);
|
||||||
|
|
||||||
|
if (!plugin.HasReleaseDownloadMetadata)
|
||||||
|
{
|
||||||
|
return plugin.DownloadUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!TryGetRepositoryIdentity(plugin, out var owner, out var repositoryName))
|
||||||
|
{
|
||||||
|
return plugin.DownloadUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
var releaseDownloadUrl = AirAppMarketDefaults.BuildGitHubReleaseDownloadUrl(
|
||||||
|
owner,
|
||||||
|
repositoryName,
|
||||||
|
plugin.ReleaseTag,
|
||||||
|
plugin.ReleaseAssetName);
|
||||||
|
|
||||||
|
if (AirAppMarketDefaults.TryResolveWorkspaceFile(releaseDownloadUrl, out _))
|
||||||
|
{
|
||||||
|
return releaseDownloadUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using var updateService = new GitHubReleaseUpdateService(owner, repositoryName, _httpClient);
|
||||||
|
var release = await updateService.GetReleaseByTagAsync(plugin.ReleaseTag, cancellationToken);
|
||||||
|
var asset = release?.Assets.FirstOrDefault(candidate =>
|
||||||
|
string.Equals(candidate.Name, plugin.ReleaseAssetName, StringComparison.OrdinalIgnoreCase));
|
||||||
|
|
||||||
|
return asset?.BrowserDownloadUrl ?? plugin.DownloadUrl;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
return plugin.DownloadUrl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool TryGetRepositoryIdentity(
|
||||||
|
AirAppMarketPluginEntry plugin,
|
||||||
|
out string owner,
|
||||||
|
out string repositoryName)
|
||||||
|
{
|
||||||
|
owner = string.Empty;
|
||||||
|
repositoryName = string.Empty;
|
||||||
|
|
||||||
|
return AirAppMarketDefaults.TryParseGitHubRepositoryUrl(plugin.RepositoryUrl, out owner, out repositoryName) ||
|
||||||
|
AirAppMarketDefaults.TryParseGitHubRepositoryUrl(plugin.ProjectUrl, out owner, out repositoryName);
|
||||||
|
}
|
||||||
|
}
|
||||||
25
LanMountainDesktop/plugins/PluginMarketSettingsPage.axaml
Normal file
25
LanMountainDesktop/plugins/PluginMarketSettingsPage.axaml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
<UserControl xmlns="https://github.com/avaloniaui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
d:DesignWidth="960"
|
||||||
|
d:DesignHeight="1000"
|
||||||
|
x:Class="LanMountainDesktop.Views.SettingsPages.PluginMarketSettingsPage">
|
||||||
|
|
||||||
|
<StackPanel x:Name="PluginMarketPanel"
|
||||||
|
Spacing="16">
|
||||||
|
<TextBlock x:Name="PluginMarketPanelTitleTextBlock"
|
||||||
|
FontSize="24"
|
||||||
|
FontWeight="SemiBold"
|
||||||
|
Foreground="{DynamicResource AdaptiveTextPrimaryBrush}"
|
||||||
|
Text="Plugin Market" />
|
||||||
|
|
||||||
|
<TextBlock x:Name="PluginMarketPanelSubtitleTextBlock"
|
||||||
|
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
||||||
|
TextWrapping="Wrap"
|
||||||
|
Text="Browse plugins from the official LanAirApp source and stage installs." />
|
||||||
|
|
||||||
|
<ContentControl x:Name="PluginMarketContentHost" />
|
||||||
|
</StackPanel>
|
||||||
|
</UserControl>
|
||||||
71
LanMountainDesktop/plugins/PluginMarketSettingsPage.axaml.cs
Normal file
71
LanMountainDesktop/plugins/PluginMarketSettingsPage.axaml.cs
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
using Avalonia;
|
||||||
|
using Avalonia.Controls;
|
||||||
|
using Avalonia.Media;
|
||||||
|
using LanMountainDesktop.Services;
|
||||||
|
|
||||||
|
namespace LanMountainDesktop.Views.SettingsPages;
|
||||||
|
|
||||||
|
public partial class PluginMarketSettingsPage : UserControl
|
||||||
|
{
|
||||||
|
private readonly AppSettingsService _appSettingsService = new();
|
||||||
|
private readonly LocalizationService _localizationService = new();
|
||||||
|
private PluginMarketEmbeddedView? _pluginMarketView;
|
||||||
|
|
||||||
|
public PluginMarketSettingsPage()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
AttachedToVisualTree += (_, _) => RefreshFromRuntime();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RefreshFromRuntime()
|
||||||
|
{
|
||||||
|
PluginMarketPanelTitleTextBlock.Text = L("settings.plugin_market.title", "Plugin Market");
|
||||||
|
PluginMarketPanelSubtitleTextBlock.Text = L(
|
||||||
|
"settings.plugin_market.subtitle",
|
||||||
|
"Browse plugins from the official LanAirApp source and stage installs.");
|
||||||
|
|
||||||
|
var runtime = (Application.Current as App)?.PluginRuntimeService;
|
||||||
|
if (runtime is null)
|
||||||
|
{
|
||||||
|
PluginMarketContentHost.Content = CreateUnavailableState();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_pluginMarketView is null)
|
||||||
|
{
|
||||||
|
_pluginMarketView = new PluginMarketEmbeddedView(runtime);
|
||||||
|
}
|
||||||
|
|
||||||
|
_pluginMarketView.RefreshLocalization();
|
||||||
|
_pluginMarketView.RefreshInstalledSnapshot();
|
||||||
|
|
||||||
|
if (!ReferenceEquals(PluginMarketContentHost.Content, _pluginMarketView))
|
||||||
|
{
|
||||||
|
PluginMarketContentHost.Content = _pluginMarketView;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private Control CreateUnavailableState()
|
||||||
|
{
|
||||||
|
return new Border
|
||||||
|
{
|
||||||
|
Background = new SolidColorBrush(Color.Parse("#14000000")),
|
||||||
|
CornerRadius = new CornerRadius(16),
|
||||||
|
Padding = new Thickness(16),
|
||||||
|
Child = new TextBlock
|
||||||
|
{
|
||||||
|
Text = L(
|
||||||
|
"settings.plugin_market.unavailable",
|
||||||
|
"Plugin runtime is not available, so the official market cannot be opened right now."),
|
||||||
|
TextWrapping = TextWrapping.Wrap,
|
||||||
|
Foreground = PluginMarketPanelSubtitleTextBlock.Foreground
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private string L(string key, string fallback)
|
||||||
|
{
|
||||||
|
var snapshot = _appSettingsService.Load();
|
||||||
|
return _localizationService.GetString(snapshot.LanguageCode, key, fallback);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,6 +5,7 @@ using System.IO;
|
|||||||
using System.IO.Compression;
|
using System.IO.Compression;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
using System.Text.Json;
|
||||||
using Avalonia;
|
using Avalonia;
|
||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
using Avalonia.Markup.Xaml;
|
using Avalonia.Markup.Xaml;
|
||||||
@@ -16,8 +17,11 @@ namespace LanMountainDesktop.Services;
|
|||||||
|
|
||||||
public sealed class PluginRuntimeService : IDisposable
|
public sealed class PluginRuntimeService : IDisposable
|
||||||
{
|
{
|
||||||
|
private const string PendingDeletionFileName = ".pending-plugin-deletions.json";
|
||||||
|
|
||||||
private readonly PluginLoader _loader;
|
private readonly PluginLoader _loader;
|
||||||
private readonly AppSettingsService _appSettingsService = new();
|
private readonly AppSettingsService _appSettingsService = new();
|
||||||
|
private readonly IHostApplicationLifecycle _applicationLifecycle = new HostApplicationLifecycleService();
|
||||||
private readonly IServiceProvider _hostServices;
|
private readonly IServiceProvider _hostServices;
|
||||||
private readonly IPluginPackageManager _packageManager;
|
private readonly IPluginPackageManager _packageManager;
|
||||||
private readonly List<LoadedPlugin> _loadedPlugins = [];
|
private readonly List<LoadedPlugin> _loadedPlugins = [];
|
||||||
@@ -25,12 +29,13 @@ public sealed class PluginRuntimeService : IDisposable
|
|||||||
private readonly List<PluginCatalogEntry> _catalog = [];
|
private readonly List<PluginCatalogEntry> _catalog = [];
|
||||||
private readonly List<PluginSettingsPageContribution> _settingsPages = [];
|
private readonly List<PluginSettingsPageContribution> _settingsPages = [];
|
||||||
private readonly List<PluginDesktopComponentContribution> _desktopComponents = [];
|
private readonly List<PluginDesktopComponentContribution> _desktopComponents = [];
|
||||||
|
private readonly object _packageMutationGate = new();
|
||||||
|
|
||||||
public PluginRuntimeService()
|
public PluginRuntimeService()
|
||||||
{
|
{
|
||||||
PluginsDirectory = Path.Combine(AppContext.BaseDirectory, "Extensions", "Plugins");
|
PluginsDirectory = Path.Combine(AppContext.BaseDirectory, "Extensions", "Plugins");
|
||||||
_packageManager = new PluginRuntimePackageManager(this);
|
_packageManager = new PluginRuntimePackageManager(this);
|
||||||
_hostServices = new PluginHostServiceProvider(_packageManager);
|
_hostServices = new PluginHostServiceProvider(_packageManager, _applicationLifecycle);
|
||||||
_loader = new PluginLoader(CreateOptions());
|
_loader = new PluginLoader(CreateOptions());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -49,6 +54,7 @@ public sealed class PluginRuntimeService : IDisposable
|
|||||||
public void LoadInstalledPlugins()
|
public void LoadInstalledPlugins()
|
||||||
{
|
{
|
||||||
Directory.CreateDirectory(PluginsDirectory);
|
Directory.CreateDirectory(PluginsDirectory);
|
||||||
|
ApplyPendingPluginDeletions();
|
||||||
UnloadInstalledPlugins();
|
UnloadInstalledPlugins();
|
||||||
|
|
||||||
var disabledPluginIds = GetDisabledPluginIds();
|
var disabledPluginIds = GetDisabledPluginIds();
|
||||||
@@ -170,6 +176,7 @@ public sealed class PluginRuntimeService : IDisposable
|
|||||||
.OrderBy(id => id, StringComparer.OrdinalIgnoreCase)
|
.OrderBy(id => id, StringComparer.OrdinalIgnoreCase)
|
||||||
.ToList();
|
.ToList();
|
||||||
_appSettingsService.Save(snapshot);
|
_appSettingsService.Save(snapshot);
|
||||||
|
PendingRestartStateService.SetPending(PendingRestartStateService.PluginCatalogReason, true);
|
||||||
|
|
||||||
for (var i = 0; i < _catalog.Count; i++)
|
for (var i = 0; i < _catalog.Count; i++)
|
||||||
{
|
{
|
||||||
@@ -184,7 +191,58 @@ public sealed class PluginRuntimeService : IDisposable
|
|||||||
|
|
||||||
public PluginManifest InstallPluginPackage(string packagePath)
|
public PluginManifest InstallPluginPackage(string packagePath)
|
||||||
{
|
{
|
||||||
return InstallPluginPackageCore(packagePath).Manifest;
|
lock (_packageMutationGate)
|
||||||
|
{
|
||||||
|
return InstallPluginPackageCore(packagePath).Manifest;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public PluginManifest RegisterInstalledPluginPackage(string packagePath)
|
||||||
|
{
|
||||||
|
lock (_packageMutationGate)
|
||||||
|
{
|
||||||
|
return RegisterInstalledPluginPackageCore(packagePath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool DeleteInstalledPlugin(string pluginId)
|
||||||
|
{
|
||||||
|
lock (_packageMutationGate)
|
||||||
|
{
|
||||||
|
return DeleteInstalledPluginCore(pluginId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool DeleteInstalledPluginCore(string pluginId)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(pluginId))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var entry = _catalog.FirstOrDefault(candidate =>
|
||||||
|
string.Equals(candidate.Manifest.Id, pluginId, StringComparison.OrdinalIgnoreCase));
|
||||||
|
if (entry is null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var targetPath = ResolvePluginRemovalTargetPath(entry);
|
||||||
|
if (string.IsNullOrWhiteSpace(targetPath))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var fullTargetPath = Path.GetFullPath(targetPath);
|
||||||
|
if (!TryDeletePluginTarget(fullTargetPath))
|
||||||
|
{
|
||||||
|
RegisterPendingPluginDeletion(fullTargetPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
RemovePluginFromSnapshot(pluginId);
|
||||||
|
RemovePluginFromCatalog(pluginId);
|
||||||
|
PendingRestartStateService.SetPending(PendingRestartStateService.PluginCatalogReason, true);
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal IReadOnlyList<InstalledPluginInfo> GetInstalledPluginsSnapshot()
|
internal IReadOnlyList<InstalledPluginInfo> GetInstalledPluginsSnapshot()
|
||||||
@@ -219,20 +277,45 @@ public sealed class PluginRuntimeService : IDisposable
|
|||||||
Directory.CreateDirectory(PluginsDirectory);
|
Directory.CreateDirectory(PluginsDirectory);
|
||||||
|
|
||||||
var manifest = ReadManifestFromPackage(fullPackagePath);
|
var manifest = ReadManifestFromPackage(fullPackagePath);
|
||||||
|
AppLogger.Info(
|
||||||
|
"PluginRuntime",
|
||||||
|
$"Installing package. PluginId='{manifest.Id}'; Source='{fullPackagePath}'; PluginsDirectory='{PluginsDirectory}'.");
|
||||||
var replacedExisting = RemoveExistingPluginPackages(manifest.Id, fullPackagePath);
|
var replacedExisting = RemoveExistingPluginPackages(manifest.Id, fullPackagePath);
|
||||||
|
|
||||||
var destinationPath = Path.Combine(PluginsDirectory, BuildInstalledPackageFileName(manifest.Id));
|
var destinationPath = Path.Combine(PluginsDirectory, BuildInstalledPackageFileName(manifest.Id));
|
||||||
if (!string.Equals(fullPackagePath, Path.GetFullPath(destinationPath), StringComparison.OrdinalIgnoreCase))
|
if (!string.Equals(fullPackagePath, Path.GetFullPath(destinationPath), StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
File.Copy(fullPackagePath, destinationPath, overwrite: true);
|
FileOperationRetryHelper.CopyWithRetry(fullPackagePath, destinationPath, overwrite: true, "PluginRuntime");
|
||||||
}
|
}
|
||||||
|
|
||||||
UpdateCatalogAfterPackageInstall(manifest, destinationPath);
|
UpdateCatalogAfterPackageInstall(manifest, destinationPath);
|
||||||
PendingRestartStateService.SetPending(PendingRestartStateService.PluginCatalogReason, true);
|
PendingRestartStateService.SetPending(PendingRestartStateService.PluginCatalogReason, true);
|
||||||
|
AppLogger.Info(
|
||||||
|
"PluginRuntime",
|
||||||
|
$"Package staged. PluginId='{manifest.Id}'; Destination='{destinationPath}'; ReplacedExisting={replacedExisting}.");
|
||||||
|
|
||||||
return new PluginPackageInstallResult(manifest, replacedExisting, RestartRequired: true);
|
return new PluginPackageInstallResult(manifest, replacedExisting, RestartRequired: true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private PluginManifest RegisterInstalledPluginPackageCore(string packagePath)
|
||||||
|
{
|
||||||
|
ArgumentException.ThrowIfNullOrWhiteSpace(packagePath);
|
||||||
|
|
||||||
|
var fullPackagePath = Path.GetFullPath(packagePath);
|
||||||
|
if (!File.Exists(fullPackagePath))
|
||||||
|
{
|
||||||
|
throw new FileNotFoundException($"Plugin package '{fullPackagePath}' was not found.", fullPackagePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
var manifest = ReadManifestFromPackage(fullPackagePath);
|
||||||
|
AppLogger.Info(
|
||||||
|
"PluginRuntime",
|
||||||
|
$"Registering externally installed package. PluginId='{manifest.Id}'; Source='{fullPackagePath}'.");
|
||||||
|
UpdateCatalogAfterPackageInstall(manifest, fullPackagePath);
|
||||||
|
PendingRestartStateService.SetPending(PendingRestartStateService.PluginCatalogReason, true);
|
||||||
|
return manifest;
|
||||||
|
}
|
||||||
|
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
UnloadInstalledPlugins();
|
UnloadInstalledPlugins();
|
||||||
@@ -349,7 +432,7 @@ public sealed class PluginRuntimeService : IDisposable
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
File.Delete(existingPackagePath);
|
FileOperationRetryHelper.DeleteFileWithRetry(existingPackagePath, "PluginRuntime");
|
||||||
replacedExisting = true;
|
replacedExisting = true;
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
@@ -445,6 +528,150 @@ public sealed class PluginRuntimeService : IDisposable
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void ApplyPendingPluginDeletions()
|
||||||
|
{
|
||||||
|
var pendingPaths = ReadPendingPluginDeletions();
|
||||||
|
if (pendingPaths.Count == 0)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var remainingPaths = new List<string>();
|
||||||
|
foreach (var path in pendingPaths)
|
||||||
|
{
|
||||||
|
if (!TryDeletePluginTarget(path))
|
||||||
|
{
|
||||||
|
remainingPaths.Add(path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
SavePendingPluginDeletions(remainingPaths);
|
||||||
|
}
|
||||||
|
|
||||||
|
private string ResolvePluginRemovalTargetPath(PluginCatalogEntry entry)
|
||||||
|
{
|
||||||
|
if (entry.IsPackage)
|
||||||
|
{
|
||||||
|
return entry.SourcePath;
|
||||||
|
}
|
||||||
|
|
||||||
|
var fullSourcePath = Path.GetFullPath(entry.SourcePath);
|
||||||
|
if (File.Exists(fullSourcePath) &&
|
||||||
|
string.Equals(Path.GetFileName(fullSourcePath), "plugin.json", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return Path.GetDirectoryName(fullSourcePath) ?? fullSourcePath;
|
||||||
|
}
|
||||||
|
|
||||||
|
return fullSourcePath;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool TryDeletePluginTarget(string targetPath)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (File.Exists(targetPath))
|
||||||
|
{
|
||||||
|
File.Delete(targetPath);
|
||||||
|
}
|
||||||
|
else if (Directory.Exists(targetPath))
|
||||||
|
{
|
||||||
|
Directory.Delete(targetPath, recursive: true);
|
||||||
|
}
|
||||||
|
|
||||||
|
return !File.Exists(targetPath) && !Directory.Exists(targetPath);
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void RegisterPendingPluginDeletion(string targetPath)
|
||||||
|
{
|
||||||
|
var pendingPaths = ReadPendingPluginDeletions();
|
||||||
|
if (pendingPaths.Contains(targetPath, StringComparer.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
pendingPaths.Add(targetPath);
|
||||||
|
SavePendingPluginDeletions(pendingPaths);
|
||||||
|
}
|
||||||
|
|
||||||
|
private List<string> ReadPendingPluginDeletions()
|
||||||
|
{
|
||||||
|
var pendingDeletionFilePath = GetPendingDeletionFilePath();
|
||||||
|
if (!File.Exists(pendingDeletionFilePath))
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var json = File.ReadAllText(pendingDeletionFilePath);
|
||||||
|
var paths = JsonSerializer.Deserialize<List<string>>(json);
|
||||||
|
return paths?
|
||||||
|
.Where(path => !string.IsNullOrWhiteSpace(path))
|
||||||
|
.Select(Path.GetFullPath)
|
||||||
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
||||||
|
.ToList() ?? [];
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SavePendingPluginDeletions(IEnumerable<string> pendingPaths)
|
||||||
|
{
|
||||||
|
var pendingDeletionFilePath = GetPendingDeletionFilePath();
|
||||||
|
var normalizedPaths = pendingPaths
|
||||||
|
.Where(path => !string.IsNullOrWhiteSpace(path))
|
||||||
|
.Select(Path.GetFullPath)
|
||||||
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
||||||
|
.OrderBy(path => path, StringComparer.OrdinalIgnoreCase)
|
||||||
|
.ToArray();
|
||||||
|
|
||||||
|
if (normalizedPaths.Length == 0)
|
||||||
|
{
|
||||||
|
if (File.Exists(pendingDeletionFilePath))
|
||||||
|
{
|
||||||
|
File.Delete(pendingDeletionFilePath);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Directory.CreateDirectory(PluginsDirectory);
|
||||||
|
var json = JsonSerializer.Serialize(normalizedPaths, new JsonSerializerOptions
|
||||||
|
{
|
||||||
|
WriteIndented = true
|
||||||
|
});
|
||||||
|
File.WriteAllText(pendingDeletionFilePath, json);
|
||||||
|
}
|
||||||
|
|
||||||
|
private string GetPendingDeletionFilePath()
|
||||||
|
{
|
||||||
|
return Path.Combine(PluginsDirectory, PendingDeletionFileName);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void RemovePluginFromSnapshot(string pluginId)
|
||||||
|
{
|
||||||
|
var snapshot = _appSettingsService.Load();
|
||||||
|
if (snapshot.DisabledPluginIds.RemoveAll(id => string.Equals(id, pluginId, StringComparison.OrdinalIgnoreCase)) > 0)
|
||||||
|
{
|
||||||
|
_appSettingsService.Save(snapshot);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void RemovePluginFromCatalog(string pluginId)
|
||||||
|
{
|
||||||
|
_catalog.RemoveAll(entry => string.Equals(entry.Manifest.Id, pluginId, StringComparison.OrdinalIgnoreCase));
|
||||||
|
_settingsPages.RemoveAll(entry => string.Equals(entry.Plugin.Manifest.Id, pluginId, StringComparison.OrdinalIgnoreCase));
|
||||||
|
_desktopComponents.RemoveAll(entry => string.Equals(entry.Plugin.Manifest.Id, pluginId, StringComparison.OrdinalIgnoreCase));
|
||||||
|
_loadResults.RemoveAll(entry => string.Equals(entry.Manifest?.Id, pluginId, StringComparison.OrdinalIgnoreCase));
|
||||||
|
}
|
||||||
|
|
||||||
private sealed record PluginCandidate(
|
private sealed record PluginCandidate(
|
||||||
string SourcePath,
|
string SourcePath,
|
||||||
PluginManifest Manifest,
|
PluginManifest Manifest,
|
||||||
@@ -453,17 +680,29 @@ public sealed class PluginRuntimeService : IDisposable
|
|||||||
private sealed class PluginHostServiceProvider : IServiceProvider
|
private sealed class PluginHostServiceProvider : IServiceProvider
|
||||||
{
|
{
|
||||||
private readonly IPluginPackageManager _packageManager;
|
private readonly IPluginPackageManager _packageManager;
|
||||||
|
private readonly IHostApplicationLifecycle _applicationLifecycle;
|
||||||
|
|
||||||
public PluginHostServiceProvider(IPluginPackageManager packageManager)
|
public PluginHostServiceProvider(
|
||||||
|
IPluginPackageManager packageManager,
|
||||||
|
IHostApplicationLifecycle applicationLifecycle)
|
||||||
{
|
{
|
||||||
_packageManager = packageManager;
|
_packageManager = packageManager;
|
||||||
|
_applicationLifecycle = applicationLifecycle;
|
||||||
}
|
}
|
||||||
|
|
||||||
public object? GetService(Type serviceType)
|
public object? GetService(Type serviceType)
|
||||||
{
|
{
|
||||||
return serviceType == typeof(IPluginPackageManager)
|
if (serviceType == typeof(IPluginPackageManager))
|
||||||
? _packageManager
|
{
|
||||||
: null;
|
return _packageManager;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (serviceType == typeof(IHostApplicationLifecycle))
|
||||||
|
{
|
||||||
|
return _applicationLifecycle;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ using Avalonia.Controls;
|
|||||||
using Avalonia.Layout;
|
using Avalonia.Layout;
|
||||||
using Avalonia.Media;
|
using Avalonia.Media;
|
||||||
using Avalonia.Platform.Storage;
|
using Avalonia.Platform.Storage;
|
||||||
|
using FluentIcons.Avalonia.Fluent;
|
||||||
|
using FluentIcons.Common;
|
||||||
using FluentAvalonia.UI.Controls;
|
using FluentAvalonia.UI.Controls;
|
||||||
using LanMountainDesktop.PluginSdk;
|
using LanMountainDesktop.PluginSdk;
|
||||||
using LanMountainDesktop.Services;
|
using LanMountainDesktop.Services;
|
||||||
@@ -18,10 +20,10 @@ public partial class PluginSettingsPage : UserControl
|
|||||||
{
|
{
|
||||||
private static readonly IBrush SuccessBrush = new SolidColorBrush(Color.Parse("#FF0F766E"));
|
private static readonly IBrush SuccessBrush = new SolidColorBrush(Color.Parse("#FF0F766E"));
|
||||||
private static readonly IBrush ErrorBrush = new SolidColorBrush(Color.Parse("#FFC42B1C"));
|
private static readonly IBrush ErrorBrush = new SolidColorBrush(Color.Parse("#FFC42B1C"));
|
||||||
|
private static readonly IBrush DestructiveBrush = new SolidColorBrush(Color.Parse("#FFF87171"));
|
||||||
|
|
||||||
private readonly AppSettingsService _appSettingsService = new();
|
private readonly AppSettingsService _appSettingsService = new();
|
||||||
private readonly LocalizationService _localizationService = new();
|
private readonly LocalizationService _localizationService = new();
|
||||||
private PluginMarketEmbeddedView? _pluginMarketView;
|
|
||||||
private string? _packageImportStatusMessage;
|
private string? _packageImportStatusMessage;
|
||||||
private bool _packageImportStatusIsError;
|
private bool _packageImportStatusIsError;
|
||||||
|
|
||||||
@@ -34,47 +36,21 @@ public partial class PluginSettingsPage : UserControl
|
|||||||
public void RefreshFromRuntime()
|
public void RefreshFromRuntime()
|
||||||
{
|
{
|
||||||
var runtime = (Application.Current as App)?.PluginRuntimeService;
|
var runtime = (Application.Current as App)?.PluginRuntimeService;
|
||||||
PluginMarketSettingsExpander.Header = L("settings.plugins.market_header", "Official Market");
|
|
||||||
PluginMarketSettingsExpander.Description = L(
|
|
||||||
"settings.plugins.market_desc",
|
|
||||||
"Browse plugins from the official LanAirApp source and stage installs.");
|
|
||||||
PluginMarketDescriptionTextBlock.Text = L(
|
|
||||||
"settings.plugins.market_hint",
|
|
||||||
"Use the official market source hosted in LanAirApp to discover and stage plugin installs.");
|
|
||||||
UpdateInstallerUi(runtime);
|
UpdateInstallerUi(runtime);
|
||||||
if (runtime is null)
|
if (runtime is null)
|
||||||
{
|
{
|
||||||
PluginSystemStatusTextBlock.Text = L("settings.plugins.runtime_unavailable", "Plugin runtime is not available.");
|
PluginSystemStatusTextBlock.Text = L("settings.plugins.runtime_unavailable", "Plugin runtime is not available.");
|
||||||
PluginRuntimeSummaryPanel.Children.Clear();
|
PluginRuntimeSummaryPanel.Children.Clear();
|
||||||
PluginCatalogItemsHost.Children.Clear();
|
InstalledPluginsSettingsExpander.Items.Clear();
|
||||||
PluginRestartHintTextBlock.IsVisible = false;
|
PluginRestartHintTextBlock.IsVisible = false;
|
||||||
PluginMarketContentHost.Content = CreateSummaryLine(
|
PluginCatalogEmptyTextBlock.IsVisible = false;
|
||||||
L("settings.plugins.market_unavailable", "Plugin runtime is not available, so the official market cannot be opened right now."));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
EnsurePluginMarketView(runtime);
|
|
||||||
_pluginMarketView?.RefreshLocalization();
|
|
||||||
_pluginMarketView?.RefreshInstalledSnapshot();
|
|
||||||
BuildRuntimeSummary(runtime);
|
BuildRuntimeSummary(runtime);
|
||||||
BuildPluginCatalog(runtime);
|
BuildPluginCatalog(runtime);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void EnsurePluginMarketView(PluginRuntimeService runtime)
|
|
||||||
{
|
|
||||||
if (_pluginMarketView is null)
|
|
||||||
{
|
|
||||||
_pluginMarketView = new PluginMarketEmbeddedView(runtime);
|
|
||||||
PluginMarketContentHost.Content = _pluginMarketView;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!ReferenceEquals(PluginMarketContentHost.Content, _pluginMarketView))
|
|
||||||
{
|
|
||||||
PluginMarketContentHost.Content = _pluginMarketView;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void UpdateInstallerUi(PluginRuntimeService? runtime)
|
private void UpdateInstallerUi(PluginRuntimeService? runtime)
|
||||||
{
|
{
|
||||||
InstallPluginPackageButton.Content = L("settings.plugins.install_button", "Open .laapp package");
|
InstallPluginPackageButton.Content = L("settings.plugins.install_button", "Open .laapp package");
|
||||||
@@ -102,7 +78,7 @@ public partial class PluginSettingsPage : UserControl
|
|||||||
"Detected {0} plugin(s); enabled {1}; loaded {2}; settings pages {3}; widgets {4}; failures {5}.",
|
"Detected {0} plugin(s); enabled {1}; loaded {2}; settings pages {3}; widgets {4}; failures {5}.",
|
||||||
runtime.Catalog.Count,
|
runtime.Catalog.Count,
|
||||||
enabledCount,
|
enabledCount,
|
||||||
runtime.LoadedPlugins.Count,
|
runtime.Catalog.Count(entry => entry.IsLoaded),
|
||||||
runtime.SettingsPages.Count,
|
runtime.SettingsPages.Count,
|
||||||
runtime.DesktopComponents.Count,
|
runtime.DesktopComponents.Count,
|
||||||
failures.Length);
|
failures.Length);
|
||||||
@@ -127,7 +103,7 @@ public partial class PluginSettingsPage : UserControl
|
|||||||
|
|
||||||
private void BuildPluginCatalog(PluginRuntimeService runtime)
|
private void BuildPluginCatalog(PluginRuntimeService runtime)
|
||||||
{
|
{
|
||||||
PluginCatalogItemsHost.Children.Clear();
|
InstalledPluginsSettingsExpander.Items.Clear();
|
||||||
|
|
||||||
var plugins = runtime.Catalog
|
var plugins = runtime.Catalog
|
||||||
.OrderBy(entry => entry.Manifest.Name, StringComparer.OrdinalIgnoreCase)
|
.OrderBy(entry => entry.Manifest.Name, StringComparer.OrdinalIgnoreCase)
|
||||||
@@ -138,86 +114,20 @@ public partial class PluginSettingsPage : UserControl
|
|||||||
|
|
||||||
foreach (var plugin in plugins)
|
foreach (var plugin in plugins)
|
||||||
{
|
{
|
||||||
PluginCatalogItemsHost.Children.Add(CreatePluginCatalogItem(runtime, plugin));
|
InstalledPluginsSettingsExpander.Items.Add(CreatePluginCatalogItem(runtime, plugin));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private Control CreatePluginCatalogItem(PluginRuntimeService runtime, PluginCatalogEntry entry)
|
private SettingsExpanderItem CreatePluginCatalogItem(PluginRuntimeService runtime, PluginCatalogEntry entry)
|
||||||
{
|
{
|
||||||
var title = new TextBlock
|
return new SettingsExpanderItem
|
||||||
{
|
{
|
||||||
Text = entry.Manifest.Name,
|
Content = entry.Manifest.Name,
|
||||||
FontSize = 16,
|
Description = BuildPluginSubtitle(entry),
|
||||||
FontWeight = FontWeight.SemiBold,
|
IconSource = CreatePluginCatalogIconSource(),
|
||||||
TextWrapping = TextWrapping.Wrap
|
IsClickEnabled = false,
|
||||||
|
Footer = CreatePluginCatalogActions(runtime, entry)
|
||||||
};
|
};
|
||||||
|
|
||||||
var subtitle = new TextBlock
|
|
||||||
{
|
|
||||||
Text = BuildPluginSubtitle(entry),
|
|
||||||
Foreground = PluginSystemDescriptionTextBlock.Foreground,
|
|
||||||
TextWrapping = TextWrapping.Wrap
|
|
||||||
};
|
|
||||||
|
|
||||||
var enabledToggle = new ToggleSwitch
|
|
||||||
{
|
|
||||||
IsChecked = entry.IsEnabled,
|
|
||||||
OnContent = L("settings.plugins.toggle_on", "Enabled"),
|
|
||||||
OffContent = L("settings.plugins.toggle_off", "Disabled"),
|
|
||||||
HorizontalAlignment = HorizontalAlignment.Right,
|
|
||||||
VerticalAlignment = VerticalAlignment.Center
|
|
||||||
};
|
|
||||||
|
|
||||||
enabledToggle.IsCheckedChanged += (_, _) => OnPluginEnableChanged(runtime, entry, enabledToggle.IsChecked == true);
|
|
||||||
|
|
||||||
var header = new Grid
|
|
||||||
{
|
|
||||||
ColumnDefinitions = new ColumnDefinitions("*,Auto"),
|
|
||||||
ColumnSpacing = 12,
|
|
||||||
Children =
|
|
||||||
{
|
|
||||||
new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 4,
|
|
||||||
Children = { title, subtitle }
|
|
||||||
},
|
|
||||||
enabledToggle
|
|
||||||
}
|
|
||||||
};
|
|
||||||
Grid.SetColumn(enabledToggle, 1);
|
|
||||||
|
|
||||||
var details = new TextBlock
|
|
||||||
{
|
|
||||||
Text = BuildPluginDetails(entry),
|
|
||||||
Foreground = PluginSystemDescriptionTextBlock.Foreground,
|
|
||||||
TextWrapping = TextWrapping.Wrap
|
|
||||||
};
|
|
||||||
|
|
||||||
return new Border
|
|
||||||
{
|
|
||||||
Background = new SolidColorBrush(Color.Parse("#14000000")),
|
|
||||||
CornerRadius = new CornerRadius(16),
|
|
||||||
Padding = new Thickness(14),
|
|
||||||
Child = new StackPanel
|
|
||||||
{
|
|
||||||
Spacing = 10,
|
|
||||||
Children = { header, details }
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnPluginEnableChanged(PluginRuntimeService runtime, PluginCatalogEntry entry, bool isEnabled)
|
|
||||||
{
|
|
||||||
runtime.SetPluginEnabled(entry.Manifest.Id, isEnabled);
|
|
||||||
BuildRuntimeSummary(runtime);
|
|
||||||
BuildPluginCatalog(runtime);
|
|
||||||
PluginSystemStatusTextBlock.Text = F(
|
|
||||||
"settings.plugins.toggle_result_format",
|
|
||||||
"Plugin '{0}' was {1} for the next launch. Restart the app to apply page and widget changes.",
|
|
||||||
entry.Manifest.Name,
|
|
||||||
isEnabled
|
|
||||||
? L("settings.plugins.toggle_state_enabled", "enabled")
|
|
||||||
: L("settings.plugins.toggle_state_disabled", "disabled"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private async void OnInstallPluginPackageClick(object? sender, Avalonia.Interactivity.RoutedEventArgs e)
|
private async void OnInstallPluginPackageClick(object? sender, Avalonia.Interactivity.RoutedEventArgs e)
|
||||||
@@ -275,6 +185,7 @@ public partial class PluginSettingsPage : UserControl
|
|||||||
|
|
||||||
var manifest = runtime.InstallPluginPackage(temporaryPackagePath);
|
var manifest = runtime.InstallPluginPackage(temporaryPackagePath);
|
||||||
RefreshFromRuntime();
|
RefreshFromRuntime();
|
||||||
|
RefreshPluginNavigation(TopLevel.GetTopLevel(this));
|
||||||
SetPackageImportStatus(
|
SetPackageImportStatus(
|
||||||
F(
|
F(
|
||||||
"settings.plugins.install_success_format",
|
"settings.plugins.install_success_format",
|
||||||
@@ -307,6 +218,79 @@ public partial class PluginSettingsPage : UserControl
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void OnDeletePluginClick(PluginRuntimeService runtime, PluginCatalogEntry entry)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!runtime.DeleteInstalledPlugin(entry.Manifest.Id))
|
||||||
|
{
|
||||||
|
SetPackageImportStatus(
|
||||||
|
F(
|
||||||
|
"settings.plugins.delete_failed_format",
|
||||||
|
"Failed to delete plugin: {0}",
|
||||||
|
entry.Manifest.Name),
|
||||||
|
isError: true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
RefreshFromRuntime();
|
||||||
|
RefreshPluginNavigation(TopLevel.GetTopLevel(this));
|
||||||
|
PluginSystemStatusTextBlock.Text = F(
|
||||||
|
"settings.plugins.delete_success_format",
|
||||||
|
"Plugin '{0}' was staged for deletion. Restart the app to finish removing it.",
|
||||||
|
entry.Manifest.Name);
|
||||||
|
SetPackageImportStatus(
|
||||||
|
F(
|
||||||
|
"settings.plugins.delete_success_format",
|
||||||
|
"Plugin '{0}' was staged for deletion. Restart the app to finish removing it.",
|
||||||
|
entry.Manifest.Name),
|
||||||
|
isError: false);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
SetPackageImportStatus(
|
||||||
|
F(
|
||||||
|
"settings.plugins.delete_failed_detail_format",
|
||||||
|
"Failed to delete plugin '{0}': {1}",
|
||||||
|
entry.Manifest.Name,
|
||||||
|
ex.Message),
|
||||||
|
isError: true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnPluginEnabledChanged(PluginRuntimeService runtime, PluginCatalogEntry entry, bool isEnabled)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!runtime.SetPluginEnabled(entry.Manifest.Id, isEnabled))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
RefreshFromRuntime();
|
||||||
|
var toggleState = isEnabled
|
||||||
|
? L("settings.plugins.toggle_state_enabled", "enabled")
|
||||||
|
: L("settings.plugins.toggle_state_disabled", "disabled");
|
||||||
|
SetPackageImportStatus(
|
||||||
|
F(
|
||||||
|
"settings.plugins.toggle_result_format",
|
||||||
|
"Plugin '{0}' was {1} for the next launch. Restart the app to apply page and widget changes.",
|
||||||
|
entry.Manifest.Name,
|
||||||
|
toggleState),
|
||||||
|
isError: false);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
SetPackageImportStatus(
|
||||||
|
F(
|
||||||
|
"settings.plugins.toggle_failed_detail_format",
|
||||||
|
"Failed to update plugin '{0}': {1}",
|
||||||
|
entry.Manifest.Name,
|
||||||
|
ex.Message),
|
||||||
|
isError: true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void RefreshPluginNavigation(TopLevel? topLevel)
|
private void RefreshPluginNavigation(TopLevel? topLevel)
|
||||||
{
|
{
|
||||||
switch (topLevel)
|
switch (topLevel)
|
||||||
@@ -329,32 +313,13 @@ public partial class PluginSettingsPage : UserControl
|
|||||||
|
|
||||||
private string BuildPluginSubtitle(PluginCatalogEntry entry)
|
private string BuildPluginSubtitle(PluginCatalogEntry entry)
|
||||||
{
|
{
|
||||||
var source = entry.IsPackage
|
var publisher = string.IsNullOrWhiteSpace(entry.Manifest.Author)
|
||||||
? L("settings.plugins.source_package", ".laapp package")
|
? L("settings.plugins.publisher_unknown", "Unknown publisher")
|
||||||
: L("settings.plugins.source_manifest", "Loose manifest");
|
: entry.Manifest.Author;
|
||||||
var state = entry.IsEnabled
|
|
||||||
? entry.IsLoaded
|
|
||||||
? L("settings.plugins.state.loaded", "Loaded")
|
|
||||||
: L("settings.plugins.state.load_failed", "Load failed")
|
|
||||||
: L("settings.plugins.state.disabled", "Disabled");
|
|
||||||
return F(
|
return F(
|
||||||
"settings.plugins.subtitle_format",
|
"settings.plugins.publisher_format",
|
||||||
"{0} | {1} | {2}",
|
"Publisher: {0}",
|
||||||
state,
|
publisher);
|
||||||
source,
|
|
||||||
entry.Manifest.Id);
|
|
||||||
}
|
|
||||||
|
|
||||||
private string BuildPluginDetails(PluginCatalogEntry entry)
|
|
||||||
{
|
|
||||||
var detail = F(
|
|
||||||
"settings.plugins.detail_format",
|
|
||||||
"Settings pages: {0} | Widgets: {1}",
|
|
||||||
entry.SettingsPageCount,
|
|
||||||
entry.WidgetCount);
|
|
||||||
return string.IsNullOrWhiteSpace(entry.ErrorMessage)
|
|
||||||
? detail
|
|
||||||
: detail + Environment.NewLine + entry.ErrorMessage;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private TextBlock CreateSummaryLine(string text)
|
private TextBlock CreateSummaryLine(string text)
|
||||||
@@ -378,6 +343,75 @@ public partial class PluginSettingsPage : UserControl
|
|||||||
return string.Format(CultureInfo.CurrentCulture, L(key, fallback), args);
|
return string.Format(CultureInfo.CurrentCulture, L(key, fallback), args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private FluentIcons.Avalonia.Fluent.SymbolIconSource CreatePluginCatalogIconSource()
|
||||||
|
{
|
||||||
|
return new FluentIcons.Avalonia.Fluent.SymbolIconSource
|
||||||
|
{
|
||||||
|
Symbol = FluentIcons.Common.Symbol.PuzzlePiece,
|
||||||
|
IconVariant = FluentIcons.Common.IconVariant.Regular
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private Control CreatePluginCatalogActions(PluginRuntimeService runtime, PluginCatalogEntry entry)
|
||||||
|
{
|
||||||
|
return new StackPanel
|
||||||
|
{
|
||||||
|
Orientation = Orientation.Horizontal,
|
||||||
|
Spacing = 10,
|
||||||
|
HorizontalAlignment = HorizontalAlignment.Right,
|
||||||
|
VerticalAlignment = VerticalAlignment.Center,
|
||||||
|
Children =
|
||||||
|
{
|
||||||
|
CreateEnablePluginToggle(runtime, entry),
|
||||||
|
CreateDeletePluginButton(runtime, entry)
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private ToggleSwitch CreateEnablePluginToggle(PluginRuntimeService runtime, PluginCatalogEntry entry)
|
||||||
|
{
|
||||||
|
var toggle = new ToggleSwitch
|
||||||
|
{
|
||||||
|
IsChecked = entry.IsEnabled,
|
||||||
|
VerticalAlignment = VerticalAlignment.Center
|
||||||
|
};
|
||||||
|
|
||||||
|
ToolTip.SetTip(
|
||||||
|
toggle,
|
||||||
|
entry.IsEnabled
|
||||||
|
? L("settings.plugins.toggle_off", "Disable")
|
||||||
|
: L("settings.plugins.toggle_on", "Enable"));
|
||||||
|
toggle.IsCheckedChanged += (_, _) => OnPluginEnabledChanged(runtime, entry, toggle.IsChecked == true);
|
||||||
|
return toggle;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Button CreateDeletePluginButton(PluginRuntimeService runtime, PluginCatalogEntry entry)
|
||||||
|
{
|
||||||
|
var button = new Button
|
||||||
|
{
|
||||||
|
Width = 36,
|
||||||
|
Height = 36,
|
||||||
|
Padding = new Thickness(0),
|
||||||
|
Background = Brushes.Transparent,
|
||||||
|
BorderThickness = new Thickness(0),
|
||||||
|
HorizontalAlignment = HorizontalAlignment.Right,
|
||||||
|
VerticalAlignment = VerticalAlignment.Center,
|
||||||
|
Content = new FluentIcons.Avalonia.Fluent.SymbolIcon
|
||||||
|
{
|
||||||
|
Symbol = FluentIcons.Common.Symbol.Delete,
|
||||||
|
IconVariant = FluentIcons.Common.IconVariant.Regular,
|
||||||
|
FontSize = 18,
|
||||||
|
Foreground = DestructiveBrush,
|
||||||
|
HorizontalAlignment = HorizontalAlignment.Center,
|
||||||
|
VerticalAlignment = VerticalAlignment.Center
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
ToolTip.SetTip(button, L("settings.plugins.delete_button", "Delete plugin"));
|
||||||
|
button.Click += (_, _) => OnDeletePluginClick(runtime, entry);
|
||||||
|
return button;
|
||||||
|
}
|
||||||
|
|
||||||
private static async Task<string?> CopyPackageToTemporaryFileAsync(IStorageFile file)
|
private static async Task<string?> CopyPackageToTemporaryFileAsync(IStorageFile file)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|||||||
@@ -44,31 +44,13 @@
|
|||||||
<Border Classes="settings-expander-shell">
|
<Border Classes="settings-expander-shell">
|
||||||
<ui:SettingsExpander x:Name="InstalledPluginsSettingsExpander"
|
<ui:SettingsExpander x:Name="InstalledPluginsSettingsExpander"
|
||||||
Header="Installed Plugins"
|
Header="Installed Plugins"
|
||||||
Description="Enable plugins here. Detailed settings appear as separate settings pages."
|
Description="Manage installed plugins here."
|
||||||
IsExpanded="True">
|
IsExpanded="True">
|
||||||
<ui:SettingsExpander.IconSource>
|
<ui:SettingsExpander.IconSource>
|
||||||
<ui:FontIconSource Glyph="" FontFamily="{StaticResource SymbolThemeFontFamily}" />
|
<ui:FontIconSource Glyph="" FontFamily="{StaticResource SymbolThemeFontFamily}" />
|
||||||
</ui:SettingsExpander.IconSource>
|
</ui:SettingsExpander.IconSource>
|
||||||
<ui:SettingsExpander.Footer>
|
<ui:SettingsExpander.Footer>
|
||||||
<StackPanel Spacing="10">
|
<StackPanel Spacing="10">
|
||||||
<Border Background="{DynamicResource AdaptiveSurfaceRaisedBrush}"
|
|
||||||
CornerRadius="{DynamicResource DesignCornerRadiusSm}"
|
|
||||||
Padding="14">
|
|
||||||
<StackPanel Spacing="10">
|
|
||||||
<Button x:Name="InstallPluginPackageButton"
|
|
||||||
HorizontalAlignment="Left"
|
|
||||||
Click="OnInstallPluginPackageClick"
|
|
||||||
Content="Open .laapp package" />
|
|
||||||
<TextBlock x:Name="PluginPackageImportHintTextBlock"
|
|
||||||
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
|
||||||
TextWrapping="Wrap"
|
|
||||||
Text="Open a .laapp package to install it into the local plugin directory." />
|
|
||||||
<TextBlock x:Name="PluginPackageImportStatusTextBlock"
|
|
||||||
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
|
||||||
TextWrapping="Wrap"
|
|
||||||
IsVisible="False" />
|
|
||||||
</StackPanel>
|
|
||||||
</Border>
|
|
||||||
<TextBlock x:Name="PluginRestartHintTextBlock"
|
<TextBlock x:Name="PluginRestartHintTextBlock"
|
||||||
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
||||||
TextWrapping="Wrap"
|
TextWrapping="Wrap"
|
||||||
@@ -77,30 +59,37 @@
|
|||||||
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
||||||
Text="No plugins found."
|
Text="No plugins found."
|
||||||
IsVisible="False" />
|
IsVisible="False" />
|
||||||
<StackPanel x:Name="PluginCatalogItemsHost" Spacing="12" />
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</ui:SettingsExpander.Footer>
|
</ui:SettingsExpander.Footer>
|
||||||
</ui:SettingsExpander>
|
</ui:SettingsExpander>
|
||||||
</Border>
|
</Border>
|
||||||
|
|
||||||
<Border Classes="settings-expander-shell">
|
<Border Classes="settings-expander-shell">
|
||||||
<ui:SettingsExpander x:Name="PluginMarketSettingsExpander"
|
<ui:SettingsExpander x:Name="ImportPluginPackageSettingsExpander"
|
||||||
Header="Official Market"
|
Header="Install From Package"
|
||||||
Description="Browse plugins from the official LanAirApp source and stage installs."
|
Description="Open a .laapp package and stage it into the local plugin directory."
|
||||||
IsExpanded="True">
|
IsExpanded="False">
|
||||||
<ui:SettingsExpander.IconSource>
|
<ui:SettingsExpander.IconSource>
|
||||||
<ui:FontIconSource Glyph="" FontFamily="{StaticResource SymbolThemeFontFamily}" />
|
<ui:FontIconSource Glyph="" FontFamily="{StaticResource SymbolThemeFontFamily}" />
|
||||||
</ui:SettingsExpander.IconSource>
|
</ui:SettingsExpander.IconSource>
|
||||||
<ui:SettingsExpander.Footer>
|
<ui:SettingsExpander.Footer>
|
||||||
<StackPanel Spacing="10">
|
<StackPanel Spacing="10">
|
||||||
<TextBlock x:Name="PluginMarketDescriptionTextBlock"
|
<Button x:Name="InstallPluginPackageButton"
|
||||||
|
HorizontalAlignment="Left"
|
||||||
|
Click="OnInstallPluginPackageClick"
|
||||||
|
Content="Open .laapp package" />
|
||||||
|
<TextBlock x:Name="PluginPackageImportHintTextBlock"
|
||||||
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
||||||
TextWrapping="Wrap"
|
TextWrapping="Wrap"
|
||||||
Text="Use the official market source hosted in LanAirApp to discover and stage plugin installs." />
|
Text="Open a .laapp package to install it into the local plugin directory." />
|
||||||
<ContentControl x:Name="PluginMarketContentHost" />
|
<TextBlock x:Name="PluginPackageImportStatusTextBlock"
|
||||||
|
Foreground="{DynamicResource AdaptiveTextSecondaryBrush}"
|
||||||
|
TextWrapping="Wrap"
|
||||||
|
IsVisible="False" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</ui:SettingsExpander.Footer>
|
</ui:SettingsExpander.Footer>
|
||||||
</ui:SettingsExpander>
|
</ui:SettingsExpander>
|
||||||
</Border>
|
</Border>
|
||||||
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</UserControl>
|
</UserControl>
|
||||||
|
|||||||
@@ -1,33 +1,57 @@
|
|||||||
# 宿主侧插件运行时
|
# 宿主侧插件运行时
|
||||||
|
|
||||||
这个目录用于归档阑山桌面宿主侧的插件相关实现。
|
## 中文
|
||||||
|
|
||||||
职责范围:
|
本目录保存阑山桌面宿主程序中的插件运行时实现。
|
||||||
- 已安装插件的发现
|
|
||||||
- `.laapp` 安装包安装与替换
|
### 主要职责
|
||||||
- 插件运行时加载
|
|
||||||
- 插件贡献的设置页与桌面组件接入
|
- 发现已安装插件
|
||||||
- 宿主侧插件设置页的安装、显示与刷新
|
- 安装和替换 `.laapp` 插件包
|
||||||
|
- 加载插件程序集
|
||||||
|
- 接入插件贡献的设置页和桌面组件
|
||||||
|
- 在宿主设置界面中展示插件与市场信息
|
||||||
|
|
||||||
|
### 市场安装优先级
|
||||||
|
|
||||||
|
1. 宿主先连接 `LanAirApp/airappmarket/index.json`。
|
||||||
|
2. 当条目同时提供 `releaseTag` 和 `releaseAssetName` 时,宿主优先按精确标签读取插件仓库的 GitHub Release 资产。
|
||||||
|
3. 如果 Release 不存在、资产缺失、GitHub API 失败,或当前是本地工作区测试但找不到远程资产,宿主会退回 `downloadUrl` 指向的仓库根目录 `.laapp`。
|
||||||
|
4. 插件介绍始终读取仓库根目录 `README.md`。
|
||||||
|
5. 安装完成后只做暂存,重启后生效,不在运行时热重载市场安装插件。
|
||||||
|
|
||||||
|
### 核心文件
|
||||||
|
|
||||||
当前宿主侧核心文件:
|
|
||||||
- `PluginLoader.cs`
|
- `PluginLoader.cs`
|
||||||
- `PluginLoadContext.cs`
|
- `PluginLoadContext.cs`
|
||||||
- `PluginLoaderOptions.cs`
|
|
||||||
- `PluginLoadResult.cs`
|
|
||||||
- `LoadedPlugin.cs`
|
|
||||||
- `PluginRuntimeService.cs`
|
- `PluginRuntimeService.cs`
|
||||||
- `PluginContributions.cs`
|
|
||||||
- `PluginCatalogEntry.cs`
|
- `PluginCatalogEntry.cs`
|
||||||
- `PluginSettingsPage.axaml`
|
- `PluginSettingsPage.axaml`
|
||||||
- `PluginSettingsPage.Host.cs`
|
- `PluginSettingsPage.Host.cs`
|
||||||
- `MainWindow.PluginSettingsHost.cs`
|
- `PluginMarketIndexService.cs`
|
||||||
- `SettingsWindow.PluginSettingsHost.cs`
|
- `PluginMarketInstallService.cs`
|
||||||
- `MainWindow.PluginSettingsLocalization.cs`
|
|
||||||
- `SettingsWindow.PluginSettingsLocalization.cs`
|
|
||||||
- `MainWindow.PluginSettingsControls.cs`
|
|
||||||
- `SettingsWindow.PluginSettingsControls.cs`
|
|
||||||
|
|
||||||
说明:
|
### 与 `LanAirApp` 的分工
|
||||||
- 插件开发标准、插件打包工具、示例插件与开发文档统一放在仓库根目录下的 `LanAirApp/`
|
|
||||||
- 宿主本体的插件加载、解析、安装与插件设置页接入逻辑统一放在 `LanMountainDesktop/plugins/`
|
- `LanAirApp` 负责插件开发文档、示例、市场索引和校验工具。
|
||||||
- `LanMountainDesktop.PluginSdk` 只保留插件作者需要引用的契约、清单模型和扩展注册接口
|
- 宿主目录负责运行时发现、安装、加载和界面接入。
|
||||||
|
|
||||||
|
## English
|
||||||
|
|
||||||
|
This directory contains the host-side plugin runtime for LanMountainDesktop.
|
||||||
|
|
||||||
|
### Responsibilities
|
||||||
|
|
||||||
|
- discover installed plugins
|
||||||
|
- install and replace `.laapp` packages
|
||||||
|
- load plugin assemblies
|
||||||
|
- integrate plugin settings pages and desktop components
|
||||||
|
- expose market and plugin management in the host UI
|
||||||
|
|
||||||
|
### Market install order
|
||||||
|
|
||||||
|
1. The host reads `LanAirApp/airappmarket/index.json`.
|
||||||
|
2. If an entry declares both `releaseTag` and `releaseAssetName`, the host first resolves the exact GitHub Release asset.
|
||||||
|
3. If Release resolution fails, the host falls back to the repository root `.laapp` from `downloadUrl`.
|
||||||
|
4. Plugin details always come from the repository root `README.md`.
|
||||||
|
5. Market installs are staged and take effect after restart.
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace LanMountainDesktop.Views;
|
||||||
|
|
||||||
|
public partial class SettingsWindow
|
||||||
|
{
|
||||||
|
private void ApplyPluginMarketSettingsLocalization()
|
||||||
|
{
|
||||||
|
PluginMarketSettingsPanel.RefreshFromRuntime();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -9,6 +9,7 @@ public partial class SettingsWindow
|
|||||||
internal TextBlock PluginSystemDescriptionTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginSystemDescriptionTextBlock")!;
|
internal TextBlock PluginSystemDescriptionTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginSystemDescriptionTextBlock")!;
|
||||||
internal TextBlock PluginSystemStatusTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginSystemStatusTextBlock")!;
|
internal TextBlock PluginSystemStatusTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginSystemStatusTextBlock")!;
|
||||||
internal FluentAvalonia.UI.Controls.SettingsExpander InstalledPluginsSettingsExpander => PluginSettingsPanel.FindControl<FluentAvalonia.UI.Controls.SettingsExpander>("InstalledPluginsSettingsExpander")!;
|
internal FluentAvalonia.UI.Controls.SettingsExpander InstalledPluginsSettingsExpander => PluginSettingsPanel.FindControl<FluentAvalonia.UI.Controls.SettingsExpander>("InstalledPluginsSettingsExpander")!;
|
||||||
|
internal FluentAvalonia.UI.Controls.SettingsExpander ImportPluginPackageSettingsExpander => PluginSettingsPanel.FindControl<FluentAvalonia.UI.Controls.SettingsExpander>("ImportPluginPackageSettingsExpander")!;
|
||||||
internal TextBlock PluginRestartHintTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginRestartHintTextBlock")!;
|
internal TextBlock PluginRestartHintTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginRestartHintTextBlock")!;
|
||||||
internal TextBlock PluginCatalogEmptyTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginCatalogEmptyTextBlock")!;
|
internal TextBlock PluginCatalogEmptyTextBlock => PluginSettingsPanel.FindControl<TextBlock>("PluginCatalogEmptyTextBlock")!;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,8 +10,10 @@ public partial class SettingsWindow
|
|||||||
PluginSystemDescriptionTextBlock.Text = L("settings.plugins.runtime_hint", "This page shows discovery status, load results, and runtime diagnostics for installed plugins.");
|
PluginSystemDescriptionTextBlock.Text = L("settings.plugins.runtime_hint", "This page shows discovery status, load results, and runtime diagnostics for installed plugins.");
|
||||||
PluginSystemStatusTextBlock.Text = L("settings.plugins.runtime_status", "Plugin runtime status will appear here after plugin discovery completes.");
|
PluginSystemStatusTextBlock.Text = L("settings.plugins.runtime_status", "Plugin runtime status will appear here after plugin discovery completes.");
|
||||||
InstalledPluginsSettingsExpander.Header = L("settings.plugins.installed_header", "Installed Plugins");
|
InstalledPluginsSettingsExpander.Header = L("settings.plugins.installed_header", "Installed Plugins");
|
||||||
InstalledPluginsSettingsExpander.Description = L("settings.plugins.installed_desc", "Enable or disable plugins here. Detailed plugin settings appear as separate settings pages.");
|
InstalledPluginsSettingsExpander.Description = L("settings.plugins.installed_desc", "Review installed plugins and remove them here.");
|
||||||
PluginRestartHintTextBlock.Text = L("settings.plugins.restart_hint", "Plugin enable state changes take effect after restarting the app.");
|
ImportPluginPackageSettingsExpander.Header = L("settings.plugins.import_header", "Install From Package");
|
||||||
|
ImportPluginPackageSettingsExpander.Description = L("settings.plugins.import_desc", "Open a .laapp package and stage it into the local plugin directory.");
|
||||||
|
PluginRestartHintTextBlock.Text = L("settings.plugins.restart_hint", "Plugin installation and deletion changes take effect after restarting the app.");
|
||||||
PluginCatalogEmptyTextBlock.Text = L("settings.plugins.empty", "No plugins found.");
|
PluginCatalogEmptyTextBlock.Text = L("settings.plugins.empty", "No plugins found.");
|
||||||
PluginSettingsPanel.RefreshFromRuntime();
|
PluginSettingsPanel.RefreshFromRuntime();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -141,6 +141,37 @@ function Create-PackageArchive {
|
|||||||
return $archivePath
|
return $archivePath
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Clear-DirectoryContents {
|
||||||
|
param([Parameter(Mandatory = $true)][string]$TargetDirectory)
|
||||||
|
|
||||||
|
[System.IO.Directory]::CreateDirectory($TargetDirectory) | Out-Null
|
||||||
|
Get-ChildItem -LiteralPath $TargetDirectory -Force -ErrorAction SilentlyContinue | ForEach-Object {
|
||||||
|
Remove-Item -LiteralPath $_.FullName -Recurse -Force -ErrorAction Stop
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function Remove-LegacyOutputArtifacts {
|
||||||
|
param([Parameter(Mandatory = $true)][string]$TargetDirectory)
|
||||||
|
|
||||||
|
$legacyArtifacts = @(
|
||||||
|
"LanMontainDesktop.exe",
|
||||||
|
"LanMontainDesktop.dll",
|
||||||
|
"LanMontainDesktop.deps.json",
|
||||||
|
"LanMontainDesktop.runtimeconfig.json",
|
||||||
|
"LanMontainDesktop.pdb"
|
||||||
|
)
|
||||||
|
|
||||||
|
foreach ($artifactName in $legacyArtifacts) {
|
||||||
|
$artifactPath = Join-Path $TargetDirectory $artifactName
|
||||||
|
if (-not (Test-Path -LiteralPath $artifactPath)) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
Remove-Item -LiteralPath $artifactPath -Force -ErrorAction Stop
|
||||||
|
Write-Host "Removed legacy artifact: $artifactPath"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function Add-LinuxDesktopAssets {
|
function Add-LinuxDesktopAssets {
|
||||||
param(
|
param(
|
||||||
[Parameter(Mandatory = $true)][string]$PublishedDirectory,
|
[Parameter(Mandatory = $true)][string]$PublishedDirectory,
|
||||||
@@ -187,7 +218,7 @@ if (-not $PublishDir) {
|
|||||||
if (-not [System.IO.Path]::IsPathRooted($PublishDir)) {
|
if (-not [System.IO.Path]::IsPathRooted($PublishDir)) {
|
||||||
$PublishDir = Join-Path $repoRoot $PublishDir
|
$PublishDir = Join-Path $repoRoot $PublishDir
|
||||||
}
|
}
|
||||||
[System.IO.Directory]::CreateDirectory($PublishDir) | Out-Null
|
Clear-DirectoryContents -TargetDirectory $PublishDir
|
||||||
|
|
||||||
Write-Host "Publishing project..."
|
Write-Host "Publishing project..."
|
||||||
$publishArgs = @(
|
$publishArgs = @(
|
||||||
@@ -210,6 +241,7 @@ if ($LASTEXITCODE -ne 0) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Remove-LibVlcForOtherArch -PublishedDirectory $PublishDir -Rid $RuntimeIdentifier
|
Remove-LibVlcForOtherArch -PublishedDirectory $PublishDir -Rid $RuntimeIdentifier
|
||||||
|
Remove-LegacyOutputArtifacts -TargetDirectory $PublishDir
|
||||||
|
|
||||||
if ($RuntimeIdentifier -like "linux-*") {
|
if ($RuntimeIdentifier -like "linux-*") {
|
||||||
Add-LinuxDesktopAssets -PublishedDirectory $PublishDir -RepoRoot $repoRoot
|
Add-LinuxDesktopAssets -PublishedDirectory $PublishDir -RepoRoot $repoRoot
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user