0.9.0 release preparation

git-svn-id: svn://svn.berlios.de/gpodder/trunk@227 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2006-12-29 15:52:52 +00:00
parent 704cb79606
commit 89ebb17d38
22 changed files with 57 additions and 55 deletions

View File

@ -1,3 +1,17 @@
Fri, 29 Dec 2006 16:50:17 +0100 <thp@perli.net>
* doc/dev/copyright_notice, INSTALL, src/gpodder/libopmlwriter.py,
src/gpodder/libwget.py, src/gpodder/liblocdbreader.py,
src/gpodder/console.py, src/gpodder/liblogger.py,
src/gpodder/libplayers.py, src/gpodder/libpodcasts.py,
src/gpodder/liblocdbwriter.py, src/gpodder/libgpodder.py,
src/gpodder/libipodsync.py, src/gpodder/librssreader.py,
src/gpodder/libopmlreader.py, src/gpodder/gpodder.py,
src/gpodder/liblocaldb.py, setup.py, bin/gpodder,
data/po/Makefile, Makefile, README: Version number in text
and info files bumped to 0.9.0 in preparation of the release;
changed website URL to http://gpodder.berlios.de/ and updated
copyright notice to reflect development in 2007 :) Enjoy.
Thu, 28 Dec 2006 14:39:06 +0100 <thp@perli.net>
* src/gpodder/libipodsync.py: Add support for non-mp3 file
length detection using mplayer if available (thanks to

View File

@ -18,7 +18,7 @@
the gPodder development mailing list:
gPodder website: http://perli.net/projekte/gpodder/
gPodder website: http://gpodder.berlios.de/
gPodder mailing list: gpodder-devel@berlios.de

View File

@ -1,7 +1,7 @@
#
# gpodder makefile
# copyright 2005-2006 thomas perl <thp@perli.net>
# released under the gnu gpl
# Makefile for gPodder
# Copyright 2005-2007 Thomas Perl <thp at perli net>
# License: see COPYING file
#
##########################################################################

40
README
View File

@ -6,18 +6,18 @@
|'\ | | /''\ /''\
|./ .| .| | | \../
/'\ | /\ / | / | /| |' | | / \ \/
\_/ | \/ \_| \_| \_ | \../ o \../ o /\
\_/ http://perli.net/projekte/gpodder/
|./ .| .| | | \ |
/'\ | /\ / | / | /| |' | | ''| \/
\_/ | \/ \_| \_| \_ | \../ o .__/ o /\
\_/ http://gpodder.berlios.de/
- -- == === ================================= === == -- -
gPodder 0.8.0 README
gPodder 0.9.0 README
==================
Copyright (c) 2005-2006 Thomas Perl <thp@perli.net>
Version 0.8.0 released on 28.07.2006 under the GNU GPL
Copyright (c) 2005-2007 Thomas Perl <thp@perli.net>
Version 0.9.0 released on XX.XX.200X 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
@ -36,23 +36,10 @@
==============================
1) What's new in version 0.8.0
1) What's new in version 0.9.0
==============================
* 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
** TODO
===============
@ -71,6 +58,7 @@
* python-eyed3 (alternative to pymad; eyeD3 Python bindings)
* python-gpod (libgpod's Python bindings)
* python-id3 (OPTIONAL; if you want ID3v2 cover art extraction)
* mplayer (OPTIONAL; if you want video podcast length detection)
Other users: Please install the above packages somehow ;)
If you want to install gPodder from source, you have to
@ -89,8 +77,8 @@
Extract the tar archive somewhere into your home directory and cd into
the directory where you extracted it, for example:
tar xzvf gpodder-0.8.0.tar.gz
cd gpodder-0.8.0/
tar xzvf gpodder-0.9.0.tar.gz
cd gpodder-0.9.0/
After that you can start gPodder by starting it with the following
command:
@ -134,12 +122,12 @@
anything that comes to your mind relating gPodder:
Author's eMail: thp@perli.net
gPodder homepage: http://perli.net/projekte/gpodder/
gPodder homepage: http://gpodder.berlios.de/
gPodder mailing list: gpodder-devel@berlios.de
And last but not least... have fun with gPodder :)
-- Thomas Perl, July 28th 2006
-- Thomas Perl, Xxxxx XXth 200X

View File

@ -3,7 +3,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@ -26,9 +26,9 @@
# PLEASE DO NOT CHANGE FORMAT OF __version__ LINE (setup.py reads this)
__author__ = "Thomas Perl <thp@perli.net>"
__version__ = "0.8.0+svn20061228"
__date__ = "2006-12-28"
__copyright__ = "Copyright (c) 2005-2006 %s. All rights reserved." % __author__
__version__ = "0.8.0+svn20061229"
__date__ = "2006-12-29"
__copyright__ = "Copyright (c) 2005-2007 %s. All rights reserved." % __author__
__licence__ = "GPL"
import sys,os

View File

@ -1,6 +1,6 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -1,6 +1,6 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -2,7 +2,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@ -59,7 +59,7 @@ setup(
description = 'media aggregator',
author = 'Thomas Perl',
author_email = 'thp@perli.net',
url = 'http://perli.net/projekte/gpodder/',
url = 'http://gpodder.berlios.de/',
scripts = [ 'bin/gpodder' ],
data_files = data_files + translation_files
)

View File

@ -3,7 +3,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -8,7 +8,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@ -74,8 +74,8 @@ app_authors = [
'Alain Tauch <contrib@maisondubonheur.com>', '',
_('See the AUTHORS file for all contributors')
]
app_copyright = 'Copyright (c) 2005-2006 Thomas Perl'
app_website = 'http://perli.net/projekte/gpodder/'
app_copyright = 'Copyright (c) 2005-2007 Thomas Perl'
app_website = 'http://gpodder.berlios.de/'
glade_dir = '/usr/share/gpodder/'
icon_dir = '/usr/share/pixmaps/gpodder.png'
@ -610,7 +610,7 @@ class Gpodder(SimpleGladeApp):
#-- Gpodder.on_homepage_activate {
def on_homepage_activate(self, widget, *args):
os.system( 'gnome-open http://perli.net/projekte/gpodder/')
os.system( 'gnome-open ' + app_website)
#-- Gpodder.on_homepage_activate }
#-- Gpodder.on_wishlist_activate {

View File

@ -2,7 +2,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -2,7 +2,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -2,7 +2,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -2,7 +2,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -2,7 +2,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
#
# gPodder (a media aggregator / podcast client)
# Copyright (C) 2005-2006 Thomas Perl <thp at perli.net>
# Copyright (C) 2005-2007 Thomas Perl <thp at perli.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License