Prepared Changelog for 0.3 release.

This commit is contained in:
Marcus Scholz 2020-03-22 13:17:29 +01:00
parent 77cb2c9f45
commit 8947fb9f2f
1 changed files with 24 additions and 16 deletions

View File

@ -5,36 +5,44 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
- Added GPX parser
- Added optional dry-run modifier ## [0.3] - tba
- Made timezone-aware for timesources without timezone
- Added optional parameter to override timezone to local timezone, defaults to utc Major rewrite following OOP style. Adds GPS/GPX handling.
### Added
- Added GPX parser.
- Added optional dry-run modifier.
- Made timezone-aware for timesources that are not timezone aware.
- Added optional parameter to override timezone to local timezone, defaults to utc.
- Refactored variable name_scheme. - Refactored variable name_scheme.
- Switch to oop style programming. Made code easier to read. - Switch to oop style programming. Made code easier to read.
- Moved CSV processing and Exif reading / writing into a class. - Moved CSV processing and Exif reading / writing into a class.
- Moved photo copying into Photo class - Moved photo copying into Photo class.
- Created Exif class. Can now also create GPS tags. - Created Exif writing class. Can now also create GPS tags.
- Created Output formatting class.
- Added new working Match class for matching time against CSV and GPX.
## [0.2] - 2020-02-05 ## [0.2] - 2020-02-05
### Added ### Added
- uses pyexiv2 instead of piexif which is also able to tag various camera raw formats, e. g. CR2 and is capable of writing properly formed UTF-8 strings. - uses pyexiv2 instead of piexif which is also able to tag various camera raw formats, e. g. CR2 and is capable of writing properly formed UTF-8 strings.
- added copy function to be able to place files to outdir before modification - Added copy function to be able to place files to outdir before modification.
- added verbose output about what it going to happen - Added verbose output about what it going to happen.
- added table header for output - Added table header for output.
### Changed ### Changed
- removed unnecessary datetime object creation as pyexiv2 can output datetime objects itself - Removed unnecessary datetime object creation as pyexiv2 can output datetime objects itself.
- removed obsolete "Processing..." message, as it was never visible. - Removed obsolete "Processing..." message, as it was never visible.
## [0.1] - 2020-02-02 ## [0.1] - 2020-02-02
First prototype using piexif First prototype using piexif
### Added ### Added
- argument parsing enabled - Argument parsing enabled.
- parametrized factor to calculate Sieverts - Parametrized factor to calculate Sieverts.
- parametrized output dir - Parametrized output dir.
- usage of os.path to be os-aware - Usage of os.path to be os-aware.
- output in a tablish manner - Output in a tablish manner.
### Changed ### Changed
- exchanged selfmade CSV parser by python's core CSV library - exchanged selfmade CSV parser by python's core CSV library