Skip to content

Commit

Permalink
Merge pull request #149 from Nikolai558/development
Browse files Browse the repository at this point in the history
Releasing v2.6.5
  • Loading branch information
Nikolai558 authored Jun 11, 2023
2 parents b543fc7 + 1e0bf2b commit 2a37064
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CHANGELOG

---
- ## Version 2.6.5
- #148 Fixed an issue where if the GeoMap Object had multiple objects with
the same description, the converter would only output the last object.

- ## Version 2.6.4
- #144 AWY LO DME Cuttoff now has a BCG and Filter value of 15 instead of 5
- #139 Potential fix for persistent user settings between updates.
Expand Down
Binary file added FE-BUDDY-instructionsBackup.pdf
Binary file not shown.
7 changes: 7 additions & 0 deletions FeBuddyLibrary/DataAccess/GeoJson.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1213,6 +1213,13 @@ public void WriteGeoMapGeoJson(string dirPath, GeoMapSet geo)
}
}

// This fixes the duplicate description issue #148
if (File.Exists(file.FullName))
{
FeatureCollection inFile = JsonConvert.DeserializeObject<FeatureCollection>(File.ReadAllText(file.FullName));
geojson.features.AddRange(inFile.features);
}

string jsonString = JsonConvert.SerializeObject(geojson, new JsonSerializerSettings { Formatting = Formatting.None, NullValueHandling = NullValueHandling.Ignore });

//jsonString = PostProcess(jsonString);
Expand Down
2 changes: 1 addition & 1 deletion FeBuddyWinFormUI/FeBuddyWinFormUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<AssemblyName>FE-BUDDY</AssemblyName>
<Version>2.6.4</Version>
<Version>2.6.5</Version>
<Copyright>Copyright © 2023 Nikolas Boling, Kyle Sanders</Copyright>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>FE_BUDDY_icon.ico</ApplicationIcon>
Expand Down

0 comments on commit 2a37064

Please sign in to comment.