This commit is contained in:
Kovid Goyal 2009-07-24 20:56:03 -06:00
parent 27a78ef851
commit 87d9abd1aa
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ if __name__ == '__main__':
http://%s.kovidgoyal.net
For source code access:
bzr branch %s
bzr branch lp:%s
To update your copy of the source code:
bzr merge

View File

@ -48,7 +48,7 @@ class ChangelogFormatter(blog.LogFormatter):
txt = ['= Changelog =\n[[PageOutline]]']
for entry in self.entries:
txt.append(u'----\n== Version '+entry[0]+' ==')
if entry[0] == '0.6.0':
if entry[0].strip().startswith('0.6.0'):
txt.append(u'For a list of new features in 0.6.0 see http://calibre.kovidgoyal.net/new_in_6')
else:
for msg in entry[1]: