Skip to content

Commit

Permalink
Update url to match new docs website and fix license version (#36)
Browse files Browse the repository at this point in the history
* update url

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* fix version

* Bump version, fix description, and move access focus into beta

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
C-Loftus and pre-commit-ci[bot] authored Jun 12, 2024
1 parent d4ce9fa commit 0bcc9e8
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 13 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
14 changes: 7 additions & 7 deletions nvda/.addOn/sight-free-talon-server/buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,30 +24,30 @@ def _(arg):
# Add-on description
# 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."
"Recieves and processes commands sent from the Talon Voice dictation engine to NVDA. Improves the user experience of dictation by echoing back dictated phrases and optionally controlling NVDA via voice commands"
),
# version
"addon_version": "1.0",
"addon_version": "1.0.1",
# 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
"addon_docFileName": "readme.html",
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
"addon_minimumNVDAVersion": "2019.3",
# Last NVDA version supported/tested
"addon_lastTestedNVDAVersion": "2023.3.4",
"addon_lastTestedNVDAVersion": "2024.1.0",
# Add-on update channel (default is None, denoting stable releases,
# and for development releases, use "dev".)
# 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
2 changes: 2 additions & 0 deletions utils/access-focus.py → utils/.access-focus.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# THIS FILE IS CURRENTLY LIMITED TO TALON BETA

from talon import Context, Module, actions, ui
from talon.windows import ax as ax

Expand Down
File renamed without changes.

0 comments on commit 0bcc9e8

Please sign in to comment.