gpodder 0.8.0 latest changes before release

git-svn-id: svn://svn.berlios.de/gpodder/trunk@144 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2006-07-30 13:09:22 +00:00
parent 9030d02ef3
commit 91fb111412
8 changed files with 31 additions and 20 deletions

View file

@ -12,11 +12,13 @@ Thanks to all the other patch writers:
Alain Tauch <contrib@maisondubonheur.com> (lots of patches [see ChangeLog])
Stylianos Papanastasiou <stelios@dcs.gla.ac.uk> (patch for "downloaded move")
Ortwin Forster <ortwin@videotron.ca> (patch for saxutils.escape in localdb)
Camille Moncelier <pix@devlife.org> (patch for iPod video device support)
Thanks for bug reports go out to:
Thanks for bug reports and other suggestions go out to:
Gaim Roitgrund
Haim Roitgrund and his son
(..and all the others I forgot.. sorry :)

24
README
View file

@ -17,7 +17,7 @@
gPodder 0.8.0 README
==================
Copyright (c) 2005-2006 Thomas Perl <thp@perli.net>
Version 0.8.0 released on xx.xx.2006 under the GNU GPL
Version 0.8.0 released on 28.07.2006 under the GNU GPL
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@ -39,9 +39,21 @@
1) What's new in version 0.8.0
==============================
** THIS IS 0.7.9, a preview release for testing **
* Preferences option "update on startup" to update feed cache
on every gPodder start (thanks to Adrien Beaucreux for patch)
* iPod video device synchronization support (thanks to Camille
Moncelier for patch)
* Better handling of player applications (".desktop" files)
* Import channels from web - OPML input support and support for
odeo.com subscription lists (thanks to Haim Roitgrund)
* Multiple selections in all lists
* New "Updating feed cache" dialog with progress bar
* New download button in episode info dialog
* Updated translations: French, German
* Action buttons for "all": "Download all", "Cancel all" and
"Delete all" buttons (thanks to Haim Roitgrund and his son)
* Various bugfixes and interface clean-ups
0.8.0 will contain a list of changes here. TODO
===============
2) Dependencies
@ -108,8 +120,8 @@
5) Known bugs
=============
No known bug so far. Please mail the mailing list or the author directly
to report bugs - we'll try to fix them in the next release :) Thanks!
No known bug so far. Please mail the mailing list to report bugs -
we'll try to fix them in the next release :) Thanks!
=========================================
6) Feature requests, bug reports, patches
@ -125,6 +137,6 @@
And last but not least... have fun with gPodder :)
-- Thomas Perl, July 17th 2006
-- Thomas Perl, July 28th 2006

7
TODO
View file

@ -1,10 +1,7 @@
== 0.8.0 release-critical ==
* write the README file
* set "debugging" variable to False
== after 0.8.0 ==
* set "debugging" variable to "True" again
* Although downloads worked, as shown by presence in channel directory
on hard disk and by playing the pod with RealPlayer, the pods didn't

View file

@ -26,8 +26,8 @@
# PLEASE DO NOT CHANGE FORMAT OF __version__ LINE (setup.py reads this)
__author__ = "Thomas Perl <thp@perli.net>"
__version__ = "0.7.9+svn20060720"
__date__ = "2006-07-20"
__version__ = "0.8.0"
__date__ = "2006-07-28"
__copyright__ = "Copyright (c) 2005-2006 %s. All rights reserved." % __author__
__licence__ = "GPL"

View file

@ -5,7 +5,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: gPodder 0.7.9\n"
"Project-Id-Version: gPodder 0.8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-17 17:03+0200\n"
"PO-Revision-Date: 2006-07-17 17:08+0100\n"

View file

@ -5,7 +5,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: gPodder 0.7.9\n"
"Project-Id-Version: gPodder 0.8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-23 10:59+0200\n"
"PO-Revision-Date: 2006-07-23 11:53+0100\n"

View file

@ -1,7 +1,7 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36.
.TH GPODDER "1" "July 2006" "gpodder 0.7.9 2006-07-17" "User Commands"
.TH GPODDER "1" "July 2006" "gpodder 0.8.0 2006-07-28" "User Commands"
.SH NAME
gpodder \- manual page for gpodder 0.7.9 2006-07-17
gpodder \- manual page for gpodder 0.8.0 2006-07-28
.SH DESCRIPTION
usage: gpodder [options] arg1 arg2
.PP

View file

@ -61,7 +61,7 @@ from xml.sax import saxutils
# global debugging variable, set to False on release
# TODO: while developing a new version, set this to "True"
debugging = True
debugging = False
# global recursive lock for thread exclusion
globalLock = threading.RLock()