Skip to content

Commit

Permalink
WinTenAps 16.12, l10n, requires version 1511
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Lee <[email protected]>
  • Loading branch information
josephsl committed Nov 27, 2016
1 parent f743d71 commit a97d442
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions addon/installTasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
import wx

def onInstall():
requiredVer = "Windows 10 version 1507"
requiredVer = "Windows 10 Version 1511"
# Translators: Dialog text shown when attempting to install the add-on on an unsupported version of Windows (minSupportedVersion is the minimum version required for this add-on)..
if sys.getwindowsversion().build < 10240 and gui.messageBox(_("You are using an older version of Windows. This add-on requires {minSupportedVersion} or later. Are you sure you wish to install this add-on anyway?").format(minSupportedVersion = requiredVer),
if sys.getwindowsversion().build < 10586 and gui.messageBox(_("You are using an older version of Windows. This add-on requires {minSupportedVersion} or later. Are you sure you wish to install this add-on anyway?").format(minSupportedVersion = requiredVer),
# Translators: title of the dialog shown when attempting to install the add-on on an old version of Windows.
_("Old Windows version"), wx.YES | wx.NO | wx.CANCEL | wx.CENTER | wx.ICON_QUESTION) == wx.NO:
raise RuntimeError("Old Windows version detected")
2 changes: 1 addition & 1 deletion buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description" : _("""A collection of app modules for various Windows 10 apps"""),
# version
"addon_version" : "16.11.1",
"addon_version" : "16.12",
# Author(s)
"addon_author" : u"Joseph Lee <[email protected]>, Derek Riemer <[email protected]> and others",
# URL for the add-on documentation support
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The following app modules or support modules for some apps are included (see eac
* Weather.
* Miscellaneous modules for controls such as Start Menu tiles.

Note: this add-on requires Windows 10 Version 1507 (build 10240) or later and NVDA 2016.3 or later. For best results, use the add-on with latest stable build (build 14393).
Note: this add-on requires Windows 10 Version 1511 (build 10586) or later and NVDA 2016.3 or later. For best results, use the add-on with latest stable build (build 14393).

## General

Expand Down

0 comments on commit a97d442

Please sign in to comment.