Skip to content
This repository was archived by the owner on Jul 3, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/gui/addonStoreGui/controls/messageDialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
from addonStore.models.status import AvailableAddonStatus
import config
from config.configFlags import AddonsAutomaticUpdate
import globalVars
import gui
from gui import nvdaControls
from gui.addonGui import ConfirmAddonInstallDialog, ErrorAddonInstallDialog, promptUserForRestart
Expand All @@ -33,6 +32,7 @@
)
from gui.message import DisplayableError, displayDialogAsModal, messageBox
from logHandler import log
import NVDAState
import ui
import windowUtils

Expand Down Expand Up @@ -547,7 +547,7 @@ def postInstall():
@classmethod
def _checkForUpdatableAddons(cls):
if (
globalVars.appArgs.secure
not NVDAState.shouldWriteToDisk()
or (AddonsAutomaticUpdate.DISABLED == config.conf["addonStore"]["automaticUpdates"])
):
log.debug("automatic add-on updates are disabled")
Expand Down
3 changes: 1 addition & 2 deletions user_docs/en/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Unicode CLDR has also been updated.
* In the Python console, the last unexecuted command will no longer be lost when moving in the input history. (#16653, @CyrilleB79)
* A unique anonymous ID is now sent as part of optional NVDA usage statistics gathering. (#16266)
* By default, a new folder will be created when making a portable copy.
A warning message will inform you if you try writing to a non-empty directory. (#16684)
A warning message will inform you if you try writing to a non-empty directory. (#16686)

### Bug Fixes

Expand All @@ -80,7 +80,6 @@ A warning message will inform you if you try writing to a non-empty directory. (
* When pasting into the Windows 10/11 Calculator, NVDA now correctly reports the full number pasted. (#16573, @TristanBurchett)
* Speech is no longer silent after disconnecting from and reconnecting to a Remote Desktop session. (#16722, @jcsteh)
* Support added for text review commands for an object's name in Visual Studio Code. (#16248, @Cary-Rowen)
* In Mozilla Firefox, NVDA now correctly reports the current character, word and line when the cursor is at the insertion point at the end of a line. (#3156, @jcsteh)
* Playing NVDA sounds no longer fails on a mono audio device. (#16770, @jcsteh)

### Changes for Developers
Expand Down