From 5506d324480e954fe90d4628a6bcbf1d226e671b Mon Sep 17 00:00:00 2001 From: Bill Dengler Date: Fri, 6 Sep 2024 12:43:49 -0700 Subject: [PATCH 1/2] Disable reporting of link type by default --- source/config/configSpec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/config/configSpec.py b/source/config/configSpec.py index 651ca1aecd..ca553b9366 100644 --- a/source/config/configSpec.py +++ b/source/config/configSpec.py @@ -242,7 +242,7 @@ # 0: Off, 1: style, 2: color and style reportCellBorders = integer(0, 2, default=0) reportLinks = boolean(default=true) - reportLinkType = boolean(default=true) + reportLinkType = boolean(default=false) reportGraphics = boolean(default=True) reportComments = boolean(default=true) reportBookmarks = boolean(default=true) From ee3727222575562130dff854e4565451dc6b2787 Mon Sep 17 00:00:00 2001 From: Bill Dengler Date: Fri, 6 Sep 2024 12:45:53 -0700 Subject: [PATCH 2/2] Update what's new --- user_docs/en/changes.md | 1 + 1 file changed, 1 insertion(+) diff --git a/user_docs/en/changes.md b/user_docs/en/changes.md index 2d3f8cc814..45a364303b 100644 --- a/user_docs/en/changes.md +++ b/user_docs/en/changes.md @@ -11,6 +11,7 @@ In order to use this feature, the application volume adjuster needs to be enable * When editing in Microsoft PowerPoint text boxes, you can now move per sentence with `alt+upArrow`/`alt+downArrow`. (#17015, @LeonarddeR) * In Mozilla Firefox, NVDA will report the highlighted text when a URL containing a text fragment is visited. (#16910, @jcsteh) * NVDA can now report when a link destination points to the current page. (#141, @LeonarddeR, @nvdaes) + * This feature can be enabled in the document formatting settings panel. * Added an action in the Add-on Store to cancel the install of add-ons. (#15578, @hwf1324) * It is now possible to specify a mirror URL to use for the Add-on Store. (#14974)