Skip to content

Commit

Permalink
Shortcut for api.
Browse files Browse the repository at this point in the history
  • Loading branch information
chigkim committed May 6, 2024
1 parent 554ac2f commit a1e6daf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions VOLlama.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 28
version = 29
import wx
import threading
import sounddevice as sd
Expand Down Expand Up @@ -65,7 +65,7 @@ def InitUI(self):
self.configSpeech = chatMenu.Append(wx.ID_ANY, "Configure Voice...")
self.Bind(wx.EVT_MENU, self.speech.present_voice_rate_dialog, self.configSpeech)

self.apiSettingsMenu = chatMenu.Append(wx.ID_ANY, "API Settings...")
self.apiSettingsMenu = chatMenu.Append(wx.ID_ANY, "&API Settings...\tCTRL+SHIFT+A")
self.Bind(wx.EVT_MENU, self.displayAPISettingsDialog, self.apiSettingsMenu)

exitMenu = chatMenu.Append(wx.ID_EXIT)
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Change log

* Shortcut for API Settings: Control+(or Command)+Shift+A
* Creates indexes for only supported file types.
* Remove single file package to speed up load time.
* Clearer status message
Expand Down

0 comments on commit a1e6daf

Please sign in to comment.