Skip to content

Commit 014c6b1

Browse files
committed
prep for release
1 parent 8bcd17d commit 014c6b1

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

J4JMapLibrary/J4JMapLibrary.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<Copyright>© Mark A. Olbert all rights reserved</Copyright>
1414
<RepositoryType>git</RepositoryType>
1515
<RepositoryUrl>https://github.com/markolbert/ProgrammingUtilities</RepositoryUrl>
16-
<VersionPrefix>0.8.2</VersionPrefix>
16+
<VersionPrefix>0.8.3</VersionPrefix>
1717
</PropertyGroup>
1818

1919
<ItemGroup>

J4JMapLibrary/docs/changes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22

33
|Version|Comments|
44
|:-----:|--------|
5+
|0.8.3|fixed problems with various mapping services|
6+
|0.8.2|fixed caching problems|
57
|0.8.1|changed how caching works, updated nuget dependencies|
68
|0.8|Initial release|

J4JMapWinLibrary/J4JMapWinLibrary.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
<Copyright>© Mark A. Olbert all rights reserved</Copyright>
1515
<RepositoryType>git</RepositoryType>
1616
<RepositoryUrl>https://github.com/markolbert/ProgrammingUtilities</RepositoryUrl>
17-
<VersionPrefix>0.8.2</VersionPrefix>
17+
<VersionPrefix>0.8.3</VersionPrefix>
1818
<AppDesignerFolder>dep-props</AppDesignerFolder>
1919
</PropertyGroup>
2020

2121
<ItemGroup>
2222
<PackageReference Include="CommunityToolkit.WinUI" Version="7.1.2" />
2323
<PackageReference Include="CommunityToolkit.WinUI.UI.Controls.DataGrid" Version="7.1.2" />
2424
<PackageReference Include="CommunityToolkit.WinUI.UI.Controls.Primitives" Version="7.1.2" />
25-
<PackageReference Include="J4JSoftware.J4JMapLibrary" Version="0.8.2" />
25+
<PackageReference Include="J4JSoftware.J4JMapLibrary" Version="0.8.3" />
2626
<PackageReference Include="J4JSoftware.VisualUtilities" Version="2.1.1" />
2727
<PackageReference Include="J4JSoftware.WindowsUtilities" Version="1.0.1" />
2828
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />

J4JMapWinLibrary/docs/changes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22

33
|Version|Comments|
44
|:-----:|--------|
5+
|0.8.3|added ability to change projections at runtime, fixed problems with MapPin display|
6+
|0.8.2|fixed problems with caching|
57
|0.8.1|changed how caching works, fixed nuget dependencies|
68
|0.8|Initial release|

J4JMapWinLibrary/docs/map-control.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ There are two properties which define the mapping service the control uses:
5858

5959
|Property|Type|Comments|
6060
|--------|----|--------|
61-
|`MapProjection`|`string`|the name of the mapping projection to use|
61+
|`MapProjectionTypes`|`List<string>`|fully qualified type names of custom map projection types (expands the assemblies `ProjectionFactory` searches for supported projection types)|
62+
|`MapProjections`|`List<string>`|the list of available map projections|
63+
|`MapProjection`|`string`|the name of the selected mapping projection|
64+
|`MapStyles`|`List<string>`|the list of map styles available for the selected mapping projection (may be empty if the projection doesn't support styles)|
6265
|`MapStyle`|`string`|the specific style of map projection to use|
6366

6467
If the map projection name is not recognized by `MapFactory` the control's projection is undefined and no imagery will display.

0 commit comments

Comments
 (0)