Skip to content

Commit

Permalink
Bump version: 7.1-dev
Browse files Browse the repository at this point in the history
* If the articles dialog can't be shown, the parent is enabled so that it can be used without opening a different feed or restarting NVDA.
* Change shortcut key for Open folder in the feeds dialog.
* Cosmetics in readme.
  • Loading branch information
nvdaes committed Mar 12, 2019
1 parent d2b357c commit f0888ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion addon/globalPlugins/readFeeds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def __init__(self, parent):
self.defaultButton.Bind(wx.EVT_BUTTON, self.onDefault)

# Translators: The label of a button to open a folder containing a backup of feeds.
self.openFolderButton = buttonHelper.addButton(self, label=_("&Open folder containing a backup of feeds"))
self.openFolderButton = buttonHelper.addButton(self, label=_("Open &folder containing a backup of feeds"))
self.openFolderButton.Bind(wx.EVT_BUTTON, self.onOpenFolder)

feedsListGroupContents.Add(buttonHelper.sizer)
Expand Down Expand Up @@ -229,6 +229,7 @@ def onArticles(self, evt):
try:
ArticlesDialog(self).Show()
except Exception as e:
self.Enable()
raise e

def onOpen(self, evt):
Expand Down
2 changes: 1 addition & 1 deletion buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description" : _("""Add-on for using NVDA as a feed reader."""),
# version
"addon_version" : "7.0-dev",
"addon_version" : "7.1-dev",
# Author(s)
"addon_author" : u"Noelia Ruiz Martínez <[email protected]>, Mesar Hameed <[email protected]>",
# URL for the add-on documentation support
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Opens a dialog to select a folder which replaces your feeds in the personalFeeds

## Changes for 7.0 ##

* The Feeds dialog contains a button to open a folder which may contain a backup of feeds.
* The Feeds dialog includes a button to open a folder which may contain a backup of feeds.
* When using the edit box to filter feeds, if no results are found, the list of feeds and other controls are disabled, so that NVDA doesn't report "unknown" in the empty list.
* If the list of articles dialog can't be shown, for example due to errors in the feed, NVDA will raise an error, so that the feeds dialog can be used without restarting NVDA.

Expand Down

0 comments on commit f0888ca

Please sign in to comment.