Skip to content

Commit

Permalink
Merge pull request #675 from starfi5h/pr-version
Browse files Browse the repository at this point in the history
Bump version and changelog to v0.9.3
  • Loading branch information
starfi5h authored Apr 13, 2024
2 parents a293730 + 773782b commit 3bb1ae4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion NebulaPatcher/Patches/Dynamic/DFRelayComponent_Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down
2 changes: 1 addition & 1 deletion NebulaPatcher/Patches/Dynamic/DFTinderComponent_Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -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"
},
Expand Down

0 comments on commit 3bb1ae4

Please sign in to comment.