Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
🐳 暂停更新
Browse files Browse the repository at this point in the history
  • Loading branch information
DaiYu-233 committed Jul 2, 2024
1 parent 63a6499 commit 34fc58f
Show file tree
Hide file tree
Showing 14 changed files with 152 additions and 166 deletions.
265 changes: 125 additions & 140 deletions LICENSE

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@

# 此项目暂停更新

<p align="center">
<img Height="200" Width="200" src="https://github.com/DaiYu-233/YMCL/blob/main/Assets/YMCL-Icon.png?raw=true"/>
</p>
<div align="center">
<h1 align="center">Yu Minecraft Launcher</h1>
</div>
Yu Minecraft Launcher (YMCL) 是使用 [.NET 8.0](https://dotnet.microsoft.com/zh-cn/download/dotnet/8.0) 、Windows Presentation Foundation(WPF) 开发的 Minecraft 启动器。YMCL 以 GPL-3.0 协议开放源代码,可以修改且分发,但不得删除原作品的标记,修改后的作品必须也采用 GPL 协议进行开源
Yu Minecraft Launcher (YMCL) 是使用 [.NET 8.0](https://dotnet.microsoft.com/zh-cn/download/dotnet/8.0) 、Windows Presentation Foundation(WPF) 开发的 Minecraft 启动器。YMCL 以 Apache License 协议开放源代码,软件必须包含原始代码的版权声明和许可声明,以及一个包含许可信息的通知文件

## UrlScheme

Expand Down
18 changes: 9 additions & 9 deletions YMCL.Main/Public/Lang/MainLang.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion YMCL.Main/Public/Lang/MainLang.en-US.resx
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@
<data name="Launch_SelectedModCount" xml:space="preserve">
<value>{|} files selected</value>
</data>
<data name="SureDeleteMod" xml:space="preserve">
<data name="MoveToRecycleBin" xml:space="preserve">
<value>Move the following Mods to the Trash</value>
</data>
<data name="LoginFail" xml:space="preserve">
Expand Down
2 changes: 1 addition & 1 deletion YMCL.Main/Public/Lang/MainLang.ja-JP.resx
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@
<data name="Launch_SelectedModCount" xml:space="preserve">
<value>{|}個のファイルが選択されました</value>
</data>
<data name="SureDeleteMod" xml:space="preserve">
<data name="MoveToRecycleBin" xml:space="preserve">
<value>以下のモッドをゴミ箱に移動しましょう</value>
</data>
<data name="LoginFail" xml:space="preserve">
Expand Down
4 changes: 2 additions & 2 deletions YMCL.Main/Public/Lang/MainLang.resx
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,8 @@
<data name="Launch_SelectedModCount" xml:space="preserve">
<value>已选择{|}个文件</value>
</data>
<data name="SureDeleteMod" xml:space="preserve">
<value>将以下Mod移动到回收站</value>
<data name="MoveToRecycleBin" xml:space="preserve">
<value>移动到回收站</value>
</data>
<data name="LoginFail" xml:space="preserve">
<value>登录失败</value>
Expand Down
2 changes: 1 addition & 1 deletion YMCL.Main/Public/Lang/MainLang.ru-RU.resx
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@
<data name="Launch_SelectedModCount" xml:space="preserve">
<value>Выбрано файлов: {|}</value>
</data>
<data name="SureDeleteMod" xml:space="preserve">
<data name="MoveToRecycleBin" xml:space="preserve">
<value>Переместите следующие моды в корзину</value>
</data>
<data name="LoginFail" xml:space="preserve">
Expand Down
2 changes: 1 addition & 1 deletion YMCL.Main/Public/Lang/MainLang.zh-Hant.resx
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@
<data name="Launch_SelectedModCount" xml:space="preserve">
<value>已選擇{|}個檔案</value>
</data>
<data name="SureDeleteMod" xml:space="preserve">
<data name="MoveToRecycleBin" xml:space="preserve">
<value>將以下Mod移到回收站</value>
</data>
<data name="LoginFail" xml:space="preserve">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public partial class AutoInstall : Page
{
bool _firstLoad = true;
bool _loaded = false;
#region UI
#region UI
private void LatestSnapshotBorder_PreviewMouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
if (_loaded)
Expand Down
5 changes: 2 additions & 3 deletions YMCL.Main/Views/Main/Pages/Launch/Launch.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,9 @@ private async void Page_Loaded(object sender, RoutedEventArgs e)
{
FileStream fs = new FileStream(Const.CustomHomePageXamlPath, FileMode.Open);
UIElement rootElement = (UIElement)XamlReader.Load(fs);
this.CustomHomePageRoot.Child = rootElement;
CustomHomePageRoot.Child = rootElement;


//var cs = File.ReadAllText(Const.CustomHomePageCSharpPath).Split("-------");
//Function.RunCodeByString(cs[1], dlls: cs[0].Split("\r\n"));
}
catch (Exception ex)
{
Expand Down
2 changes: 1 addition & 1 deletion YMCL.Updater/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ static void Main(string[] args)
return;
}
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("更新将在5秒后开始");
Console.WriteLine("Update will be strated in 5 sec.");
Console.CursorVisible = false;
int totalSeconds = 5;
for (int i = 0; i <= totalSeconds; i++)
Expand Down
5 changes: 2 additions & 3 deletions YMCL.Updater/Properties/PublishProfiles/FolderProfile.pubxml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net8.0\publish\win-x86\</PublishDir>
<PublishDir>bin\Release\net8.0\publish\linux-x64\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<_TargetId>Folder</_TargetId>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>false</PublishReadyToRun>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<History>True|2024-02-24T06:37:54.2748289Z;True|2024-02-24T14:37:44.6016447+08:00;True|2024-02-03T22:30:25.7255748+08:00;True|2024-02-03T21:57:57.0817352+08:00;</History>
<History>True|2024-06-29T02:37:27.2337950Z;True|2024-06-29T10:37:07.6738030+08:00;True|2024-02-24T14:37:54.2748289+08:00;True|2024-02-24T14:37:44.6016447+08:00;True|2024-02-03T22:30:25.7255748+08:00;True|2024-02-03T21:57:57.0817352+08:00;</History>
<LastFailureDetails />
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion YMCL.Updater/YMCL.Updater.csproj.user
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_LastSelectedProfileId>D:\Desktop\Project\C#\YMCL\YMCL.Updater\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
<_LastSelectedProfileId>E:\YMCL.WPF\YMCL.Updater\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
</PropertyGroup>
</Project>

0 comments on commit 34fc58f

Please sign in to comment.