1
0
Fork 0

Updated the ChangeLog's format

This commit is contained in:
Tobias Leupold 2018-07-22 16:01:04 +02:00
parent 5e0bdabc35
commit e96fa10725
1 changed files with 28 additions and 29 deletions

View File

@ -1,46 +1,45 @@
2015-01-04 Tobias Leupold <tobias.leupold@web.de>
* New: Added a function to join all segments of a GPX file in the (chronologically) given order of
the GPS data. This can help to create an un-scattered output if the segments don't share points
at the beginning and end and thus, the default combining algorithm won't work.
Thanks to Emiel Brommer for the initial patch!
* Release: Version 0.1.4
* Change: Updated the ChangeLog to a more meaningful format.
- Replaced the function creating a coordinate string for a segment by a generator. Now, segments
drawing instructions are created step by step instead of assembling a (probably huge) single
string.
====================== gpx2svg 0.1.4 released (04.01.2015) ======================
2014-09-03 Tobias Leupold <tobias.leupold@web.de>
* Improvement: Replaced the function creating a coordinate string for a segment by a generator. Now,
segments drawing instructions are created step by step instead of assembling a (probably huge)
single string.
* Release: Version 0.1.3
====================== gpx2svg 0.1.3 released (09.03.2014) ======================
- Changed the shebang line so that gpx2svg now also runs on Mac
* Bugfix: Changed the shebang line so that gpx2svg now also runs on Mac
- Changed the use of the literal "/dev/stdin" and "/dev/stdout" to sys.stdin and sys.stdout.
Hopefully, gpx2svg will now also work on Windows (not tested).
* Bugfix: Changed the use of the literal "/dev/stdin" and "/dev/stdout" to sys.stdin and sys.stdout.
Hopefully, gpx2svg will now also work on Windows (not tested).
- Overall code cleanup
* Generally: Overall code cleanup
2013-11-07 Tobias Leupold <tobias.leupold@web.de>
====================== gpx2svg 0.1.2 released (07.11.2013) ======================
* Release: Version 0.1.2
* Bugfix: Fixed crash when processing GPX files with empty or no path segments.
Thanks to Fabian Seitz for the bug report!
- Fixed crash when processing GPX files with empty or no path segments.
Thanks to Fabian Seitz for the bug report!
* Improvement: Added exception handler for non-readable or non-existant files or files with no valid
GPX data.
- Added exception handler for non-readable or non-existant files or files with no valid GPX
data.
====================== gpx2svg 0.1.1 released (26.08.2012) ======================
2012-08-26 Tobias Leupold <tobias.leupold@web.de>
* Improvement: Made the internal data structure simpler. Don't store the IDs of the tracks.
* Relase: Version 0.1.1
* Improvement/Bugfix: Combine path segments before doing the Mercator projection, so that rounding
errors can't affect the search.
- Made the internal data structure simpler. Don't store the IDs of the tracks.
* Improvement: Made the algorithm to search for combinable paths more effective.
- Combine path segments before doing the Mercator projection, so that rounding errors can't
affect the search.
* New: Draw circles instead of single points (that will not be shown). Added a command line option
to drop such single points.
- Made the algorithm to search for combinable paths more effective.
====================== gpx2svg 0.1 released (25.08.2012) ======================
- Draw circles instead of single points (that will not be shown). Added a command line option
to drop such single points.
2012-08-25 Tobias Leupold <tobias.leupold@web.de>
* Release: Version 0.1 (Initial release)
* New: Initial release