commit/eMule: 2 new changesets

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Sun, 18 Oct 2015 04:20:03 -0000

2 new commits in eMule:

https://bitbucket.org/nvdaaddonteam/emule/commits/e1254be18815/
Changeset: e1254be18815
Branch: None
User: norrumar
Date: 2015-10-18 04:18:30+00:00
Summary: Fixed possible issues if script for reviewing columns is assigned
without numbers.

Affected #: 1 file

diff --git a/addon/appModules/emule.py b/addon/appModules/emule.py
index 7faa049..53aa612 100644
--- a/addon/appModules/emule.py
+++ b/addon/appModules/emule.py
@@ -67,12 +67,12 @@ class EmuleRowWithFakeNavigation(RowWithFakeNavigation):

def script_readColumn(self, gesture):
try:
- col = int(gesture.keyName[-1])
- except AttributeError:
col = int(gesture.mainKeyName[-1])
+ except (AttributeError, ValueError):
+ return
if col == 0:
- col += 10
- if "shift" in gesture.modifierNames:
+ col = 10
+ elif "shift" in gesture.modifierNames:
col += 10
self._moveToColumnNumber(col)
# Translators: Message presented in input help mode.


https://bitbucket.org/nvdaaddonteam/emule/commits/e00a46e9c41f/
Changeset: e00a46e9c41f
Branch: master
User: norrumar
Date: 2015-10-18 04:19:45+00:00
Summary: Changed version to 2.7 as no major dev version is in progress.

Affected #: 1 file

diff --git a/buildVars.py b/buildVars.py
index 2f992b4..c76acd7 100644
--- a/buildVars.py
+++ b/buildVars.py
@@ -22,7 +22,7 @@ eMule is a P2P program to search and share files.
You can get more information about eMule at
http://www.emule-project.net""";),
# version
- "addon_version" : "3.0-dev",
+ "addon_version" : "2.7",
# Author(s)
"addon_author" : u"Noelia <nrm1977@xxxxxxxxx>, Chris
<llajta2012@xxxxxxxxx>, Alberto <a.buffolino@xxxxxxxxx>",
# URL for the add-on documentation support

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

--

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: