whisper-key-local 0.5.1__tar.gz → 0.5.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/PKG-INFO +1 -1
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/pyproject.toml +1 -1
- whisper_key_local-0.5.2/src/whisper_key/assets/version.txt +1 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/hotkey_listener.py +4 -1
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key_local.egg-info/PKG-INFO +1 -1
- whisper_key_local-0.5.1/src/whisper_key/assets/version.txt +0 -1
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/README.md +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/setup.cfg +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/__init__.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/portaudio.dll +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/sounds/record_cancel.wav +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/sounds/record_start.wav +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/sounds/record_stop.wav +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/tray_idle.png +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/tray_processing.png +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/tray_recording.png +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/audio_feedback.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/audio_recorder.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/clipboard_manager.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/config.defaults.yaml +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/config_manager.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/console_manager.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/instance_manager.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/main.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/model_registry.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/state_manager.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/system_tray.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/utils.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/voice_activity_detection.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/whisper_engine.py +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key_local.egg-info/SOURCES.txt +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key_local.egg-info/dependency_links.txt +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key_local.egg-info/entry_points.txt +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key_local.egg-info/requires.txt +0 -0
- {whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key_local.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.5.2
|
|
@@ -129,7 +129,10 @@ class HotkeyListener:
|
|
|
129
129
|
self.modifier_key_released = True
|
|
130
130
|
|
|
131
131
|
def _extract_first_modifier(self, hotkey_str: str) -> str:
|
|
132
|
-
|
|
132
|
+
parts = hotkey_str.lower().split('+')
|
|
133
|
+
if len(parts) > 1:
|
|
134
|
+
return parts[0].strip()
|
|
135
|
+
return None
|
|
133
136
|
|
|
134
137
|
def start_listening(self):
|
|
135
138
|
if self.is_listening:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.5.1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/sounds/record_cancel.wav
RENAMED
|
File without changes
|
{whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/sounds/record_start.wav
RENAMED
|
File without changes
|
{whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/sounds/record_stop.wav
RENAMED
|
File without changes
|
|
File without changes
|
{whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/tray_processing.png
RENAMED
|
File without changes
|
{whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/assets/tray_recording.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key/voice_activity_detection.py
RENAMED
|
File without changes
|
|
File without changes
|
{whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key_local.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key_local.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key_local.egg-info/requires.txt
RENAMED
|
File without changes
|
{whisper_key_local-0.5.1 → whisper_key_local-0.5.2}/src/whisper_key_local.egg-info/top_level.txt
RENAMED
|
File without changes
|