commit/wintenApps: 4 new changesets

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Sun, 18 Dec 2016 02:08:15 -0000

4 new commits in wintenApps:

https://bitbucket.org/nvdaaddonteam/wintenapps/commits/72ea7e058c6b/
Changeset:   72ea7e058c6b
Branch:      None
User:        josephsl
Date:        2016-12-06 19:53:11+00:00
Summary:     WinTenApps 16.12.1, announcing suggestions in Groove Music, l10n

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

Affected #:  2 files

diff --git a/buildVars.py b/buildVars.py
index d19f84d..bf83d78 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.12",
+       "addon_version" : "16.12.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 f67bc70..078007d 100755
--- a/readme.md
+++ b/readme.md
@@ -13,6 +13,7 @@ The following app modules or support modules for some apps 
are included (see eac
 * Calendar
 * Calculator (modern).
 * Cortana
+* Groove Music
 * Mail
 * Maps
 * Microsoft Edge
@@ -53,6 +54,10 @@ Note: this add-on requires Windows 10 Version 1511 (build 
10586) or later and NV
 * NVDA will be silent when you talk to Cortana via voice.
 * NVDA will now announce reminder confirmation after you set one.
 
+## Groove Music
+
+* Appearance of suggestions when searching for tracks is now detected.
+
 ## Mail and calendar
 
 * NVDA no longer announces "edit" or "read-only" in message body and other 
fields.


https://bitbucket.org/nvdaaddonteam/wintenapps/commits/f0e63d0ef7b4/
Changeset:   f0e63d0ef7b4
Branch:      None
User:        josephsl
Date:        2016-12-08 05:32:48+00:00
Summary:     Windows Defender UWP: Add a workaround to let NVDA announce button 
labels.

Build 14986 and later: similar to Twitter and other app modules, current 
version of Windows Defender UWP has no labels for certain buttons. Thankfully, 
the last child of this control has the labels we need, so fetch this instead.
This is a temporary solution and will be removed once correct labels from 
Microsoft are released and implemented correctly.

Affected #:  1 file

diff --git a/addon/appModules/sechealthui.py b/addon/appModules/sechealthui.py
new file mode 100755
index 0000000..fc62d3f
--- /dev/null
+++ b/addon/appModules/sechealthui.py
@@ -0,0 +1,19 @@
+# WinTenApps/SecHealthUI.py
+# Part of Windows 10 App Essentials collection
+# Copyright 2016 Joseph Lee, released under GPL.
+
+# Workarounds for Windows Defender UWP (build 14986 and later).
+
+import appModuleHandler
+import controlTypes
+from NVDAObjects.UIA import UIA
+
+class AppModule(appModuleHandler.AppModule):
+
+       def event_NVDAObject_init(self, obj):
+               # Until Microsoft fixes this...
+               if isinstance(obj, UIA) and obj.role == 
controlTypes.ROLE_BUTTON and obj.name == "":
+                       try:
+                               obj.name = obj.lastChild.name
+                       except AttributeError:
+                               pass


https://bitbucket.org/nvdaaddonteam/wintenapps/commits/8d981d8b9646/
Changeset:   8d981d8b9646
Branch:      None
User:        josephsl
Date:        2016-12-14 03:30:07+00:00
Summary:     Alarms and Clock and other looping selectors: selector values are 
now announced when moving focus. re #10.

There might be a way UIA communicates item selection for lists... For now, both 
time picker labels and values will be announced, with values coming from 
traversing list items and looking for selection state.

Affected #:  1 file

diff --git a/addon/globalPlugins/wintenObjs.py 
b/addon/globalPlugins/wintenObjs.py
index be33fa1..7504f93 100755
--- a/addon/globalPlugins/wintenObjs.py
+++ b/addon/globalPlugins/wintenObjs.py
@@ -54,6 +54,20 @@ class LoopingSelectorItem(UIA):
                api.setNavigatorObject(self)
                self.reportFocus()
 
+# Looping selector lists.
+# Announce selected value if told to do so.
+class LoopingSelectorList(UIA):
+
+       def reportFocus(self):
+               loopingValue = self.simpleFirstChild
+               while loopingValue:
+                       if 4 in loopingValue.states:
+                               self.value = loopingValue.name
+                               break
+                       loopingValue = loopingValue.next
+               super(UIA, self).reportFocus()
+
+
 # Search fields.
 # Some of them raise controller for event, an event fired if another UI 
element depends on this control.
 class SearchField(UIA):
@@ -122,6 +136,9 @@ class GlobalPlugin(globalPluginHandler.GlobalPlugin):
                        # Handle both Threshold and Redstone looping selector 
items.
                        if obj.role==controlTypes.ROLE_LISTITEM and 
"LoopingSelectorItem" in obj.UIAElement.cachedClassName:
                                clsList.append(LoopingSelectorItem)
+                       # Also announce values when focus moves to it.
+                       elif obj.role==controlTypes.ROLE_LIST and 
"LoopingSelector" in obj.UIAElement.cachedClassName:
+                               clsList.insert(0, LoopingSelectorList)
                        # Windows that are really dialogs.
                        elif obj.UIAElement.cachedClassName in wintenDialogs:
                                # But some are not dialogs despite what UIA 
says (for example, search popup in Store).


https://bitbucket.org/nvdaaddonteam/wintenapps/commits/3d56c825978a/
Changeset:   3d56c825978a
Branch:      stable
User:        josephsl
Date:        2016-12-18 02:07:52+00:00
Summary:     Merge branch 'stable' of 
http://bitbucket.org/nvdaaddonteam/wintenApps into stable

Affected #:  8 files

diff --git a/addon/doc/bg/readme.md b/addon/doc/bg/readme.md
index 9be103a..33613e3 100644
--- a/addon/doc/bg/readme.md
+++ b/addon/doc/bg/readme.md
@@ -17,6 +17,7 @@
 * Календар
 * Калкулатор (универсално приложение).
 * Cortana
+* Groove Music
 * Поща
 * Карти
 * Microsoft Edge
@@ -74,6 +75,10 @@
 * NVDA вече ще съобщава потвърждението за напомняне, след като сте задали
   такова.
 
+## Groove Music
+
+* Appearance of suggestions when searching for tracks is now detected.
+
 ## Поща и Календар
 
 * NVDA вече не съобщава "поле за писане" или "само за четене" в полето за

diff --git a/addon/doc/es/readme.md b/addon/doc/es/readme.md
index 21775a6..9f24df3 100644
--- a/addon/doc/es/readme.md
+++ b/addon/doc/es/readme.md
@@ -16,6 +16,7 @@ qué se incluye):
 * Calendario
 * Calculadora (modern).
 * Cortana
+* Groove Music
 * Correo
 * Mapas
 * Microsoft Edge
@@ -74,6 +75,10 @@ utiliza el complemento con la compilación estable más 
reciente (compilación
 * NVDA se silenciará cuando hables a Cortana a través de la voz.
 * NVDA ahora anunciará confirmación de recuerdo después de configurarla.
 
+## Groove Music
+
+* Appearance of suggestions when searching for tracks is now detected.
+
 ## Correo y calendario
 
 * NVDA ya no anuncia "editar" o "sólo lectura" en el cuerpo del mensaje y

diff --git a/addon/doc/fi/readme.md b/addon/doc/fi/readme.md
index a736bbd..4790f40 100644
--- a/addon/doc/fi/readme.md
+++ b/addon/doc/fi/readme.md
@@ -15,6 +15,7 @@ käytettävissä olevista ominaisuuksista kunkin sovelluksen 
kappaleesta):
 * Kalenteri
 * Laskin (moderni)
 * Cortana
+* Groove Music
 * Sähköposti
 * Kartat
 * Microsoft Edge
@@ -72,6 +73,10 @@ tulosten saamiseksi viimeisintä vakaata koontiversiota 
(14393).
 * NVDA on hiljaa puhuessasi Cortanalle mikrofonin välityksellä.
 * NVDA puhuu nyt vahvistuksen muistutusta lisättäessä.
 
+## Groove Music
+
+* Ehdotusten ilmestyminen havaitaan nyt kappaleita etsittäessä.
+
 ## Sähköposti ja kalenteri
 
 * NVDA ei enää ilmoita "muokattava" tai "vain luku" viestisisällössä ja

diff --git a/addon/doc/fr/readme.md b/addon/doc/fr/readme.md
index 1fa9e79..4b9e580 100644
--- a/addon/doc/fr/readme.md
+++ b/addon/doc/fr/readme.md
@@ -17,6 +17,7 @@ est inclus) :
 * Calendrier
 * Calculatrice (modern).
 * Cortana
+* Groove Music
 * Courrier
 * Cartes
 * Microsoft Edge
@@ -74,6 +75,10 @@ stable build (build 14393).
 * NVDA annoncera maintenant un rappel de confirmation après que vous
   définissez une.
 
+## Groove Music
+
+* Appearance of suggestions when searching for tracks is now detected.
+
 ## Courrier et calendrier
 
 * NVDA n'annoncera plus "edition" ou "lecture seule" dans le corps du

diff --git a/addon/doc/gl/readme.md b/addon/doc/gl/readme.md
index 2521cf4..e986499 100644
--- a/addon/doc/gl/readme.md
+++ b/addon/doc/gl/readme.md
@@ -16,6 +16,7 @@ se inclúe):
 * Calendario
 * Calculadora (modern).
 * Cortana
+* Groove Music
 * Correo
 * Mapas
 * Microsoft Edge
@@ -72,6 +73,10 @@ resultados, usa o complemento coa última versión estable 
(compilación
 * NVDA agora anunciará a confirmación de lembrarse despois de que axustes
   unha.
 
+## Groove Music
+
+* Appearance of suggestions when searching for tracks is now detected.
+
 ## Correo e calendario
 
 * NVDA xa non anuncia "editar" ou "só lectura" para asuntos da cita no

diff --git a/addon/doc/it/readme.md b/addon/doc/it/readme.md
index 2057d37..c5c3f36 100644
--- a/addon/doc/it/readme.md
+++ b/addon/doc/it/readme.md
@@ -15,6 +15,7 @@ si veda la relativa sezione per ulteriori informazioni:
 * Calendar
 * Calcolatrice (moderna).
 * Cortana
+* Groove Music
 * Mail
 * Maps
 * Microsoft Edge
@@ -69,6 +70,10 @@ stable build (build 14393).
 * NVDA will be silent when you talk to Cortana via voice.
 * NVDA will now announce reminder confirmation after you set one.
 
+## Groove Music
+
+* Appearance of suggestions when searching for tracks is now detected.
+
 ## Mail and calendar
 
 * NVDA no longer announces "edit" or "read-only" in message body and other

diff --git a/addon/doc/ro/readme.md b/addon/doc/ro/readme.md
index 45b335c..fe24437 100644
--- a/addon/doc/ro/readme.md
+++ b/addon/doc/ro/readme.md
@@ -16,6 +16,7 @@ privire la ceea ce este inclus):
 * Calendar
 * Calculator (modern).
 * Cortana
+* Muzică Groove
 * Poștă electronică
 * Hărți
 * Microsoft Edge
@@ -72,6 +73,10 @@ add-on-ul cu ultimul build stabil (build 14393).
 * NVDA va tace atunci când vorbiți cu Cortana prin voce.
 * NVDA va anunța o confirmare memento după ce ați setat unul.
 
+## Muzică Groove
+
+* Aspectul sugestiilor la căutarea pieselor este acum detectat.
+
 ## Poșta electronică și calendarul
 
 * NVDA nu mai anunță „Editare” sau „doar citire” în corpul mesajului sau în

diff --git a/addon/doc/ru/readme.md b/addon/doc/ru/readme.md
index 8a76d72..e22ff69 100644
--- a/addon/doc/ru/readme.md
+++ b/addon/doc/ru/readme.md
@@ -15,6 +15,7 @@ Windows 10, а также исправлений для некоторых ти
 * Календарь
 * Калькулятор (modern).
 * Cortana
+* Groove Music
 * Почта
 * Карты
 * Microsoft Edge
@@ -67,6 +68,10 @@ stable build (build 14393).
 * NVDA will be silent when you talk to Cortana via voice.
 * NVDA will now announce reminder confirmation after you set one.
 
+## Groove Music
+
+* Appearance of suggestions when searching for tracks is now detected.
+
 ## Mail and calendar
 
 * NVDA no longer announces "edit" or "read-only" in message body and other

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: