File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
Original file line number Diff line number Diff line change 1- 1.3.0
1+ 1.3.1
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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" },
You can’t perform that action at this time.
0 commit comments