Skip to content

This is a fork of the speech history add-on for NVDA, created by Tyler Spivey and mantained by James Scholes. This add-on adds some features like shows a dialog with all history elements. Also, The keystrokes were updated because the original keys could present conflicts with other applications, since very common keys were used in the original a…

License

Notifications You must be signed in to change notification settings

davidacm/SpeechHistoryExplorer

 
 

Repository files navigation

NVDA Speech History Explorer

This is a fork of the speech history add-on for NVDA, initially created by Tyler Spivey in 2012 and maintained by James Scholes. This add-on adds some features. Also, The keystrokes were updated because the original keys could present conflicts with other applications, since very common keys were used in the original add-on, E.G, f12.

features:

  • A command to copy the most recent spoken text to the clipboard.
  • Ability to review the 500 most recent items spoken by NVDA.
  • Show a dialog with the current most recent items spoken by NVDA. You can review, multi-select items and copy the current item or items selected.

Usage.

* Review the most recent items spoken by NVDA: press NVDA + shift + f11 (previous item) or NVDA + shift + f12 (next item).
* Copy the last item read by NVDA, or the current reviewed item: NVDA + control + f12.
* Show a dialog with the current most recent items spoken by NVDA: NVDA + alt + f12

Speech history elements.

In this dialog, you will be focused in the most recent items spoken by NVDA, the most recent item first. You can navigate the items by using up and down arrow keys. Each element will show just 100 characters, but you can see the entire contend by pressing tab key in a multiline text edit field. Those items won't update with new items spoken by NVDA. If you want to update the list of items, you must restart this dialog or press the "refresh history" button.

You can search in the entire elements in the search edit field. Type some letters or words and then, press enter. The list of items will be updated according to your search. To clean the search, just clean the text in the search edit field, and press enter. Also, a search will be made if you are in the search field, and the field loses the focus. E.G, by pressing tab or focus another control in some another way.

You can copy the current selected items, by using the copy button. This will copy all text shown in the field that contains all items selected. Also, you can copy all current items with "Copy all" button. This will copy just the current items shown in the list, each one will be separated by a newline. If you searched something, then this button will only copy the items found.

If you want to select more than one item, use same keys as on windows. E.G, shift + up and down arrow keys to do contiguous selection, control + the same keys to do uncontiguous selection. To close this dialog, press escape or close button.

Contributing fixing bugs and new features.

If you want to fix a bug or add new feature, You will need to fork this repository.

Forking the repository.

If this is your first contribution, you will first need to "fork" the SpeechHistoryExplorer repository on github:

  1. Fork this repo in your github account.
  2. Clone your forked repo locally: "git clone yourRepoUrl".
  3. Add this repo in your forked repo from the command line:
    "git remote add davidacm https://github.com/davidacm/SpeechHistoryExplorer.git".
  4. fetch my branches:
    "git fetch davidacm".
  5. Switch to the local SPE branch: "git checkout SPE".
  6. Set the local SPE to use the davidacm SPE as its upstream:
    "git branch -u davidacm/SPE".

Steps before coding.

You must use a separate "topic" branch for each issue or feature. All code should usually be based on the latest commit in the official SPE branch at the time you start the work. So, before begin to work, do the following:

  1. Remember the steps of "Forking the repository" section.
  2. Checkout to SPE branch: "git checkout SPE".
  3. Update the local SPE: "git pull".
  4. Create a new branch based on the updated SPE branch: "git checkout -b YourNewBranch".
  5. write your code.
  6. Add your work to be commited (clean unwanted files first): git "add ."
  7. create a commit: "git commit" and write the commit message.
  8. push your branch in your repository: "git push". if the branch doesn't exist, git will tell you how to deal with this.
  9. Request a pull request on my repository.

Note: the main branch is called SPE. That's because this is a repo, and I prefer to use the SPE branch. The master branch will be used to integrate important changes from the original forked repository.

About

This is a fork of the speech history add-on for NVDA, created by Tyler Spivey and mantained by James Scholes. This add-on adds some features like shows a dialog with all history elements. Also, The keystrokes were updated because the original keys could present conflicts with other applications, since very common keys were used in the original a…

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Python 96.6%
  • CSS 1.7%
  • Smarty 1.7%