Skip to content

Commit 79ece0e

Browse files
feat: bump version to 1.3.1 and add tag filtering state and UI component
1 parent 623b93e commit 79ece0e

4 files changed

Lines changed: 16 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.3.1]
9+
10+
### Added
11+
12+
* **AI Total App Control**: Updated the AI Assistant's system prompt and tool definitions to enable seamless control over UI themes and Lua plugins.
13+
* **Help Menu Clarity**: Added dedicated keybinding information for the Import/Export menu to the global help screen.
14+
15+
### Fixed
16+
17+
* **Focus Management**: Resolved a bug where typing in the Import/Export file path box would inadvertently trigger global app keybindings.
18+
819
## [1.3.0]
920

1021
### Added

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1

internal/app/model.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,9 @@ func (m *Model) isInputFocused() bool {
369369
case ModeTagFilter:
370370
// Tag filter input field is active when filtering by tag
371371
return true
372+
case ModeImportExport:
373+
// Import/Export menu has a file path input field
374+
return true
372375
default:
373376
// All other modes don't have active text input fields, so keybindings can safely fire
374377
return false

internal/ui/help/model.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ func (m Model) View() string {
9393
{getK(m.km.OpenPluginDir), "󰝰 " + "Open plugins folder"},
9494
{getK(m.km.ManagePlugins), styles.IconPlugin + "Manage plugins"},
9595
{getK(m.km.Settings), "󰒓 " + "Settings menu"},
96+
{getK(m.km.ImportExport), "󰛖 " + "Import / Export menu"},
9697
{getK(m.km.AIPanelToggle), "🤖 " + "AI Assistant panel"},
9798
{getK(m.km.Help), styles.IconHelp + "Show help"},
9899
{getK(m.km.Issues), styles.IconIssues + "Open GitHub issues"},

0 commit comments

Comments
 (0)