scribe-cli 0.13.0__tar.gz → 0.13.1__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.
Files changed (31) hide show
  1. {scribe_cli-0.13.0/scribe_cli.egg-info → scribe_cli-0.13.1}/PKG-INFO +3 -3
  2. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/README.md +2 -2
  3. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/_version.py +2 -2
  4. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/app.py +5 -4
  5. {scribe_cli-0.13.0 → scribe_cli-0.13.1/scribe_cli.egg-info}/PKG-INFO +3 -3
  6. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/.github/workflows/pypi.yml +0 -0
  7. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/.gitignore +0 -0
  8. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/LICENSE +0 -0
  9. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/icon.xcf +0 -0
  10. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/pyproject.toml +0 -0
  11. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/__init__.py +0 -0
  12. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/audio.py +0 -0
  13. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/install_desktop.py +0 -0
  14. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/keyboard.py +0 -0
  15. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/models.py +0 -0
  16. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/models.toml +0 -0
  17. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/saverecording.py +0 -0
  18. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/testpynput.py +0 -0
  19. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe/util.py +0 -0
  20. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe_cli.egg-info/SOURCES.txt +0 -0
  21. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe_cli.egg-info/dependency_links.txt +0 -0
  22. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe_cli.egg-info/entry_points.txt +0 -0
  23. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe_cli.egg-info/requires.txt +0 -0
  24. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe_cli.egg-info/top_level.txt +0 -0
  25. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe_data/__init__.py +0 -0
  26. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe_data/share/icon.png +0 -0
  27. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe_data/share/icon_recording.png +0 -0
  28. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe_data/share/icon_writing.png +0 -0
  29. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scribe_data/templates/scribe.desktop +0 -0
  30. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/scripts/test_python_versions_install.sh +0 -0
  31. {scribe_cli-0.13.0 → scribe_cli-0.13.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: scribe-cli
3
- Version: 0.13.0
3
+ Version: 0.13.1
4
4
  Summary: scribe is a local speech recognition tool that provides real-time transcription using vosk and whisper AI, with the goal of serving as a virtual keyboard on a computer
5
5
  Author-email: Mahé Perrette <mahe.perrette@gmail.com>
6
6
  License: MIT License
@@ -269,8 +269,8 @@ to make it available from the quick launch menu. Any option will be passed on to
269
269
 
270
270
  Consider the following two flavors:
271
271
  ```bash
272
- scribe-install --clipboard ...
273
- scribe-install --name "Scribe App" --no-terminal --clipboard ...
272
+ scribe-install --name "Scribe Terminal" --clipboard ...
273
+ scribe-install --name "Scribe" --no-terminal --clipboard ...
274
274
  ```
275
275
  The first will create an app named Scribe (the default) that simply opens a terminal and execute the command `scribe --clipboard ...`.
276
276
  The second will create an app named Scribe App that executes in a hidden terminal: `scribe --no-prompt --app --clipboard ...`, thus leaving the tray icon as only mode of interaction.
@@ -197,8 +197,8 @@ to make it available from the quick launch menu. Any option will be passed on to
197
197
 
198
198
  Consider the following two flavors:
199
199
  ```bash
200
- scribe-install --clipboard ...
201
- scribe-install --name "Scribe App" --no-terminal --clipboard ...
200
+ scribe-install --name "Scribe Terminal" --clipboard ...
201
+ scribe-install --name "Scribe" --no-terminal --clipboard ...
202
202
  ```
203
203
  The first will create an app named Scribe (the default) that simply opens a terminal and execute the command `scribe --clipboard ...`.
204
204
  The second will create an app named Scribe App that executes in a hidden terminal: `scribe --no-prompt --app --clipboard ...`, thus leaving the tray icon as only mode of interaction.
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.13.0'
21
- __version_tuple__ = version_tuple = (0, 13, 0)
20
+ __version__ = version = '0.13.1'
21
+ __version_tuple__ = version_tuple = (0, 13, 1)
@@ -413,9 +413,10 @@ def create_app(micro, transcriber, other_transcribers=None, transcriber_options=
413
413
  menus.append(Item("Choose Model", pystrayMenu(
414
414
  *(Item(f"{name}", callback_set_model, checked=is_checked_model) for name in other_transcribers_dict)))
415
415
  )
416
- menus.append(Item("Toggle Options", pystrayMenu(
417
- *(Item(f"{name}", callback_toggle_option, checked=is_checked_option, visible=is_option_visible) for name in options)))
418
- )
416
+ if options:
417
+ menus.append(Item("Toggle Options", pystrayMenu(
418
+ *(Item(f"{name}", callback_toggle_option, checked=is_checked_option, visible=is_option_visible) for name in options)))
419
+ )
419
420
  menus.append(Item('Quit', callback_quit))
420
421
 
421
422
  # Create a menu
@@ -567,7 +568,7 @@ def main(args=None):
567
568
  *[{**_filter_options(vars(o), exclude=VoskTranscriber._frozen_options), "backend": "vosk", "model": model} for model in o.vosk_models]],
568
569
  clipboard=o.clipboard, output_file=o.output_file,
569
570
  keyboard=o.keyboard, latency=o.latency, ascii=o.ascii,
570
- transcriber_options=["restart_after_silence"], **greetings)
571
+ transcriber_options=[], **greetings)
571
572
  print("Starting app...")
572
573
  app.run()
573
574
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: scribe-cli
3
- Version: 0.13.0
3
+ Version: 0.13.1
4
4
  Summary: scribe is a local speech recognition tool that provides real-time transcription using vosk and whisper AI, with the goal of serving as a virtual keyboard on a computer
5
5
  Author-email: Mahé Perrette <mahe.perrette@gmail.com>
6
6
  License: MIT License
@@ -269,8 +269,8 @@ to make it available from the quick launch menu. Any option will be passed on to
269
269
 
270
270
  Consider the following two flavors:
271
271
  ```bash
272
- scribe-install --clipboard ...
273
- scribe-install --name "Scribe App" --no-terminal --clipboard ...
272
+ scribe-install --name "Scribe Terminal" --clipboard ...
273
+ scribe-install --name "Scribe" --no-terminal --clipboard ...
274
274
  ```
275
275
  The first will create an app named Scribe (the default) that simply opens a terminal and execute the command `scribe --clipboard ...`.
276
276
  The second will create an app named Scribe App that executes in a hidden terminal: `scribe --no-prompt --app --clipboard ...`, thus leaving the tray icon as only mode of interaction.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes