diff --git a/CHANGELOG.md b/CHANGELOG.md index 55f1127..6b9916c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ -# v1.4.2 *[Patch]* +# v1.4.3 *[Patch]* +- Use the new [CYNHUD Update Agent API](https://cynhud.api.frothywifi.cc) +- Aesthetical changes (basically just update style) +## v1.4.2 *[Patch]* - Fix local version number, making the update system think there is an update ## v1.4.1 *[Patch]* - Fix settings not saving diff --git a/README.md b/README.md index 0056219..1c3d542 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # CYNHUD > A Titanfall 2 + Northstar mod that adds an easily customizable (through Mod Settings) message to your HUD and useful game commands. + +Yes, the name is a Murder Drones reference. ## Why? > "Science isn't about WHY, it's about WHY NOT." - Cave Johnson @@ -7,4 +9,4 @@ I really don't know, to be immediately honest. ## Credits - S2ymi, original developer of recycled code (S2TF3DevTest) - Mysterious_Reuploads, original Thunderstore packager of recycled code (S2TF3DevTest) -- Frothy Wi-Fi, CYNHUD developer +- Frothy Wi-Fi, CYNHUD developer \ No newline at end of file diff --git a/manifest.json b/manifest.json index 2713353..7c2a7a4 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "name": "CYNHUD", - "version_number": "1.4.2", + "version_number": "1.4.3", "website_url": "https://github.com/frothy-wifi/CYNHUD", "description": "Adds an easily customizable (through Mod Settings) message to your HUD and useful game commands.", "dependencies": [] diff --git a/mods/FrothyWiFi.CYNHUD/mod.json b/mods/FrothyWiFi.CYNHUD/mod.json index cc02897..b669a22 100755 --- a/mods/FrothyWiFi.CYNHUD/mod.json +++ b/mods/FrothyWiFi.CYNHUD/mod.json @@ -3,7 +3,7 @@ "Description": "Adds an easily customizable (through Mod Settings) message to your HUD and useful game commands.", "LoadPriority": 2, "RequiredOnClient": false, - "Version": "1.4.2", + "Version": "1.4.3", "ConVars": [ { "Name": "ch_hud_message", diff --git a/mods/FrothyWiFi.CYNHUD/mod/scripts/vscripts/cynhud.nut b/mods/FrothyWiFi.CYNHUD/mod/scripts/vscripts/cynhud.nut index 54362ec..31ded32 100755 --- a/mods/FrothyWiFi.CYNHUD/mod/scripts/vscripts/cynhud.nut +++ b/mods/FrothyWiFi.CYNHUD/mod/scripts/vscripts/cynhud.nut @@ -5,7 +5,7 @@ var rui = null; string mapName = ""; string message = ""; string messagePos = ""; -string version = "1.4.2"; +string version = "1.4.3"; bool reloadRequest = false; bool shouldShowWelcomeText = true;