From 4ad49d8a373941625c5599ad40db012378e5c860 Mon Sep 17 00:00:00 2001 From: ZouJin Date: Mon, 14 Aug 2023 03:29:45 +1000 Subject: [PATCH] =?UTF-8?q?=E9=92=88=E5=AF=B9=E6=AD=A3=E5=BC=8F=E7=89=88?= =?UTF-8?q?=E7=9A=84=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VPet-Simulator.Windows/App.xaml.cs | 2 +- VPet-Simulator.Windows/Function/CoreMOD.cs | 2 +- VPet-Simulator.Windows/MainWindow.xaml.cs | 13 +++++++++++-- .../mod/0000_core/lang/en/Base2308.lps | 7 ++++++- .../mod/0000_core/lang/zh-Hans/Base2308.lps | 7 ++++++- .../mod/0000_core/lang/zh-Hant/Base2308.lps | 7 ++++++- 6 files changed, 31 insertions(+), 7 deletions(-) diff --git a/VPet-Simulator.Windows/App.xaml.cs b/VPet-Simulator.Windows/App.xaml.cs index 72653ee..394c3fe 100644 --- a/VPet-Simulator.Windows/App.xaml.cs +++ b/VPet-Simulator.Windows/App.xaml.cs @@ -25,7 +25,7 @@ namespace VPet_Simulator.Windows + e.Exception.ToString(); if (MainWindow == null) { - MessageBox.Show(errstr, "游戏致命性错误"); + MessageBox.Show(errstr, "游戏致命性错误".Translate()); return; } else diff --git a/VPet-Simulator.Windows/Function/CoreMOD.cs b/VPet-Simulator.Windows/Function/CoreMOD.cs index aaade9d..68b4150 100644 --- a/VPet-Simulator.Windows/Function/CoreMOD.cs +++ b/VPet-Simulator.Windows/Function/CoreMOD.cs @@ -215,7 +215,7 @@ namespace VPet_Simulator.Windows else if (authtype != "") { authtype = "[签名]".Translate(); - Intro += $"\nSubject:{certificate.Subject}\nIssuer:{certificate.Subject}"; + //Intro += $"\nSubject:{certificate.Subject}\nIssuer:{certificate.Subject}"; } } else diff --git a/VPet-Simulator.Windows/MainWindow.xaml.cs b/VPet-Simulator.Windows/MainWindow.xaml.cs index b64d680..65cfb9b 100644 --- a/VPet-Simulator.Windows/MainWindow.xaml.cs +++ b/VPet-Simulator.Windows/MainWindow.xaml.cs @@ -508,10 +508,18 @@ namespace VPet_Simulator.Windows Set["SingleTips"].SetBool("helloworld", true); notifyIcon.ShowBalloonTip(10, "你好".Translate() + (IsSteamUser ? Steamworks.SteamClient.Name : Environment.UserName), "欢迎使用虚拟桌宠模拟器!\n如果遇到桌宠爬不见了,可以在我这里设置居中或退出桌宠".Translate(), ToolTipIcon.Info); - Thread.Sleep(2000); - Main.SayRnd("欢迎使用虚拟桌宠模拟器\n这是个中期的测试版,若有bug请多多包涵\n欢迎加群虚拟主播模拟器430081239或在菜单栏-管理-反馈中提交bug或建议".Translate()); + //Thread.Sleep(2000); + //Main.SayRnd("欢迎使用虚拟桌宠模拟器\n这是个中期的测试版,若有bug请多多包涵\n欢迎加群虚拟主播模拟器430081239或在菜单栏-管理-反馈中提交bug或建议".Translate()); }); } +#if DEMO + else + { + notifyIcon.ShowBalloonTip(10, "正式版更新通知".Translate(), //本次更新内容 + "虚拟桌宠模拟器 现已发布正式版, 赶快前往下载吧!", ToolTipIcon.Info); + Process.Start("https://store.steampowered.com/app/1920960/VPet/"); + } +#else else if (Set["SingleTips"].GetDateTime("update") <= new DateTime(2023, 8, 11) && LocalizeCore.CurrentCulture.StartsWith("cn")) { if (Set["SingleTips"].GetDateTime("update") > new DateTime(2023, 8, 1)) // 上次更新日期时间 @@ -522,6 +530,7 @@ namespace VPet_Simulator.Windows "更新了新的动画系统\n新增桌宠会在播放音乐的时候跳舞\n新增不开心大部分系列动画\n更好买支持翻页", ToolTipIcon.Info); Set["SingleTips"].SetDateTime("update", DateTime.Now); } +#endif //MOD报错 foreach (CoreMOD cm in CoreMODs) if (!cm.SuccessLoad) diff --git a/VPet-Simulator.Windows/mod/0000_core/lang/en/Base2308.lps b/VPet-Simulator.Windows/mod/0000_core/lang/en/Base2308.lps index 934df6c..93c48c7 100644 --- a/VPet-Simulator.Windows/mod/0000_core/lang/en/Base2308.lps +++ b/VPet-Simulator.Windows/mod/0000_core/lang/en/Base2308.lps @@ -27,4 +27,9 @@ Happyly#Happily:| Nomally#Nomally:| PoorConditionly#Sadly:| Illly#Sickly:| -plugin#Code Plugin:| \ No newline at end of file +plugin#Code Plugin:| +MOD加载错误,是MOD({0})导致的\n如有可能请发送 错误信息截图和引发错误之前的操作 给开发者:service@exlb.net\n感谢您对游戏开发的支持\n#MOD loading error, caused by MOD({0})\nIf possible, Please send a screenshot of the error message and the action you took before triggering the error to developer: service@exlb.net\nThanks for your support of the game development\n:| +游戏发生错误,可能是#An error occurred in the game, probably:| +游戏致命性错误#Game Fatal Error:| +游戏或者MOD#Game or Mod:| +导致的\n如有可能请发送 错误信息截图和引发错误之前的操作 给开发者:service@exlb.net\n感谢您对游戏开发的支持\n#If possible, Please send a screenshot of the error message and the action you took before triggering the error to developer: service@exlb.net\nThanks for your support of the game development\n:| \ No newline at end of file diff --git a/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Base2308.lps b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Base2308.lps index 95bc3d2..bc696da 100644 --- a/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Base2308.lps +++ b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hans/Base2308.lps @@ -27,4 +27,9 @@ Happyly#高兴地:| Nomally#普通地:| PoorConditionly#悲伤地:| Illly#生病地:| -plugin#代码插件:| \ No newline at end of file +plugin#代码插件:| +MOD加载错误,是MOD({0})导致的\n如有可能请发送 错误信息截图和引发错误之前的操作 给开发者:service@exlb.net\n感谢您对游戏开发的支持\n#MOD加载错误,是MOD({0})导致的\n如有可能请发送 错误信息截图和引发错误之前的操作 给开发者:service@exlb.net\n感谢您对游戏开发的支持\n:| +游戏发生错误,可能是#游戏发生错误,可能是:| +游戏致命性错误#游戏致命性错误:| +游戏或者MOD#游戏或者MOD:| +导致的\n如有可能请发送 错误信息截图和引发错误之前的操作 给开发者:service@exlb.net\n感谢您对游戏开发的支持\n#导致的\n如有可能请发送 错误信息截图和引发错误之前的操作 给开发者:service@exlb.net\n感谢您对游戏开发的支持\n:| \ No newline at end of file diff --git a/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Base2308.lps b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Base2308.lps index ec58f4b..00ad5be 100644 --- a/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Base2308.lps +++ b/VPet-Simulator.Windows/mod/0000_core/lang/zh-Hant/Base2308.lps @@ -27,4 +27,9 @@ Happyly#高興地:| Nomally#普通地:| PoorConditionly#悲傷地:| Illly#生病地:| -plugin#代碼外掛:| \ No newline at end of file +plugin#代碼外掛:| +MOD加载错误,是MOD({0})导致的\n如有可能请发送 错误信息截图和引发错误之前的操作 给开发者:service@exlb.net\n感谢您对游戏开发的支持\n#MOD加載錯誤,是MOD({0})導致的\n如有可能請發送 錯誤資訊截圖和引發錯誤之前的操作 給開發者:service@exlb.net\n感謝您對遊戲開發的支持\n:| +游戏发生错误,可能是#遊戲發生錯誤,可能是:| +游戏致命性错误#遊戲致命性錯誤:| +游戏或者MOD#遊戲或者MOD:| +导致的\n如有可能请发送 错误信息截图和引发错误之前的操作 给开发者:service@exlb.net\n感谢您对游戏开发的支持\n#導致的\n如有可能請發送 錯誤資訊截圖和引發錯誤之前的操作 給開發者:service@exlb.net\n感謝您對遊戲開發的支持\n:| \ No newline at end of file