Skip to content

Commit

Permalink
update url
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Loftus committed Jun 12, 2024
1 parent d4ce9fa commit 530a76f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ manifest.ini
.ruff_cache/
.mypy_cache/
__pycache__/

# If output via precommit
node_modules/
5 changes: 3 additions & 2 deletions core/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
9 changes: 5 additions & 4 deletions nvda/.addOn/sight-free-talon-server/buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ This repository integrates with:

- Watch my demo video for a quick overview

<a href="https://www.youtube.com/watch?v=i-XcpnVwvR0" title="Sight-free-talon overview video">
<img alt="Sight-free-talon overview video" src="https://github.com/C-Loftus/sight-free-talon/assets/70598503/1c33a46b-9595-4641-a6c1-0bc11b4ea90d" width="400">
<a href="https://www.youtube.com/watch?v=i-XcpnVwvR0" title="Sight-free-talon overview video" alt="Sight-free-talon overview video">
<img alt="Sight-free-talon overview video" src="https://github.com/C-Loftus/sight-free-talon/assets/70598503/1c33a46b-9595-4641-a6c1-0bc11b4ea90d" width="400" aria-hidden="true" >
</a>

- [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
Expand Down

0 comments on commit 530a76f

Please sign in to comment.