[nvda-addons] Re: commit/nvda-mrconfig: 2 new changesets

  • From: "Joseph Lee" <joseph.lee22590@xxxxxxxxx>
  • To: <nvda-addons@xxxxxxxxxxxxx>, <nvda-addons-commits@xxxxxxxxxxxxx>
  • Date: Thu, 7 Jul 2016 12:47:45 -0700

Hi,

For translators: if I've done it right, you'll get some messages for Windows
10 App Essentials (and the setting for it) sometime today or next week.
Thanks.
Cheers,
Joseph

-----Original Message-----
From: nvda-addons-commits-bounce@xxxxxxxxxxxxx
[mailto:nvda-addons-commits-bounce@xxxxxxxxxxxxx] On Behalf Of
commits-noreply@xxxxxxxxxxxxx
Sent: Thursday, July 7, 2016 12:45 PM
To: nvda-addons-commits@xxxxxxxxxxxxx
Subject: commit/nvda-mrconfig: 2 new changesets

2 new commits in nvda-mrconfig:

https://bitbucket.org/nvdaaddonteam/nvda-mrconfig/commits/6bda74c5229b/
Changeset:   6bda74c5229b
Branch:      None
User:        josephsl
Date:        2016-07-07 19:43:04+00:00
Summary:     Add Windows 10 App Essentials to translations workflow

Affected #:  1 file

diff --git a/available.d/10_wintenApps b/available.d/10_wintenApps new file
mode 100644 index 0000000..a354493
--- /dev/null
+++ b/available.d/10_wintenApps
@@ -0,0 +1,2 @@
+[addons/wintenApps]
+checkout = git clone $(getBitbucketURL) $MR_REPO


https://bitbucket.org/nvdaaddonteam/nvda-mrconfig/commits/4de1da548835/
Changeset:   4de1da548835
Branch:      master
User:        josephsl
Date:        2016-07-07 19:43:52+00:00
Summary:     Merge branch 'master' of
https://bitbucket.org/nvdaaddonteam/nvda-mrconfig

Affected #:  3 files

diff --git a/.sh.d/01_addon2svn.sh b/.sh.d/01_addon2svn.sh
index dbc6405..abb80f8 100644
--- a/.sh.d/01_addon2svn.sh
+++ b/.sh.d/01_addon2svn.sh
@@ -30,7 +30,10 @@ addon2svn() {
     cd $PATH2TOPDIR/srt
     ls -1 */settings | while read file; do
         lang=$(dirname $file)
-        want=$(python scripts/db.py -f $file -g addon.${addonName})
+        if ! want=$(python scripts/db.py -f $file -g addon.${addonName});
then
+            logMsg "Error in settings file. Skipping $lang"
+            continue
+        fi
         logMsg "$lang wants ${addonName}: $want"
         if [ "$want" != "1" ]; then
             continue

diff --git a/.sh.d/01_svn2nvda.sh b/.sh.d/01_svn2nvda.sh
index bc4dd85..fdb8d8e 100644
--- a/.sh.d/01_svn2nvda.sh
+++ b/.sh.d/01_svn2nvda.sh
@@ -54,7 +54,10 @@ svn2nvda () {
     ls -1 */settings | while read file; do
         lang=$(dirname $file)
         logMsg "Processing $lang" 
-        lastSubmittedSvnRev=$(python scripts/db.py -f $file -g
nvda.lastSubmittedSvnRev)
+        if ! lastSubmittedSvnRev=$(python scripts/db.py -f $file -g
nvda.lastSubmittedSvnRev); then
+            logMsg "Error in settings file. Skipping language"
+            continue
+        fi
         if test "0" = "${lastSubmittedSvnRev}"; then
             lastSubmittedSvnRev=1
         fi

diff --git a/available.d/10_goldenCursor b/available.d/10_goldenCursor
index d8bc168..871c930 100644
--- a/available.d/10_goldenCursor
+++ b/available.d/10_goldenCursor
@@ -1,2 +1,2 @@
 [addons/goldenCursor]
-checkout = git clone $(getBitbucketURL) $MR_REPO 
+checkout = git clone $(getBitbucketURL) $MR_REPO

Repository URL: https://bitbucket.org/nvdaaddonteam/nvda-mrconfig/

--

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

----------------------------------------------------------------
NVDA add-ons: A list to discuss add-on code enhancements and for reporting 
bugs. 

Community addons are available from: http://addons.nvda-project.org
To send a message to the list: nvda-addons@xxxxxxxxxxxxx
To change your list settings/unsubscribe: 
//www.freelists.org/list/nvda-addons
To contact list moderators: nvda-addons-moderators@xxxxxxxxxxxxx

Other related posts:

  • » [nvda-addons] Re: commit/nvda-mrconfig: 2 new changesets - Joseph Lee