Skip to content

Commit

Permalink
chore: 修改文档链接
Browse files Browse the repository at this point in the history
  • Loading branch information
HelloWRC committed Sep 7, 2024
1 parent 096c0f1 commit e58b7ae
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
ToolTip="附加设置帮助…"
Margin="4 0 0 0"
Command="{x:Static commands:UriNavigationCommands.UriNavigationCommand}"
CommandParameter="https://docs.classisland.tech/zh-cn/latest/app/advanced/#%E9%99%84%E5%8A%A0%E8%AE%BE%E7%BD%AE"
CommandParameter="https://docs.classisland.tech/app/advanced/#%E9%99%84%E5%8A%A0%E8%AE%BE%E7%BD%AE"
Style="{StaticResource MaterialDesignToolForegroundButton}" />
<Button HorizontalAlignment="Left"
Content="{materialDesign:PackIcon Refresh}"
Expand Down
2 changes: 1 addition & 1 deletion ClassIsland.PluginSdk/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ClassIsland 插件 SDK

用于开发应用 [ClassIsland] 插件的 SDK。要了解如何开发 ClassIsland 插件,请参考[开发文档](https://docs.classisland.tech/zh-cn/latest/dev/)
用于开发应用 [ClassIsland] 插件的 SDK。要了解如何开发 ClassIsland 插件,请参考[开发文档](https://docs.classisland.tech/dev/)

[ClassIsland]: https://github.com/ClassIsland/ClassIsland
2 changes: 1 addition & 1 deletion ClassIsland.Shared.IPC/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ClassIsland.Shared.IPC

用于的客户端与 [ClassIsland] 应用进行跨进程通信库。 要了解如何与 ClassIsland 进行跨进程通信,请参考[开发文档](https://docs.classisland.tech/zh-cn/latest/dev/)
用于的客户端与 [ClassIsland] 应用进行跨进程通信库。 要了解如何与 ClassIsland 进行跨进程通信,请参考[开发文档](https://docs.classisland.tech/dev/)

[ClassIsland]: https://github.com/ClassIsland/ClassIsland
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ public interface IManagementServerConnection
public Task<ManagementManifest> GetManifest();

/// <summary>
/// 从集控服务器获取Json信息。url中的模板将被替换,关于url模板,请见<a href="https://docs.classisland.tech/zh-cn/latest/management/client-identify/#url-template">集控文档</a>。
/// 从集控服务器获取Json信息。url中的模板将被替换,关于url模板,请见<a href="https://docs.classisland.tech/management/client-identify/#url-template">集控文档</a>。
/// </summary>
/// <typeparam name="T">信息类型</typeparam>
/// <param name="url">要获取的url</param>
/// <returns>获取到的信息</returns>
public Task<T> GetJsonAsync<T>(string url);

/// <summary>
/// 从集控服务器获取Json信息,并写入到本地文件。url中的模板将被替换,关于url模板,请见<a href="https://docs.classisland.tech/zh-cn/latest/management/client-identify/#url-template">集控文档</a>。
/// 从集控服务器获取Json信息,并写入到本地文件。url中的模板将被替换,关于url模板,请见<a href="https://docs.classisland.tech/management/client-identify/#url-template">集控文档</a>。
/// </summary>
/// <typeparam name="T">信息类型</typeparam>
/// <param name="url">要获取的url</param>
Expand Down
2 changes: 1 addition & 1 deletion ClassIsland/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ private async void App_OnStartup(object sender, StartupEventArgs e)
uriNavigationService.HandleAppNavigation("test", args => CommonDialog.ShowInfo($"测试导航:{args.Uri}"));
uriNavigationService.HandleAppNavigation("settings", args => GetService<SettingsWindowNew>().OpenUri(args.Uri));
uriNavigationService.HandleAppNavigation("profile", args => GetService<MainWindow>().OpenProfileSettingsWindow());
uriNavigationService.HandleAppNavigation("helps", args => uriNavigationService.Navigate(new Uri("https://docs.classisland.tech/zh-cn/latest/app/")));
uriNavigationService.HandleAppNavigation("helps", args => uriNavigationService.Navigate(new Uri("https://docs.classisland.tech/app/")));
uriNavigationService.HandleAppNavigation("profile/import-excel", args => GetService<ExcelImportWindow>().Show());

GetService<IIpcService>().IpcProvider.CreateIpcJoint<IFooService>(new FooService());
Expand Down
4 changes: 2 additions & 2 deletions ClassIsland/Assets/Documents/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

![1722823221695](https://github.com/user-attachments/assets/7464a90d-ef66-47e1-8083-3edbdea603aa)

您可以通过插件扩展 ClassIsland 的功能,比如获取新的组件、提醒提供方等等。您可以在[插件市场](classisland://app/settings/classisland.plugins)浏览插件。如果您对开发 ClassIsland 插件感兴趣,不妨看看[开发文档](https://docs.classisland.tech/zh-cn/latest/dev)来了解如何开发插件。
您可以通过插件扩展 ClassIsland 的功能,比如获取新的组件、提醒提供方等等。您可以在[插件市场](classisland://app/settings/classisland.plugins)浏览插件。如果您对开发 ClassIsland 插件感兴趣,不妨看看[开发文档](https://docs.classisland.tech/dev)来了解如何开发插件。

## 规则集

Expand All @@ -33,7 +33,7 @@

## 精简模式

ClassIsland 目前推出了【精简模式】,精简模式的 ClassIsland 裁剪了不必要的资源文件,大幅减小了应用体积。详细请见[文档](https://docs.classisland.tech/zh-cn/latest/app/setup/)
ClassIsland 目前推出了【精简模式】,精简模式的 ClassIsland 裁剪了不必要的资源文件,大幅减小了应用体积。详细请见[文档](https://docs.classisland.tech/app/setup/)

## 课表群

Expand Down
2 changes: 1 addition & 1 deletion ClassIsland/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,7 @@ private void MenuItemDebugMoveClassIslandDirectory_OnClick(object sender, Routed

private void MenuItemHelps_OnClick(object sender, RoutedEventArgs e)
{
UriNavigationService.Navigate(new Uri("https://docs.classisland.tech/zh-cn/latest/app/"));
UriNavigationService.Navigate(new Uri("https://docs.classisland.tech/app/"));
}

private void MenuItemUpdates_OnClick(object sender, RoutedEventArgs e)
Expand Down

0 comments on commit e58b7ae

Please sign in to comment.