Skip to content

Commit

Permalink
Version to 4.0.0-beta.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldendulk committed Feb 11, 2023
1 parent 640c84e commit 87fdd0c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup>
<Version>4.0.0-beta.7</Version>
<Version>4.0.0-beta.8</Version>
<NeutralLanguage>en-US</NeutralLanguage>
<Copyright>Copyright © Mapsui Developers 2018-$([System.DateTime]::Now.ToString(yyyy))</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
34 changes: 17 additions & 17 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@
<PackageVersion Include="HarfBuzzSharp.NativeAssets.WebAssembly" Version="[2.8.2.3,3.0.0.0)" />
<PackageVersion Include="IDisposableAnalyzers" Version="[4.0.2,5.0.0)" />
<PackageVersion Include="Itinero" Version="[1.5.0,2.0.0)" />
<PackageVersion Include="Mapsui.Android" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.ArcGIS" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Avalonia" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Blazor" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Eto" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Extensions" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Forms" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.iOS" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Maui" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Nts" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Rendering.Skia" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Tiling" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Uno" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Uno.WinUI" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.WinUI" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Wpf" Version="4.0.0-beta.7" />
<PackageVersion Include="Mapsui.Android" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.ArcGIS" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Avalonia" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Blazor" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Eto" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Extensions" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Forms" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.iOS" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Maui" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Nts" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Rendering.Skia" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Tiling" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Uno" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Uno.WinUI" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.WinUI" Version="4.0.0-beta.8" />
<PackageVersion Include="Mapsui.Wpf" Version="4.0.0-beta.8" />
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="[7.0.0,8.0.0)" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="[7.0.0,8.0.0)" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="[7.0.0,8.0.0)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@

[assembly: AssemblyVersion("4.0.0")]
[assembly: AssemblyFileVersion("4.0.0")]
[assembly: AssemblyInformationalVersion("4.0.0-beta.6")]
[assembly: AssemblyInformationalVersion("4.0.0-beta.8")]
2 changes: 1 addition & 1 deletion docfx/documentation/contributors-guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ When we have direct and indirect dependecies on a nuget package those should all
- Also there are many ways in which we can avoid ordering altogher. For instance if we work with Longitude and Latitude properties. In the case of SphericalMercator.FromLonLat we use lon/lat in the method name to avoid confusion.

## No rendering in the draw/paint loop
Mapsui strives for optiomal performance, so in the rendering loop the objects should be ready to be painted to canvas directly without any need for preparation. This is currently (4.0.0-beta.1) not the case. For instance in the case of tiles they are rendered on the first iteration, after that the cached version is used. This needs to be improved.
Mapsui strives for optiomal performance, so in the rendering loop the objects should be ready to be painted to canvas directly without any need for preparation. This is currently (4.0.0-beta.8) not the case. For instance in the case of tiles they are rendered on the first iteration, after that the cached version is used. This needs to be improved.
### About the terminology
**Rendering**: Create a platform specific resource.
```csharp
Expand Down

0 comments on commit 87fdd0c

Please sign in to comment.