Skip to content

Commit

Permalink
Merge pull request #16066 from nvaccess/beta
Browse files Browse the repository at this point in the history
Beta to master
  • Loading branch information
seanbudd authored Jan 19, 2024
2 parents 3012d65 + 54e3633 commit 738ead5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion source/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,19 @@ def _genManifestTemplate(shouldHaveUIAccess: bool) -> tuple[int, int, bytes]:
) + (
"__pycache__",
))
+ getRecursiveDataFiles('documentation', '../user_docs', excludes=('*.t2t', '*.t2tconf', '*/developerGuide.*'))
+ getRecursiveDataFiles(
"documentation",
"../user_docs",
excludes=tuple(
f"*{ext}" for ext in importlib.machinery.SOURCE_SUFFIXES + importlib.machinery.BYTECODE_SUFFIXES
) + (
"__pycache__",
"*.t2t",
"*.t2tconf",
"*.md",
"*/user_docs/styles.css",
"*/developerGuide.*"
)
)
),
)
2 changes: 1 addition & 1 deletion user_docs/en/changes.t2t
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Users of Poedit 1 are encouraged to update to Poedit 3 if they want to rely on e
- This new behavior can be disabled using the new "Use enhanced event processing" setting in NVDA's advanced settings.
-
- NVDA is again able to track the focus in applications running within Windows Defender Application Guard (WDAG). (#15164)
- The speech text is no longer updated when the mouse moves in the Speech Viewer. (#15953, @hwf1324)
- The speech text is no longer updated when the mouse moves in the Speech Viewer. (#15952, @hwf1324)
- NVDA will again switch back to browse mode when closing combo boxes with ``escape`` or ``alt+upArrow`` in Firefox or Chrome. (#15653)
- Arrowing up and down in combo boxes in iTunes will no longer inappropriately switch back to browse mode. (#15653)
-
Expand Down
2 changes: 1 addition & 1 deletion user_docs/en/userGuide.t2t
Original file line number Diff line number Diff line change
Expand Up @@ -2948,7 +2948,7 @@ If this is checked, the speech viewer will open when NVDA is started.
The speech viewer window will always attempt to re-open with the same dimensions and location as when it was closed.

While the speech viewer is enabled, it constantly updates to show you the most current text being spoken.
However, if you click or focus inside the viewer, NVDA will temporarily stop updating the text, so that you are able to easily select or copy the existing content.
However, if you hover your mouse over or focus inside the viewer, NVDA will temporarily stop updating the text, so that you are able to easily select or copy the existing content.

To toggle the speech viewer from anywhere, please assign a custom gesture using the [Input Gestures dialog #InputGestures].

Expand Down

0 comments on commit 738ead5

Please sign in to comment.