2.4.2 #8

Merged
rune merged 14 commits from 2.4.2 into main 2026-07-22 15:26:48 +02:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 98979584fb - Show all commits
@@ -1526,7 +1526,7 @@ Whenever the user asks you to translate something, translate it to Norwegian Bok
<dt><kbd>⌘,</kbd></dt> <dt><kbd>⌘,</kbd></dt>
<dd>Open Settings</dd> <dd>Open Settings</dd>
<dt><kbd>⌘/</kbd></dt> <dt><kbd>⌃⌘H</kbd></dt>
<dd>Show in-app Help</dd> <dd>Show in-app Help</dd>
<dt><kbd>⌘?</kbd></dt> <dt><kbd>⌘?</kbd></dt>
+1 -1
View File
@@ -213,7 +213,7 @@ private let keyboardShortcuts: [(key: String, description: String)] = [
("\u{2318}L", "Conversations"), ("\u{2318}L", "Conversations"),
("\u{21E7}\u{2318}S", "Statistics"), ("\u{21E7}\u{2318}S", "Statistics"),
("\u{2318},", "Settings"), ("\u{2318},", "Settings"),
("\u{2318}/", "Help"), ("\u{2303}\u{2318}H", "Help"),
] ]
// MARK: - HelpView // MARK: - HelpView
+1 -1
View File
@@ -133,7 +133,7 @@ struct oAIApp: App {
.keyboardShortcut("h", modifiers: [.command, .shift]) .keyboardShortcut("h", modifiers: [.command, .shift])
Button("In-App Help") { chatViewModel.showHelp = true } Button("In-App Help") { chatViewModel.showHelp = true }
.keyboardShortcut("/", modifiers: .command) .keyboardShortcut("h", modifiers: [.command, .control])
Button("Credits") { chatViewModel.showCredits = true } Button("Credits") { chatViewModel.showCredits = true }