commit/readFeeds: mhameed: buildVars.py: corrected python path.

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Thu, 31 Oct 2013 08:10:19 -0000

1 new commit in readFeeds:

https://bitbucket.org/nvdaaddonteam/readfeeds/commits/992f7870ce87/
Changeset:   992f7870ce87
Branch:      master
User:        mhameed
Date:        2013-10-31 09:09:15
Summary:     buildVars.py: corrected python path.

Affected #:  2 files

diff --git a/buildVars.py b/buildVars.py
index 1350c8f..97c8ac8 100644
--- a/buildVars.py
+++ b/buildVars.py
@@ -10,8 +10,8 @@ _ = lambda x : x
 addon_info = {
        # add-on Name
        "addon-name" : "ReadFeeds",
-       # Add-on summary
-       # TRANSLATORS: Summary for this add-on to be shown on installation and 
add-on information.
+       # Add-on summary, user visible name
+       # TRANSLATORS: addon name to be shown on installation and add-on 
information.
        "addon-summary" : _("Read Feeds"),
        # Add-on description
        # Translators: Long description to be shown for this add-on on 
installation and add-on information
@@ -19,7 +19,7 @@ addon_info = {
        # version
        "addon-version" : "6.0-dev",
        # Author(s)
-       "addon-author" : "Noelia <nrm1977@xxxxxxxxx>",
+       "addon-author" : u"Noelia Ruiz Martínez <nrm1977@xxxxxxxxx>",
        # URL for the add-on documentation support
        "addon-url" : "http://addons.nvda-project.org";
 }
@@ -29,7 +29,7 @@ import os.path
 
 # Define the python files that are the sources of your add-on.
 # You can use glob expressions here, they will be expanded.
-pythonSources = [os.path.join("addon", "*.py"), os.path.join("addon", 
"globalPlugins", "readFeeds", "*.py")]
+pythonSources = [os.path.join("addon", "*.py"), os.path.join("addon", 
"globalPlugins", "*.py")]
 
 # Files that contain strings for translation. Usually your python sources
 i18nSources = pythonSources + ["buildVars.py", "docHandler.py"]

diff --git a/readme.md b/readme.md
index ed1f868..58cbc6f 100644
--- a/readme.md
+++ b/readme.md
@@ -1,5 +1,7 @@
 # Read Feeds #
 
+* Author: Noelia Ruiz Martínez
+
 This addon allows to read feeds in Atom or RSS formats using NVDA. 
 The feeds will not be updated automatically.

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

--

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:

  • » commit/readFeeds: mhameed: buildVars.py: corrected python path. - commits-noreply