From 530a76ffba7a3c12befc17bd13feab903cad6961 Mon Sep 17 00:00:00 2001 From: Colton <70598503+C-Loftus@users.noreply.github.com> Date: Tue, 11 Jun 2024 20:17:37 -0400 Subject: [PATCH] update url --- .gitignore | 3 +++ core/callbacks.py | 5 +++-- docs/src/CONTRIBUTING.md | 2 +- nvda/.addOn/sight-free-talon-server/buildVars.py | 9 +++++---- readme.md | 6 +++--- 5 files changed, 15 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 042e54c..8042108 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,6 @@ manifest.ini .ruff_cache/ .mypy_cache/ __pycache__/ + +# If output via precommit +node_modules/ \ No newline at end of file diff --git a/core/callbacks.py b/core/callbacks.py index f405da8..83506f9 100644 --- a/core/callbacks.py +++ b/core/callbacks.py @@ -65,8 +65,9 @@ def on_update_contexts(): DICTATION = "dictation" in modes and "command" not in modes SLEEP = "sleep" in modes - - speak = actions.user.echo_dictation_enabled() and settings.get("user.announce_mode_updates") + speak = actions.user.echo_dictation_enabled() and settings.get( + "user.announce_mode_updates" + ) message_to_speak: str = "" if last_mode == "sleep" and not SLEEP: diff --git a/docs/src/CONTRIBUTING.md b/docs/src/CONTRIBUTING.md index ef1e44a..0d414bb 100644 --- a/docs/src/CONTRIBUTING.md +++ b/docs/src/CONTRIBUTING.md @@ -2,7 +2,7 @@ My goal is to make contributing as easy as possible. Please directly reach out to me if you are interested in contributing to this repository. I am happy to help you get started and answer any questions you may have. -I can be reached either through the Talon Slack or my website, [https://colton.bio](https://colton.bio). +I can be reached either through the Talon Slack or my website, [https://colton.place](https://colton.place). ## Technical Contributions diff --git a/nvda/.addOn/sight-free-talon-server/buildVars.py b/nvda/.addOn/sight-free-talon-server/buildVars.py index 67b5951..6345905 100644 --- a/nvda/.addOn/sight-free-talon-server/buildVars.py +++ b/nvda/.addOn/sight-free-talon-server/buildVars.py @@ -25,13 +25,14 @@ def _(arg): # Translators: Long description to be shown for this add-on on add-on information from add-ons manager "addon_description": _( "Recieves and processes commands sent from the Talon Voice dictation engine to NVDA. It is tightly scoped and only allows clients to change settings for speech verbosity and interrupts." + "Integrate the Talon Voice dictation engine with NVDA. Improves the user experience of dictation by echoing back dictated commands and allowing users to interrupt text-to-speech via Talon" ), # version "addon_version": "1.0", # Author(s) - "addon_author": "Colton Loftus https://colton.bio/contact/", + "addon_author": "Colton Loftus https://colton.place/contact/", # URL for the add-on documentation support - "addon_url": "https://colton.bio/sight-free-talon/", + "addon_url": "https://colton.place/sight-free-talon/", # URL for the add-on repository where the source code can be found "addon_sourceURL": "https://github.com/C-Loftus/sight-free-talon", # Documentation file name @@ -45,9 +46,9 @@ def _(arg): # Do not change unless you know what you are doing! "addon_updateChannel": None, # Add-on license such as GPL 2 - "addon_license": "GPL 3", + "addon_license": "GPL 2", # URL for the license document the ad-on is licensed under - "addon_licenseURL": "https://www.gnu.org/licenses/gpl-3.0.en.html#license-text", + "addon_licenseURL": "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", } # Define the python files that are the sources of your add-on. diff --git a/readme.md b/readme.md index f1f7f1d..b617301 100644 --- a/readme.md +++ b/readme.md @@ -21,11 +21,11 @@ This repository integrates with: - Watch my demo video for a quick overview - - Sight-free-talon overview video + + -- [Official docs](https://colton.bio/sight-free-talon/) can be found on my website and are in active development +- [Official docs](https://colton.place/sight-free-talon/) can be found on my website and are in active development - All voice commands are found in the `.talon` files in each subdirectory and are scoped to each corresponding application or context # Installing