commit/wintenApps: 3 new changesets

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Fri, 11 Nov 2016 16:14:49 -0000

3 new commits in wintenApps:

https://bitbucket.org/nvdaaddonteam/wintenapps/commits/970261fb5789/
Changeset:   970261fb5789
Branch:      None
User:        josephsl
Date:        2016-11-02 16:06:59+00:00
Summary:     Windows Store: support Store released in November 2016 
(winstore.app.exe).

Yet another reason for developing this add-on: executable name changed, this 
time involving Windows Store, thus a new module is available to handle this 
case.

Affected #:  1 file

diff --git a/addon/appModules/winstore_app.py b/addon/appModules/winstore_app.py
new file mode 100755
index 0000000..50b06bf
--- /dev/null
+++ b/addon/appModules/winstore_app.py
@@ -0,0 +1,8 @@
+# Windows 10 Store
+# Part of Windows 10 App Essentials
+# Copyright 2016 Joseph Lee, released under GPL
+
+# Enhancements to support Windows Store.
+# New app module as of November 2016.
+
+from winstore_mobile import *


https://bitbucket.org/nvdaaddonteam/wintenapps/commits/c980c9982a68/
Changeset:   c980c9982a68
Branch:      None
User:        josephsl
Date:        2016-11-04 18:27:19+00:00
Summary:     Skype Preview: audio/video combo boxes are properly labeled.

In November 2016 version of Skype Preview, settings were added to control 
default audio and/or video devices. Unfortunately these combo boxes are not 
labeled, but the labels are next to the combo boxes. Thus let NVDA recognize 
them.

Affected #:  1 file

diff --git a/addon/appModules/skypeapp.py b/addon/appModules/skypeapp.py
index 907293d..c2083f9 100755
--- a/addon/appModules/skypeapp.py
+++ b/addon/appModules/skypeapp.py
@@ -9,6 +9,7 @@ import appModuleHandler
 import ui
 from NVDAObjects.UIA import UIA
 import api
+import controlTypes
 
 class AppModule(appModuleHandler.AppModule):
 
@@ -19,6 +20,14 @@ class AppModule(appModuleHandler.AppModule):
                for pos in xrange(1, 4):
                        self.bindGesture("kb:alt+%s"%pos, "moveToArea")
 
+       def event_NVDAObject_init(self, obj):
+               if isinstance(obj, UIA):
+                       # Skype Preview 11.9 includes audio/video config combo 
boxes but they are not labeled correctly.
+                       # Thankfully the label is right next door.
+                       if obj.role == controlTypes.ROLE_COMBOBOX and obj.name 
== "" and obj.UIAElement.cachedAutomationID.startswith("AudioVideoDevices"):
+                               obj.name = obj.previous.name
+
+
        # Locate various elements, as this is one of the best ways to do this 
in Skype Preview.
        # The best criteria is automation ID (class names are quite generic).
        def locateElement(self, automationID):


https://bitbucket.org/nvdaaddonteam/wintenapps/commits/3bf4ea187b53/
Changeset:   3bf4ea187b53
Branch:      stable
User:        josephsl
Date:        2016-11-11 16:12:04+00:00
Summary:     WinTenApps 16.11.1, Skype Preview fixes

Signed-off-by: Joseph Lee <joseph.lee22590@xxxxxxxxx>

Affected #:  2 files

diff --git a/buildVars.py b/buildVars.py
index fff06b1..d64c1b0 100755
--- a/buildVars.py
+++ b/buildVars.py
@@ -19,7 +19,7 @@ addon_info = {
        # 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",
+       "addon_version" : "16.11.1",
        # Author(s)
        "addon_author" : u"Joseph Lee <joseph.lee22590@xxxxxxxxx>, Derek Riemer 
<driemer.riemer@xxxxxxxxx> and others",
        # URL for the add-on documentation support

diff --git a/readme.md b/readme.md
index 72a6d92..a58bb6b 100755
--- a/readme.md
+++ b/readme.md
@@ -77,6 +77,7 @@ Note: this add-on requires Windows 10 Version 1507 (build 
10240) or later and NV
 * Typing indicator text is announced just like Skype for Desktop client.
 * Partial return of Control+NvDA+number row commands to read recent chat 
history and to move navigator object to chat entries just like Skype for 
Desktop.
 * You can now press Alt+number row to locate and move to contacts list (1), 
conversations (2) and chat edit field (3). Note that one must activate these 
tabs to move to the desired part.
+* Combo box labels for Skype preview app released in November 2016 are 
announced.
 
 ## Store

Repository URL: https://bitbucket.org/nvdaaddonteam/wintenapps/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts: