branch: elpa/annotate commit e004ae7e9720153649c740dff3394a60f229387a Author: cage <cage-invalid@invalid> Commit: cage <cage-invalid@invalid>
- updated version; - updated NEWS and Changelog (also fixed grammar for the former). --- Changelog | 40 ++++++++++++++++++++++++++++++++++++++++ NEWS.org | 17 +++++++++++++++-- annotate.el | 4 ++-- 3 files changed, 57 insertions(+), 4 deletions(-) diff --git a/Changelog b/Changelog index 9fde915a99..7e72ce317e 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,43 @@ +2020-12-19 cage + + * annotate.el: + + - moved 'save-match-data' from the function that calls + 'annotate--split-lines' inside the body of the latter; to remove + any side-effect. + +2020-12-19 cage + + * annotate.el: + + - fixed the width of the last row of the box + +2020-12-19 cage + + * annotate.el: + + - wrapped 'annotate-wrap-annotation-in-box' with 'save-match-data. + +2020-12-19 cage + + * annotate.el: + + - added procedures to pad multiline annotation text. + +2020-12-18 cage + + * annotate.el: + + - extracted local function and taken into account info node + names (that should not be expanded). + +2020-12-18 cage + + * annotate.el: + + - stored abbreviated filenames for the path component of each + record of the annotations database; - improved a docstring. + 2020-12-16 cage * Changelog, NEWS.org, annotate.el: diff --git a/NEWS.org b/NEWS.org index caaede1872..c87be453e2 100644 --- a/NEWS.org +++ b/NEWS.org @@ -99,7 +99,7 @@ - when an user delete an annotation for a file using a button from summary window force refresh of a buffer that is visiting said file, if exists, to reflect the changes; - - fixed flowings of annotatinons when window's width is changed. + - fixed flowings of annotations when window's width is changed. - 2020-03-06 V0.6.0 Bastian Bechtold, cage :: Fixed bugs of multiline annotations, diff exports and integration. @@ -129,7 +129,7 @@ - 2020-09-29 V0.9.0 Bastian Bechtold, cage :: Added two new styles to render the annotation: using "pop-up" style - or via a specializated summary window. + or via a specialized summary window. - 2020-11-20 V0.9.2 Bastian Bechtold, cage :: @@ -159,3 +159,16 @@ annotation database's' hash and file has do not match; Also a problem with adjacent annotation's coloring has been fixed. + +- 2020-12-20 V1.1.0 Bastian Bechtold, cage :: + + This version improves the visual style of annotated text that if + formed by more than one line. + + Also the file path of each annotated file (in the database of + annotation) is saved so called abbreviated form + (e.g. '/home/user/foo' is saved as '~/foo', this could be useful if + the database is migrated from one machine to another. + + This improvements has been suggested by the user Ran that also + helped testing this new version of the package. Thank you! diff --git a/annotate.el b/annotate.el index 93486a1d8f..c1f8800a1a 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: 1.0.0 +;; Version: 1.1.0 ;; This file is NOT part of GNU Emacs. @@ -58,7 +58,7 @@ ;;;###autoload (defgroup annotate nil "Annotate files without changing them." - :version "1.0.0" + :version "1.1.0" :group 'text) ;;;###autoload