This commit is contained in:
Mikhail
2024-07-30 13:09:33 -04:00
parent 1c29003eaa
commit 8a9447dc09
2 changed files with 4 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>Private Nikke Server Launcher</title> <title>EpinelPS</title>
<style> <style>
* { * {
color: white; color: white;
@@ -10,18 +10,9 @@
</style> </style>
</head> </head>
<body> <body>
<h1>What's new in Nikke Private Server - v0.1.3</h1> <h1>What's new in EpinelPS - v0.1.4</h1>
<ul> <ul>
<li>Added support for game version 123.8.11</li> <li>Implemented Interception</li>
<li>Properly implemented character level up</li>
<li>Decreased database size by a small amount</li>
<li>Added IsBanned to DB</li>
<li>Implemented tactic academy</li>
<li>Implemented side story</li>
<li>Outpost level works</li>
<li>Implemented main mission rewards</li>
<li>You can now update the game in the launcher</li>
<li>Show only "private server" in server list</li>
</ul> </ul>
</body> </body>
</html> </html>

View File

@@ -38,7 +38,7 @@ public partial class MainView : UserControl
if (!File.Exists(Path.Combine(txtLauncherPath.Text, "nikke_launcher.exe"))) if (!File.Exists(Path.Combine(txtLauncherPath.Text, "nikke_launcher.exe")))
{ {
ShowWarningMsg("Launcher path is invalid. Make sure that nikke_launcher.exe exists in the launcher folder", "Error"); ShowWarningMsg("Launcher path is invalid. Make sure that the game executable exists in the launcher folder", "Error");
return; return;
} }