| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-04-22 | Release version 0.13.0HEADv0.13.0main | Jonas Bernoulli | |
| 2026-03-07 | make: Use portable sed argument | Jonas Bernoulli | |
| Closes #428. | |||
| 2026-03-07 | make: Cosmetics | Jonas Bernoulli | |
| 2026-03-03 | manual: Update recommendation for visually impaired users | Jonas Bernoulli | |
| 2026-03-03 | transient-use-accessible-values: New option | Jonas Bernoulli | |
| 2026-03-03 | transient-use-accessible-formats: New option | Jonas Bernoulli | |
| 2026-03-03 | transient-prefer-reading-value: New option | Jonas Bernoulli | |
| 2026-03-03 | manual: Use term visually impaired where appropriate | Jonas Bernoulli | |
| 2026-03-03 | manual: Fix typo | Jonas Bernoulli | |
| 2026-02-27 | manual: Update some FAQ | Jonas Bernoulli | |
| 2026-02-23 | transient-get-summary: Optionally echo even duplicated documentation | Jonas Bernoulli | |
| 2026-02-23 | manual: Document inactive slot | Jonas Bernoulli | |
| 2026-02-23 | manual: Move description of advise and advise* slots | Jonas Bernoulli | |
| 2026-02-23 | manual: Extend information about summary slot | Jonas Bernoulli | |
| 2026-02-23 | manual: Improve Accessibility Options node | Jonas Bernoulli | |
| 2026-02-23 | manual: Reorder Accessibility Options node | Jonas Bernoulli | |
| 2026-02-23 | manual: Update outdated example configuration | Jonas Bernoulli | |
| 2026-01-30 | transient-enable-menu-navigation: Improve documentation | Jonas Bernoulli | |
| 2026-01-13 | transient-force-single-column: Improve documentation | Jonas Bernoulli | |
| 2026-01-13 | transient-describe-menu: New option | Jonas Bernoulli | |
| 2026-01-08 | manual: Provide example configuration for blind users | Jonas Bernoulli | |
| 2026-01-08 | transient-navigate-to-group-descriptions: New option | Jonas Bernoulli | |
| 2026-01-08 | transient-enable-menu-navigation: Renamed option | Jonas Bernoulli | |
| 2026-01-08 | transient-show-menu: Renamed option | Jonas Bernoulli | |
| 2026-01-08 | Update manual | Jonas Bernoulli | |
| 2026-01-04 | Fix typos | Jonas Bernoulli | |
| 2026-01-04 | manual: Fix typo | Jonas Bernoulli | |
| 2026-01-04 | make: Also clean .revdesc and docs/stats/ | Jonas Bernoulli | |
| 2026-01-01 | Release version 0.12.0v0.12.0 | Jonas Bernoulli | |
| 2026-01-01 | Bump copyright years | Jonas Bernoulli | |
| 2025-12-15 | manual: Fix typo | Jonas Bernoulli | |
| 2025-12-15 | manual: Fix misplaced syntax | Jonas Bernoulli | |
| 2025-11-30 | make: Add new EMACS_Q_ARG variable | Jonas Bernoulli | |
| It defaults to "-Q" but users can instead use "-q", which is useful if "site-start.el" contains essential settings. Also add `EMACS_BATCH' and `EMACS_ORG', and rework use of related variables. | |||
| 2025-11-18 | Release version 0.11.0v0.11.0 | Jonas Bernoulli | |
| 2025-11-14 | Improve documentation of some options | Jonas Bernoulli | |
| 2025-11-13 | Update links to manuals | Jonas Bernoulli | |
| 2025-11-13 | make: Use absolute urls in exported manuals | Jonas Bernoulli | |
| 2025-11-13 | Publish manual and statistics using webdav | Jonas Bernoulli | |
| Re magit/magit#5472. | |||
| 2025-11-13 | make: Cosmetics | Jonas Bernoulli | |
| 2025-11-08 | manual: Add some missing @code | Jonas Bernoulli | |
| 2025-11-08 | manual: Add some missing @code around booleans | Jonas Bernoulli | |
| 2025-10-06 | Release version 0.10.1v0.10.1 | Jonas Bernoulli | |
| 2025-09-01 | Release version 0.10.0v0.10.0 | Jonas Bernoulli | |
| 2025-08-16 | Support automatically remembering the prefix value | Jonas Bernoulli | |
| Closes #287. | |||
| 2025-08-16 | transient-get-value: Replace with three functions | Jonas Bernoulli | |
| `transient-get-value' was added in [1: d33fe5ab]. At this time it was only used by commands that save the value. We didn't make a distinction between `transient--suffixes' and `transient-current-suffixes' at this time. In [2: 1b9929ec] the `unsavable' suffix slot was added and this function started to drop the values of unsavable suffixes. In [3: 8db5f0fd] we started to also use it to preserve the value across refreshes. That made it necessary to use `transient--suffixes'. It would have made sense to only use that variable. Instead we started to use it, if non-nil, and fall back to `transient-current-suffixes' otherwise (which previously was used exclusively). Sometime along the way, package authors started to need the value of the prefix or of another suffix while setting up the menu and its suffixes. `transient-args' is not intended for that purpose and I started to tell them to use `transient-get-value'. So now `transient-get-value' is being used for at least three distinct purposes. They have in common that they deal with the value of the extant prefix (so `transient-args' is not appropriate); but they need different subsets of that value. We could deal with that by adding arguments to `transient-get-value'. Instead we use three different functions, and give them names that make these differences obvious. - New `transient--get-savable-value' obviously filters out the non- savable parts of the value and is obviously used when saving the value. - New `transient--get-extended-value' returns the full value. This includes the parts that are currently inactive, but have to be preserved because they may become active again. This is used to preserve the value across refreshes. This also includes unsavable parts of the value, since we still want to use those parts. - `transient-get-value' now returns the "effective" value. This includes the "unsavable" (but "intend for use") parts. It does not include the "inactive" parts. Keep the current name of this function because that is being used in third-party package. Note that while this now filters out the value of suffixes whose `inapt' slot is non-nil, that doesn't make a difference just yet. Such suffixes are not being added to `transient--suffixes' yet, but we will start doing that in a few commits. In other words, there effectively is no change in how this deals with inapt parts of the value. However, the behavior changes with regards to unsavable parts of the value. Those are no longer dropped. That is a bugfix. 1: 2019-08-12 d33fe5abaf5d0de2a8e80e7e52555d725ebdc6e5 Split new transient-get-value from transient-args 2: 2020-10-20 1b9929eca9b1076fb04794b6736d42a1d394fadb Add new `unsavable' infix slot 3: 2024-06-22 8db5f0fd4469f3b2af34e07a283372ca273fa685 transient--refresh-transient: Preserve value | |||
| 2025-08-16 | transient-prefix-value: Clarify documentation | Jonas Bernoulli | |
| 2025-08-01 | Release version 0.9.4v0.9.4 | Jonas Bernoulli | |
| 2025-07-01 | Release version 0.9.3v0.9.3 | Jonas Bernoulli | |
| 2025-06-09 | Release version 0.9.2v0.9.2 | Jonas Bernoulli | |
| 2025-06-06 | manual: Mention transient-copy-menu-text in relevant FAQ | Jonas Bernoulli | |
