branch: elpa/annotate commit a4607c41845d970c7b124737c23411f52c8a0764 Author: cage <cage-invalid@invalid> Commit: cage <cage-invalid@invalid>
- updated version and documentation. --- Changelog | 35 +++++++++++++++++++++++++++++++++++ NEWS.org | 14 +++++++++++++- annotate.el | 4 ++-- 3 files changed, 50 insertions(+), 3 deletions(-) diff --git a/Changelog b/Changelog index 899b64b189..9fde915a99 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,38 @@ +2020-12-16 cage + + * Changelog, NEWS.org, annotate.el: + + Updated version and documentations. + +2020-12-07 cage + + * README.org, annotate.el: + + - fixed more typos. + +2020-12-01 cage + + * README.org, annotate.el: + + - allow overwriting (even partial) of annotations. That is, user + can place an annotation on top of an already existing one. The new + will delete overlapped portion of the old annotation. This + feature should not allow to break an annotation, + though. Annotations can not overlaps. + + - added a new customizable variable: + + 'annotate-warn-if-hash-mismatch' when nil prevent printing of + warning when annotation database's' hash and file has do not + match; + + - fixed bug in alternating coloring of annotation and underlined + text; + + - updated README; + + - fixed some typos. + 2020-11-22 cage * annotate.el: diff --git a/NEWS.org b/NEWS.org index f6d985e8c7..caaede1872 100644 --- a/NEWS.org +++ b/NEWS.org @@ -141,9 +141,21 @@ The 'annotate-file' can be now safely declared buffer-local so that multiple databases of annotations can be used on a per-buffer basis. - For pratical applications see: + For practical applications see: https://github.com/bastibe/annotate.el/issues/68 Many thanks to gopar for spotting this elusive bug and help testing the patch! :) + +- 2020-12-16 V1.0.0 Bastian Bechtold, cage :: + + This version allow overwrite of notes. That is, user can place an + annotation on top of an already existing one. The new will delete + overlapped portion of the old annotation. + + Also a new customizable variable ('annotate-warn-if-hash-mismatch') + has been added. When nil prevent printing of warning when + annotation database's' hash and file has do not match; + + Also a problem with adjacent annotation's coloring has been fixed. diff --git a/annotate.el b/annotate.el index f75d465d2a..8ff5875515 100644 --- a/annotate.el +++ b/annotate.el @@ -7,7 +7,7 @@ ;; Maintainer: Bastian Bechtold ;; URL: https://github.com/bastibe/annotate.el ;; Created: 2015-06-10 -;; Version: 0.9.2 +;; Version: 1.0.0 ;; This file is NOT part of GNU Emacs. @@ -58,7 +58,7 @@ ;;;###autoload (defgroup annotate nil "Annotate files without changing them." - :version "0.9.2" + :version "1.0.0" :group 'text) ;;;###autoload