diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2023-12-16 20:08:23 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2023-12-16 20:08:23 +0100 |
| commit | 72cf67d7e047a4f82e0e18bd016c7826bf2efde0 (patch) | |
| tree | 9ea89053176ac3ebd96b4e0794abb6501414119f | |
| parent | ed1c5826f0920d68d6f42c986d6721f854342984 (diff) | |
Release version 0.5.3v0.5.3
| -rw-r--r-- | CHANGELOG | 5 | ||||
| -rw-r--r-- | docs/transient.org | 4 | ||||
| -rw-r--r-- | docs/transient.texi | 25 | ||||
| -rw-r--r-- | lisp/transient.el | 2 |
4 files changed, 31 insertions, 5 deletions
@@ -1,4 +1,9 @@ # -*- mode: org -*- +* v0.5.3 2023-12-16 + +- Fixed regression when setting ~:pad-keys~ for a ~transient-columns~ + group. #269 + * v0.5.2 2023-12-05 - Fixed formatting issues in the manual. diff --git a/docs/transient.org b/docs/transient.org index eea4349..e063080 100644 --- a/docs/transient.org +++ b/docs/transient.org @@ -7,7 +7,7 @@ #+texinfo_dir_category: Emacs misc features #+texinfo_dir_title: Transient: (transient). #+texinfo_dir_desc: Transient Commands -#+subtitle: for version 0.5.2 +#+subtitle: for version 0.5.3 #+setupfile: .orgconfig @@ -20,7 +20,7 @@ resource to get over that hurdle is Psionic K's interactive tutorial, available at https://github.com/positron-solutions/transient-showcase. #+texinfo: @noindent -This manual is for Transient version 0.5.2. +This manual is for Transient version 0.5.3. #+texinfo: @insertcopying :END: diff --git a/docs/transient.texi b/docs/transient.texi index b6c426d..df56584 100644 --- a/docs/transient.texi +++ b/docs/transient.texi @@ -31,7 +31,7 @@ General Public License for more details. @finalout @titlepage @title Transient User and Developer Manual -@subtitle for version 0.5.2 +@subtitle for version 0.5.3 @author Jonas Bernoulli @page @vskip 0pt plus 1filll @@ -53,7 +53,7 @@ resource to get over that hurdle is Psionic K's interactive tutorial, available at @uref{https://github.com/positron-solutions/transient-showcase}. @noindent -This manual is for Transient version 0.5.2. +This manual is for Transient version 0.5.3. @insertcopying @end ifnottex @@ -203,6 +203,18 @@ easy. Fun even. Once you've tried it, it's hard to go back to the @node Usage @chapter Usage +@menu +* Invoking Transients:: +* Aborting and Resuming Transients:: +* Common Suffix Commands:: +* Saving Values:: +* Using History:: +* Getting Help for Suffix Commands:: +* Enabling and Disabling Suffixes:: +* Other Commands:: +* Configuration:: +@end menu + @node Invoking Transients @section Invoking Transients @@ -924,6 +936,15 @@ signal an error. @node Defining New Commands @chapter Defining New Commands +@menu +* Technical Introduction:: +* Defining Transients:: +* Binding Suffix and Infix Commands:: +* Defining Suffix and Infix Commands:: +* Using Infix Arguments:: +* Transient State:: +@end menu + @node Technical Introduction @section Technical Introduction diff --git a/lisp/transient.el b/lisp/transient.el index 2537685..b0ffd38 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -6,7 +6,7 @@ ;; Homepage: https://github.com/magit/transient ;; Keywords: extensions -;; Package-Version: 0.5.2 +;; Package-Version: 0.5.3 ;; Package-Requires: ((emacs "26.1") (compat "29.1.4.4") (seq "2.24")) ;; SPDX-License-Identifier: GPL-3.0-or-later |
