Skip to content
This repository has been archived by the owner on Sep 3, 2019. It is now read-only.

Commit

Permalink
Updated version and release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
xivk committed Apr 25, 2014
1 parent daf7426 commit 21048b1
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,4 @@ public void NotifyContracted(uint vertex)
}
}
}
}
}
2 changes: 1 addition & 1 deletion SharedAssemblyVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@

using System.Reflection;

[assembly: AssemblyVersion("4.0.5.9999")] // semantic versioning Major.Minor.Patch.Build (9999 will be updated by CI server)
[assembly: AssemblyVersion("4.0.6.9999")] // semantic versioning Major.Minor.Patch.Build (9999 will be updated by CI server)
[assembly: AssemblyInformationalVersion("Local Build Version")] // do not change this; build server replace this automatically.
32 changes: 32 additions & 0 deletions releasenotes/OsmSharp v4.0.5.667.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Enhancements:

- Finished stream sorting problem to avoid sorting a sorted stream or sorting a stream twice. Fixes #64.
- Added option to ignore nodes/ways/relations in OsmStreamSource. Closes #72.
- Added DistanceToEnd while tracking route in RouteTracker. Closes #70.
- Added a read-only list of markers on MapViews on iOS/Android. Issue #78.
- Added a tag property on layers. Also issue #78.
- Added a RemoveAll(Predicate<Tag> predicate) method to all TagCollections.

Bugfixes:

- Fixed #67.
- Allow registration of a TraceListener even when listener is disabled. Fixes #69.
- Fixed culture-dependant ToString after move to PCL.
- Fixed progress-reporting during live-edge preprocessing.
- Removed obsolete vertex location request during routing.
- Fixed IsRelevant in OsmRoutingInterpreter not checking value but key.
- Fixed marker positions on first draw. Fixes #73.
- Fixed GPX XML-parsing when it contains GARMIN extensions on Android. Fixes #74.
- Fixed broken XmlOsmStreamTarget after move to PCL.
- Fixed views not responding or rendering on bottom-up MapChanged-events.
- Fixed MaxSpeedAllowed not virtual.

API Changes:

- Added RemoveAll() on TagsCollectionBase.
- Added DistanceToEnd on RouteTracker.
- Changed default abstract MoveNext() to MoveNext(bool ignoreNodes, bool ignoreWays, bool ignoreRelations) in OsmStreamSource. Breaking for custom implementations of OsmStreamSource.
- Added OnRemoved delegate on LRUCache to catch objects being removed from cache.
- Added Tag property on Layer.
- Added Markers property on MapView (iOS and Android).
- Changed ViewChanged(Map map, float zoomFactor, GeoCoordinate center, View2D view) in Layer to ViewChanged(Map map, float zoomFactor, GeoCoordinate center, View2D view, View2D extraView). Breaking for custom layer implementations.
34 changes: 7 additions & 27 deletions releasenotes/latest.txt
Original file line number Diff line number Diff line change
@@ -1,32 +1,12 @@
Enhancements:

- Finished stream sorting problem to avoid sorting a sorted stream or sorting a stream twice. Fixes #64.
- Added option to ignore nodes/ways/relations in OsmStreamSource. Closes #72.
- Added DistanceToEnd while tracking route in RouteTracker. Closes #70.
- Added a read-only list of markers on MapViews on iOS/Android. Issue #78.
- Added a tag property on layers. Also issue #78.
- Added a RemoveAll(Predicate<Tag> predicate) method to all TagCollections.
- Tile layer will no ignore 404-ed tiles.
- Improved CH preprocessing status information.
- Improved performance creating a CH.
- Map is now updated when removing/adding a layer.
- Huge improvement to read/write performance of a routing flatfile.

Bugfixes:

- Fixed #67.
- Allow registration of a TraceListener even when listener is disabled. Fixes #69.
- Fixed culture-dependant ToString after move to PCL.
- Fixed progress-reporting during live-edge preprocessing.
- Removed obsolete vertex location request during routing.
- Fixed IsRelevant in OsmRoutingInterpreter not checking value but key.
- Fixed marker positions on first draw. Fixes #73.
- Fixed GPX XML-parsing when it contains GARMIN extensions on Android. Fixes #74.
- Fixed broken XmlOsmStreamTarget after move to PCL.
- Fixed views not responding or rendering on bottom-up MapChanged-events.
- Fixed MaxSpeedAllowed not virtual.

API Changes:

- Added RemoveAll() on TagsCollectionBase.
- Added DistanceToEnd on RouteTracker.
- Changed default abstract MoveNext() to MoveNext(bool ignoreNodes, bool ignoreWays, bool ignoreRelations) in OsmStreamSource. Breaking for custom implementations of OsmStreamSource.
- Added OnRemoved delegate on LRUCache to catch objects being removed from cache.
- Added Tag property on Layer.
- Added Markers property on MapView (iOS and Android).
- Changed ViewChanged(Map map, float zoomFactor, GeoCoordinate center, View2D view) in Layer to ViewChanged(Map map, float zoomFactor, GeoCoordinate center, View2D view, View2D extraView). Breaking for custom layer implementations.
- Made sure access to Android markers is synchronized. Possibly fixes #93.
- Improved Rectangle2D.FitAndKeepAspectRatio to fit one point but not zoom in that case. Fixes #92.

2 comments on commit 21048b1

@xivk
Copy link
Contributor Author

@xivk xivk commented on 21048b1 Apr 25, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity OsmSharp :: GitHub - OsmSharp Build 678 is now running

@xivk
Copy link
Contributor Author

@xivk xivk commented on 21048b1 Apr 25, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity OsmSharp :: GitHub - OsmSharp Build 4.0.6.678 outcome was SUCCESS
Summary: Tests passed: 425 Build time: 0:0:0

Please sign in to comment.