Skip to content

Commit

Permalink
Restore NVDA process helper's name (#16134)
Browse files Browse the repository at this point in the history
Fixes #16094

Summary of the issue:
UAC requests were informing users that "A free and open source screen reader for Microsoft Windows" wanted to make changes to their PC.

Description of user facing changes
Changed back to the old behaviour where UAC dialogs called the launcher "NVDA".

Description of development approach
Updated nvda_slave.pyw's script in setup.py to have version_info.description be name rather than description.
  • Loading branch information
SaschaCowley committed Feb 28, 2024
1 parent 6eb646d commit 64c9160
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: UTF-8 -*-
# A part of NonVisual Desktop Access (NVDA)
# Copyright (C) 2006-2023 NV Access Limited, Peter Vágner, Joseph Lee
# Copyright (C) 2006-2024 NV Access Limited, Peter Vágner, Joseph Lee
# This file is covered by the GNU General Public License.
# See the file COPYING for more details.

Expand Down Expand Up @@ -123,7 +123,7 @@ def _genManifestTemplate(shouldHaveUIAccess: bool) -> tuple[int, int, bytes]:
"other_resources": [_genManifestTemplate(shouldHaveUIAccess=False)],
"version_info": {
"version": formatBuildVersionString(),
"description": description,
"description": name,
"product_name": name,
"product_version": version,
"copyright": NVDAcopyright,
Expand Down

0 comments on commit 64c9160

Please sign in to comment.