branch: externals/altcaps commit 2606eafb4352a0c4a2d9f3a760ff234020772d8d Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Update to altcaps version 1.3.0 --- CHANGELOG.org | 21 +++++++++++++++++++++ README.org | 6 +++--- altcaps.el | 2 +- 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.org b/CHANGELOG.org index a878015c93..5ab9d697a6 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -9,6 +9,27 @@ project's main git repository: <https://github.com/protesilaos/altcaps>. The newest release is at the top. For further details, please consult the manual: <https://protesilaos.com/emacs/altcaps>. +* 1.3.0 on 2025-01-28 +:PROPERTIES: +:CUSTOM_ID: h:20f36910-7ef8-4e39-954d-3ef599a08b21 +:END: + +This version does not include any user-facing changes. I made some +internal refinements and ensured everything works as expected. Just +use the sample configuration to get started: + +#+begin_src emacs-lisp +(use-package altcaps + :ensure t + :bind + ("C-x C-a" . altcaps-dwim) + :config + ;; Optionally force letter casing for certain characters (for legibility). + (setq altcaps-force-character-casing + '(("i" . downcase) + ("l" . upcase)))) +#+end_src + * 1.2.0 on 2023-09-22 :PROPERTIES: :CUSTOM_ID: h:f6bf4cd9-0942-4536-92bc-6117cd5d57d9 diff --git a/README.org b/README.org index 3c2c55cf49..6ccaee9c90 100644 --- a/README.org +++ b/README.org @@ -4,9 +4,9 @@ #+language: en #+options: ':t toc:nil author:t email:t num:t #+startup: content -#+macro: stable-version 1.2.0 -#+macro: release-date 2023-09-22 -#+macro: development-version 1.3.0-dev +#+macro: stable-version 1.3.0 +#+macro: release-date 2025-01-28 +#+macro: development-version 1.4.0-dev #+export_file_name: altcaps.texi #+texinfo_filename: altcaps.info #+texinfo_dir_category: Emacs misc features diff --git a/altcaps.el b/altcaps.el index 9b7b971bab..dd80f6bb53 100644 --- a/altcaps.el +++ b/altcaps.el @@ -5,7 +5,7 @@ ;; Author: Protesilaos Stavrou <i...@protesilaos.com> ;; Maintainer: Protesilaos Stavrou <i...@protesilaos.com> ;; URL: https://github.com/protesilaos/altcaps -;; Version: 1.2.0 +;; Version: 1.3.0 ;; Package-Requires: ((emacs "27.1")) ;; This file is NOT part of GNU Emacs.