diff --git a/CHANGELOG.md b/CHANGELOG.md index 47b473fc0..39bd503ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## Changelog +0.9.3: +- @starfi5h: Change chat message format. Player's name now has an underlined link to navigate +- @starfi5h: Add new config option Chat - Show Timestamp to enable/disable timestamp before the chat message +- @starfi5h: Add new CLI arugment `/newgame-cfg` to load the parameters from the config file `nebulaGameDescSettings.cfg` +- @starfi5h: Add new chat command `/dev` +- @starfi5h: Fix inventory error in client +- @starfi5h: Fix hp bar doesn't vanish after deleting the building when client joins +- @starfi5h: Fix enemies and ILS related errors + 0.9.2: - Compatible to Steam version 0.10.29.22015 or Game Pass version 0.10.29.21943 - @sk7725: Added Korean font and TextMeshPro fallback diff --git a/NebulaPatcher/Patches/Dynamic/DFRelayComponent_Patch.cs b/NebulaPatcher/Patches/Dynamic/DFRelayComponent_Patch.cs index c85c0f416..583d9350e 100644 --- a/NebulaPatcher/Patches/Dynamic/DFRelayComponent_Patch.cs +++ b/NebulaPatcher/Patches/Dynamic/DFRelayComponent_Patch.cs @@ -79,7 +79,7 @@ public static bool LeaveBase_Prefix(DFRelayComponent __instance) var planet = GameMain.galaxy.PlanetById(__instance.targetAstroId); if (planet != null) { - Multiplayer.Session.Enemies.DisplayPlanetPingMessage("DF relay left from planet", __instance.targetAstroId, __instance.targetLPos); + Multiplayer.Session.Enemies.DisplayPlanetPingMessage("DF relay left from planet".Translate(), __instance.targetAstroId, __instance.targetLPos); } } diff --git a/NebulaPatcher/Patches/Dynamic/DFTinderComponent_Patch.cs b/NebulaPatcher/Patches/Dynamic/DFTinderComponent_Patch.cs index 6a4e8db4f..59d183bf3 100644 --- a/NebulaPatcher/Patches/Dynamic/DFTinderComponent_Patch.cs +++ b/NebulaPatcher/Patches/Dynamic/DFTinderComponent_Patch.cs @@ -24,7 +24,7 @@ public static bool DispatchFromHive_Prefix(ref DFTinderComponent __instance, int { __instance.targetHiveAstroId = _targetHiveAstroId; Multiplayer.Session.Network.SendPacket(new DFTinderDispatchPacket(__instance)); - Multiplayer.Session.Enemies.DisplayAstroMessage("Dark Fog seed send out from".Translate(), hive1.starData.astroId); + Multiplayer.Session.Enemies.DisplayAstroMessage("DF seed sent out from".Translate(), hive1.starData.astroId); } return true; } diff --git a/version.json b/version.json index b4881e307..91ec6a987 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "0.9.2", + "version": "0.9.3", "assemblyVersion": { "precision": "build" },