Deprecate -date-op-internal, update changelog

This commit is contained in:
contrapunctus 2019-10-30 23:02:13 +05:30
parent 830c83b6c1
commit 06749f23b4
2 changed files with 12 additions and 2 deletions

View File

@ -5,8 +5,17 @@ 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).
## [Unreleased]
* Migrate to new format
* Deprecate -timestamp->seconds, -timestamp-list->seconds, -get-end-time
### Added
* s-expression file format support
### Removed
* timeclock.el file format support
### Deprecated
* -timestamp->seconds
* -timestamp-list->seconds
* -get-end-time
* -date-op-internal
## [0.2.1] - 2019-09-09
### Fixed

View File

@ -149,6 +149,7 @@ SECONDS] or (HOURS MINUTES SECONDS)."
(defun chronometrist-date-op-internal (seconds minutes hours day month year operator count)
"Helper function for `chronometrist-date-op'."
(declare (obsolete nil "Chronometrist v0.3.0"))
(-->
(encode-time seconds minutes hours day month year)
(funcall (cond ((equal operator '+) 'time-add)