commit/wintenApps: 6 new changesets

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Tue, 30 Aug 2016 00:12:47 -0000

6 new commits in wintenApps:

https://bitbucket.org/nvdaaddonteam/wintenapps/commits/1023603883e3/
Changeset:   1023603883e3
Branch:      None
User:        josephsl
Date:        2016-08-26 19:47:00+00:00
Summary:     Merge branch 'stable'

Affected #:  4 files

diff --git a/addon/doc/es/readme.md b/addon/doc/es/readme.md
index 0df2c88..d851ea7 100644
--- a/addon/doc/es/readme.md
+++ b/addon/doc/es/readme.md
@@ -77,8 +77,8 @@ qué se incluye):
 
 * Al teclear el indicador de texto se anuncia sólo como cliente Skype para
   Escritorio.
-* Partial return of Control+NvDA+number row commands to read recent chat
-  history.
+* Retorno parcial de las órdenes Control+NVDA+fila de números para leer el
+  histórico de chats recientes.
 
 ## Bank of America/Twitter
 

diff --git a/addon/doc/gl/readme.md b/addon/doc/gl/readme.md
index 779407f..b3cd0be 100644
--- a/addon/doc/gl/readme.md
+++ b/addon/doc/gl/readme.md
@@ -74,8 +74,8 @@ se inclúe):
 
 * Ao teclear o indicador de texto anúnciase só coma cliente Skype para
   Escritorio.
-* Partial return of Control+NvDA+number row commands to read recent chat
-  history.
+* Volta parcial das ordes Control+NVDA+fila de números para ler o histórico
+  de chats recentes.
 
 ## Bank of America/Twitter
 

diff --git a/addon/doc/ru/readme.md b/addon/doc/ru/readme.md
index b0d0007..d79bd74 100644
--- a/addon/doc/ru/readme.md
+++ b/addon/doc/ru/readme.md
@@ -64,7 +64,8 @@ Windows 10, а также исправлений для некоторых ти
 
 * Теперь автоматически сообщается определённая информация, такая, как
   индикатор обновления Windows.
-* Progress bar values and other information are no longer announced twice.
+* Значения индикатора выполнения и другая информация теперь не объявляются
+  дважды.
 
 ## Skype Preview
 

diff --git a/addon/locale/hr/LC_MESSAGES/nvda.po 
b/addon/locale/hr/LC_MESSAGES/nvda.po
new file mode 100644
index 0000000..a87a599
--- /dev/null
+++ b/addon/locale/hr/LC_MESSAGES/nvda.po
@@ -0,0 +1,30 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: wintenApps 16.07\n"
+"Report-Msgid-Bugs-To: nvda-translations@xxxxxxxxxxxxx\n"
+"POT-Creation-Date: 2016-07-09 05:48+1000\n"
+"PO-Revision-Date: 2016-08-16 16:06+0200\n"
+"Language: hr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.8.8\n"
+"Last-Translator: zvonimir stanecic <zvonimirek222@xxxxxxxxxx>\n"
+"Language-Team: \n"
+
+#. Add-on summary, usually the user visible name of the addon.
+#. Translators: Summary for this add-on to be shown on installation and add-on 
information.
+#: buildVars.py:17
+msgid "Windows 10 App Essentials"
+msgstr "Windows 10 App Essentials"
+
+#. Add-on description
+#. Translators: Long description to be shown for this add-on on add-on 
information from add-ons manager
+#: buildVars.py:20
+msgid "A collection of app modules for various Windows 10 apps"
+msgstr "Kompilacija skripti za razne aplikacije u Windowsima 10"


https://bitbucket.org/nvdaaddonteam/wintenapps/commits/5adf77dabb0c/
Changeset:   5adf77dabb0c
Branch:      None
User:        josephsl
Date:        2016-08-26 20:00:56+00:00
Summary:     Suggestions: play suggestion sounds (credit: Derek Riemer)

Affected #:  3 files

diff --git a/addon/globalPlugins/suggestion.wav 
b/addon/globalPlugins/suggestion.wav
new file mode 100755
index 0000000..cc56ea3
Binary files /dev/null and b/addon/globalPlugins/suggestion.wav differ

diff --git a/addon/globalPlugins/suggestion1.wav 
b/addon/globalPlugins/suggestion1.wav
new file mode 100755
index 0000000..e6c5359
Binary files /dev/null and b/addon/globalPlugins/suggestion1.wav differ

diff --git a/addon/globalPlugins/wintenObjs.py 
b/addon/globalPlugins/wintenObjs.py
index ea29689..3f61b9d 100755
--- a/addon/globalPlugins/wintenObjs.py
+++ b/addon/globalPlugins/wintenObjs.py
@@ -5,6 +5,7 @@
 # Also adds interceptors for certain keyboard commands.
 
 import sys
+import os
 import globalPluginHandler
 import appModuleHandler # Huge workaround.
 import controlTypes
@@ -14,6 +15,7 @@ from NVDAObjects.UIA import UIA
 from NVDAObjects.behaviors import Dialog
 import api
 import speech
+import nvwave
 
 # Until NVDA Core ticket 5323 is implemented, have our own find app mod from 
PID handy.
 def getAppModuleFromProcessID(processID):
@@ -60,7 +62,7 @@ class SearchField(UIA):
                focus = api.getFocusObject()
                focusControllerFor = focus.controllerFor
                if len(focusControllerFor)>0:
-                       ui.message("suggestions")
+                       
nvwave.playWaveFile(os.path.join(os.path.dirname(__file__), "suggestion.wav"))
                else:
                        # Manually locate live region until NVDA Core 
implements this.
                        obj = focus
@@ -69,7 +71,7 @@ class SearchField(UIA):
                                        ui.message(obj.description)
                                        return
                                obj = obj.next
-                       ui.message("suggestions closed")
+                       
nvwave.playWaveFile(os.path.join(os.path.dirname(__file__), "suggestion1.wav"))
 
 # General suggestions item handler
 # A testbed for NVDA Core ticket 6241.
@@ -113,7 +115,7 @@ class GlobalPlugin(globalPluginHandler.GlobalPlugin):
                                if obj.UIAElement.cachedAutomationID != 
"SearchPopUp":
                                        clsList.insert(0, Dialog)
                        # Search field that does raise controller for event.
-                       elif obj.UIAElement.cachedClassName == "TextBox" and 
obj.UIAElement.cachedAutomationID in ("TextBox", "SearchTextBox"):
+                       elif obj.UIAElement.cachedClassName == "TextBox" and 
obj.UIAElement.cachedAutomationID in ("TextBox",):
                                clsList.insert(0, SearchField)
                        # Suggestions themselves.
                        elif obj.role == controlTypes.ROLE_LISTITEM and 
isinstance(obj.parent, UIA) and obj.parent.UIAElement.cachedAutomationID == 
"SuggestionsList":


https://bitbucket.org/nvdaaddonteam/wintenapps/commits/346d4e45b095/
Changeset:   346d4e45b095
Branch:      None
User:        derekriemer
Date:        2016-08-26 22:11:12+00:00
Summary:     Fix weather app after recent updates

Affected #:  1 file

diff --git a/addon/appModules/microsoft_msn_weather.py 
b/addon/appModules/microsoft_msn_weather.py
index 54f9aec..01331e5 100644
--- a/addon/appModules/microsoft_msn_weather.py
+++ b/addon/appModules/microsoft_msn_weather.py
@@ -13,7 +13,7 @@ from NVDAObjects import NVDAObject
 
 #Regexp for deciding whether this ID should be a tab control
 RE_TAB_AUTOMATION_MATCH = re.compile("|".join([
-       r"L1NavigationButton_\d+",
+       r"L1NavigationButton_(Places|Home|Maps|Historical|News)",
        r"L1NavigationButton_Feedback",
 ]))
 #Regexp for deciding if this should be a button


https://bitbucket.org/nvdaaddonteam/wintenapps/commits/7143296cab63/
Changeset:   7143296cab63
Branch:      None
User:        josephsl
Date:        2016-08-26 23:44:33+00:00
Summary:     Weather: tabs are recognized as proper tabs in August 2016 update 
to Weather app (Derek Riemer). fixes #4

Fix weather Automation ID's introduced as part of recent Weather app update.
Affected #:  1 file

diff --git a/addon/appModules/microsoft_msn_weather.py 
b/addon/appModules/microsoft_msn_weather.py
index 54f9aec..01331e5 100644
--- a/addon/appModules/microsoft_msn_weather.py
+++ b/addon/appModules/microsoft_msn_weather.py
@@ -13,7 +13,7 @@ from NVDAObjects import NVDAObject
 
 #Regexp for deciding whether this ID should be a tab control
 RE_TAB_AUTOMATION_MATCH = re.compile("|".join([
-       r"L1NavigationButton_\d+",
+       r"L1NavigationButton_(Places|Home|Maps|Historical|News)",
        r"L1NavigationButton_Feedback",
 ]))
 #Regexp for deciding if this should be a button


https://bitbucket.org/nvdaaddonteam/wintenapps/commits/9085d9f2e899/
Changeset:   9085d9f2e899
Branch:      None
User:        josephsl
Date:        2016-08-28 20:29:26+00:00
Summary:     Dialogs: add shell flyout dialog

Affected #:  1 file

diff --git a/addon/globalPlugins/wintenObjs.py 
b/addon/globalPlugins/wintenObjs.py
index 3f61b9d..a32b86b 100755
--- a/addon/globalPlugins/wintenObjs.py
+++ b/addon/globalPlugins/wintenObjs.py
@@ -48,7 +48,7 @@ class LoopingSelectorItem(UIA):
 letCortanaListen = False
 
 # We know the following elements are dialogs.
-wintenDialogs=("Shell_Dialog", "Popup")
+wintenDialogs=("Shell_Dialog", "Popup", "Shell_Flyout")
 
 # Extra UIA constants
 UIA_ControllerForPropertyId = 30104


https://bitbucket.org/nvdaaddonteam/wintenapps/commits/ff7926fe67bf/
Changeset:   ff7926fe67bf
Branch:      stable
User:        josephsl
Date:        2016-08-30 00:11:44+00:00
Summary:     Windows 10 App Essentials 16.09

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

Affected #:  2 files

diff --git a/buildVars.py b/buildVars.py
index 1e6737d..51915bd 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.08.1",
+       "addon_version" : "16.09",
        # 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 a263b7d..8f7eb3a 100755
--- a/readme.md
+++ b/readme.md
@@ -27,6 +27,7 @@ The following app modules or support modules for some apps 
are included (see eac
 * When minimizing windows (Windows+M), "pane" is no longer announced 
(noticeable if using Insider Preview builds).
 * Certain dialogs are now recognized as proper dialogs. This include Insider 
Preview dialog (settings app) and new-style UAC dialog in build 14328 and later.
 * Time picker announcement works in non-English locales.
+* Appearance/close of suggestions for certain search fields (notably Settings 
app) is announced via sounds.
 
 ## Alarms and clock

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: