Skip to content

Commit

Permalink
v2.3.2 Update 1
Browse files Browse the repository at this point in the history
Fix for backup all locations feature
  • Loading branch information
Kevin0M16 committed Dec 30, 2024
1 parent e17a3e5 commit 8e0aee0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## v2.3.2 (DEC 30 2024)
- Fix for backup all locations feature.

## v2.3.1 (DEC 28 2024)
- Fix for incorrect json property type.

Expand Down
10 changes: 4 additions & 6 deletions NMSCoordinates/NMSCoordinatesMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public NMSCoordinatesMain()
InitializeComponent();

//Set Version here
NMSCVersion = "2.3.1"; //"v2.3.1";
NMSCVersion = "2.3.2"; //"v2.3.2";
label29.Text = "Version " + NMSCVersion;

glyphDict = Globals.Glyphs();
Expand Down Expand Up @@ -1107,12 +1107,10 @@ private void JsonMapPersistentBases(int i)
}
}
*/
private static string GetTeleportEndPointName(int i, dynamic nms)
private static string GetTeleportEndPointName(int i, dynamic teleportEndpoints)
{
// Determine the correct endpoint based on the global save format
dynamic endpoint = Globals.IsNewSaveFormat
? nms.BaseContext.PlayerStateData.TeleportEndpoints[i]
: nms.PlayerStateData.TeleportEndpoints[i];
// Get the specific endpoint at index i
dynamic endpoint = teleportEndpoints[i];

List<string> nameList = new List<string>();
string discd = endpoint.Name ?? "Unknown";
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ You can clear portal interference while traveling through a portal, fast travel
|Manual Travel|Fast Travel|
|<a href="http://www.youtube.com/watch?feature=player_embedded&v=ceSFVl9LFtI" target="_blank"><img src="http://img.youtube.com/vi/ceSFVl9LFtI/0.jpg" alt="Video" width="520" height="300" border="10" /></a>|<a href="http://www.youtube.com/watch?feature=player_embedded&v=Vx1xGk2TMIo" target="_blank"><img src="http://img.youtube.com/vi/Vx1xGk2TMIo/0.jpg" alt="Video" width="520" height="300" border="10" /></a>|
-->

## v2.3.2 (DEC 30 2024)
- Fix for backup all locations feature.
-
## v2.3.1 (DEC 28 2024)
- Fix for incorrect json property type.

Expand All @@ -50,7 +52,7 @@ You can clear portal interference while traveling through a portal, fast travel
- Tested on Endurance

<!--* Download will be available later today. -->
<pre> <a href="https://github.com/Kevin0M16/NMSCoordinates/releases/latest/download/NMSCoordinates-v2.3.1.zip"><img src="https://img.shields.io/badge/dynamic/json.svg?label=download&url=https://api.github.com/repos/Kevin0M16/NMSCoordinates/releases/latest&query=$.assets[0].name&style=for-the-badge" alt="download"/></a></pre>
<pre> <a href="https://github.com/Kevin0M16/NMSCoordinates/releases/latest/download/NMSCoordinates-v2.3.2.zip"><img src="https://img.shields.io/badge/dynamic/json.svg?label=download&url=https://api.github.com/repos/Kevin0M16/NMSCoordinates/releases/latest&query=$.assets[0].name&style=for-the-badge" alt="download"/></a></pre>

<!-- ## Share - Upload locations to Google Drive
Expand Down

0 comments on commit 8e0aee0

Please sign in to comment.