we're in development again! :)

pushed version number
added new makefile target: "make cl" (changelog update)
set debugging variable to true again


git-svn-id: svn://svn.berlios.de/gpodder/trunk@146 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2006-07-30 13:17:27 +00:00
parent 91fb111412
commit 9c4d39a885
5 changed files with 35 additions and 10 deletions

View file

@ -1,3 +1,14 @@
Sun, 30 Jul 2006 15:11:51 +0200 <thp@perli.net>
* Added new makefile target "cl" to automatically generate a
new changelog entry with right formatting
* Housekeeping for going svn again (version. debugging variable)
Fri, 28 Jul 2006 14:34:37 +0200 <thp@perli.net>
* ** gPodder version 0.8.0 is here! **
* Thanks to all the contributors that helped make this release
possible, especially thanks to the gpodder-devel list users
* Updated README, TODO, ...
Sun, 23 Jul 2006 23:57:25 +0200 <thp@perli.net>
* Patched data/gpodder.glade with patch from Alain Tauch
* Added French comment to data/gpodder.desktop
@ -88,7 +99,7 @@ Fri, 09 Jun 2006 12:37:54 +0200 <thp@perli.net>
Thu, 08 Jun 2006 23:58:49 +0200 <thp@perli.net>
* Fixed a bug where a "&" character in the channels list would
result in gPodder to crash - thanks to Gaim Roitgrund for
result in gPodder to crash - thanks to Haim Roitgrund for
pointint out that error and providing a nice bug report!
* Pushed version and release date

View file

@ -15,6 +15,11 @@ MANPAGE=doc/man/gpodder.1
TEPACHE=./doc/dev/tepache
GPODDERVERSION=`cat $(BINFILE) |grep ^__version__.*=|cut -d\" -f2`
CHANGELOG=ChangeLog
CHANGELOG_TMP=.ChangeLog.tmp
CHANGELOG_EDT=.ChangeLog.edit
EMAIL ?= $$USER@`hostname -f`
DESTDIR ?= /
##########################################################################
@ -23,6 +28,7 @@ all: help
help:
@echo 'make test run gpodder in local directory'
@echo 'make cl make new changelog entry (1)'
@echo 'make release create source tarball in "dist/"'
@echo 'make install install gpodder into "/usr/"'
@echo 'make uninstall uninstall gpodder from "/usr/"'
@ -30,6 +36,18 @@ help:
@echo 'make messages rebuild messages.pot from new source'
@echo 'make clean remove generated+temp+*.pyc files'
@echo 'make distclean do a "make clean" + remove "dist/"'
@echo ''
@echo '(1) Please set environment variable "EMAIL" to your e-mail address'
##########################################################################
cl:
(echo "`date -R` <$(EMAIL)>"; echo -e "\t* \n"; cat $(CHANGELOG)) >$(CHANGELOG_TMP)
cp $(CHANGELOG_TMP) $(CHANGELOG_EDT)
$(EDITOR) $(CHANGELOG_EDT)
diff -q $(CHANGELOG_TMP) $(CHANGELOG_EDT) || mv $(CHANGELOG_EDT) $(CHANGELOG)
rm -f $(CHANGELOG_TMP) $(CHANGELOG_EDT)
##########################################################################
@ -91,10 +109,10 @@ debclean:
distclean: clean
rm -rf dist
##########################################################################
.PHONY: all test release install generators gen_manpage gen_glade clean distclean messages help
.PHONY: all cl test release install generators gen_manpage gen_glade clean distclean messages help
##########################################################################

4
TODO
View file

@ -1,8 +1,4 @@
== 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
always show up in the 'downloaded' tab. When the downloaded podcast

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.8.0"
__date__ = "2006-07-28"
__version__ = "0.8.0+svn20060730"
__date__ = "2006-07-30"
__copyright__ = "Copyright (c) 2005-2006 %s. All rights reserved." % __author__
__licence__ = "GPL"

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 = False
debugging = True
# global recursive lock for thread exclusion
globalLock = threading.RLock()