Skip to content

Commit 32ef7b3

Browse files
author
Richard Jones
committed
release stuff
1 parent 2bf2f5e commit 32ef7b3

File tree

4 files changed

+30
-42
lines changed

4 files changed

+30
-42
lines changed

doc/announcement.txt

Lines changed: 25 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,38 @@
11
=================================================
2-
SC-Track Roundup 0.6.0 - an issue tracking system
2+
SC-Track Roundup 0.6.1 - an issue tracking system
33
=================================================
44

5-
I'm pleased to announce the latest feature-packed release of Roundup. See
6-
below for a list of some of the goodies included in this release.
5+
I'm pleased to announce this maintenance release of Roundup. This
6+
release introduces python 2.3 compatibility. My thanks to Paul Dubois
7+
for contributing the csv module compatibility layer.
78

89
If you're upgrading from an older version of Roundup you *must* follow
910
the "Software Upgrade" guidelines given in the maintenance documentation.
1011

11-
Unfortunately, the Zope frontend for Roundup is currently broken. I hope to
12-
revive it in a future 0.6 bugfix release.
13-
14-
The gadfly backend has now been removed, having served its purpose as a
15-
template for other RDBMS implementations. It is replaced by the sqlite and
16-
mysql backends.
12+
Unfortunately, the Zope frontend for Roundup is currently broken. I hope
13+
to revive it in a future 0.6 maintenance release.
1714

1815
Roundup requires python 2.1.3 or later for correct operation.
1916

20-
The 0.6 release has lots of new goodies including:
21-
22-
- new instant-gratification Demo Mode ("python demo.py" :)
23-
- added mysql backend (see doc/mysql.txt for details)
24-
- web interface cleanups including nicer history display, nicer index
25-
navigation and nicer popup list windows
26-
- searching of date ranges
27-
- better international support, including utf-8 email handling and ability
28-
to display localized dates in web interface.
29-
- more documentation including revamped design document, unix manual pages
30-
and some FAQ entries
31-
- significantly more powerful form handling allowing editing of multiple
32-
items and creation of multiple items
33-
- tracker templates can contain subdirectories and static files (e.g.
34-
images) and we may now distribute templates separately from Roundup.
35-
Template HTML files now have a .html extension too.
36-
- user registration is now a two-step process, with confirmation from the
37-
email address supplied in the registration form, and we also have a
38-
password reset feature for forgotten password / login
39-
- Windows Service mode for roundup-server when daemonification is
40-
attempted on Windows
41-
- lots of speed enhancements, making the web interface much more responsive
42-
- fixed issues with dumb email or web clients
43-
- email system handles more SMTP and POP features (TLS, APOP, ...)
44-
- lots more little tweaks and back-end work...
17+
This release fixes some bugs:
18+
19+
- Add note about installing cgi-bin with a different interpreter
20+
- Importing wasn't setting None values explicitly when it should have been
21+
- Fixed import warning regarding 0xffff0000 literal, finally, really this
22+
time. Checked on win2k. (sf bug 786711)
23+
- Fix CGI editCSV action to handle metakit's integer itemids
24+
- Apply fix for "remove" links from Klamer Schutte
25+
- Added permission check on "remove" link while I was there..
26+
- Applied CSV fix for python2.3 (sf bug 790363)
27+
- Fixed form padding in LHS menu (sf bug 790502)
28+
- Fixed upgrading docs for timezones (sf bug 790498)
29+
- Set the content type on page templates (can have XML templates now)
30+
- Various cosmetic fixes (thanks James Kew for being persistent :)
31+
- Applied patch 739314 (sorry John!)
32+
33+
To give Roundup a try, just download (see below), unpack and run::
34+
35+
python demo.py
4536

4637
Source and documentation is available at the website:
4738
http://roundup.sourceforge.net/

doc/customizing.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.93.2.2 $
5+
:Version: $Revision: 1.93.2.3 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -1483,7 +1483,7 @@ _value the value of the property if any - this is the actual
14831483
There are several methods available on these wrapper objects:
14841484

14851485
=========== ================================================================
1486-
Method Description
1486+
Method Description
14871487
=========== ================================================================
14881488
plain render a "plain" representation of the property. This method
14891489
may take two arguments:

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.25 2003-08-18 00:21:58 richard Exp $
18+
# $Id: __init__.py,v 1.25.2.1 2003-08-31 04:31:03 richard Exp $
1919

2020
''' Roundup - issue tracking for knowledge workers.
2121
@@ -67,6 +67,6 @@
6767
much prettier cake :)
6868
'''
6969

70-
__version__ = '0.6.0'
70+
__version__ = '0.6.1'
7171

7272
# vim: set filetype=python ts=4 sw=4 et si

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.55 2003-06-22 00:28:56 richard Exp $
19+
# $Id: setup.py,v 1.55.2.1 2003-08-31 04:31:00 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -186,9 +186,6 @@ def main():
186186
command-line, web and e-mail interfaces. It is based on the winning design
187187
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
188188
189-
This release has a couple of bufixes mostly important to Windows users,
190-
making it possible for them to install new trackers!
191-
192189
The 0.6 release has lots of new goodies including:
193190
194191
- new instant-gratification Demo Mode ("python demo.py" :)

0 commit comments

Comments
 (0)