From b8461c3eb07bb43d0b5f8bd162fea198c6bd1e51 Mon Sep 17 00:00:00 2001 From: Olivier Date: Mon, 7 Sep 2026 17:27:56 -0400 Subject: [PATCH] chore: bump to v1.1.0 --- CHANGELOG.md | 12 +++++++++++- manifest.json | 2 +- package.json | 2 +- versions.json | 3 ++- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dadf71d..f64bf95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,17 @@ All notable changes to this project are documented in this file. Format loosely follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). -## [Unreleased] +## [1.1.0] - 2026-09-07 + +### Added + +- **Settings page now visually groups commands by category.** Each category + (Better Formatting, Line Operations, etc.) renders as a collapsible card with + a bordered/shaded header and an "N/M enabled" badge, instead of a flat list + separated only by bold text headings. The sentence-matching regex setting + moved into the Sentence Navigator category card, since it configures that + category's commands. Toggling a setting no longer collapses open categories. + (`src/settings.ts`, `styles.css`) ### Fixed diff --git a/manifest.json b/manifest.json index e9547b4..1122298 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "bindthem", "name": "BindThem", - "version": "1.0.0", + "version": "1.1.0", "minAppVersion": "0.15.0", "description": "Enhanced editor shortcuts and formatting tools. Combines smart text wrapping (bold, italic, code, etc.), directional copy/move, heading toggles (H1-H6), line operations, case transformation, multi-cursor support, and file utilities into one unified plugin.", "author": "Olivier Legendre", diff --git a/package.json b/package.json index ec73d1f..796b3cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bindthem", - "version": "1.0.0", + "version": "1.1.0", "description": "A merged plugin combining obsidian-tweaks, obsidian-editor-shortcuts, and heading-toggler functionalities.", "main": "main.js", "type": "module", diff --git a/versions.json b/versions.json index 0f96315..814aa01 100644 --- a/versions.json +++ b/versions.json @@ -1,3 +1,4 @@ { - "1.0.0": "0.15.0" + "1.0.0": "0.15.0", + "1.1.0": "0.15.0" }