aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-04-15 22:44:50 +0200
committercedricbonhomme <devnull@localhost>2011-04-15 22:44:50 +0200
commit2d847d039043c8327e1bd686563ecbf8110aeefc (patch)
tree6070cef8c65fbee9af0b00ef51d3490edd865578
parentAdded a new form in the management page in order to set the number of article... (diff)
downloadnewspipe-2d847d039043c8327e1bd686563ecbf8110aeefc.tar.gz
newspipe-2d847d039043c8327e1bd686563ecbf8110aeefc.tar.bz2
newspipe-2d847d039043c8327e1bd686563ecbf8110aeefc.zip
Release 2.7. Minor improvements. It is now possible to set a maximum number of articles to be loaded from the data base for each feed.
-rwxr-xr-xpyAggr3g470r.py3
-rwxr-xr-xutils.py5
2 files changed, 5 insertions, 3 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index f84a82d0..798c294e 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -20,8 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 2.6 $"
+__version__ = "$Revision: 2.7 $"
__date__ = "$Date: 2011/03/21 $"
+__revision__ = "$Date: 2011/04/15 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
diff --git a/utils.py b/utils.py
index df6a22c4..131cf643 100755
--- a/utils.py
+++ b/utils.py
@@ -20,8 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 1.1 $"
+__version__ = "$Revision: 1.2 $"
__date__ = "$Date: 2010/12/07 $"
+__revision__ = "$Date: 2011/04/15 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
@@ -409,4 +410,4 @@ def load_feed():
LOCKER.release()
return (feeds, nb_articles, nb_unread_articles, nb_favorites, nb_mail_notifications)
LOCKER.release()
- return (feeds, nb_articles, nb_unread_articles, nb_favorites, nb_mail_notifications) \ No newline at end of file
+ return (feeds, nb_articles, nb_unread_articles, nb_favorites, nb_mail_notifications)
bgstack15