Skip to content

Commit c168c61

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 10ba89c commit c168c61

File tree

5 files changed

+57
-38
lines changed

5 files changed

+57
-38
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
2005-??-?? 0.9.0b2
4+
2005-01-27 1.0
55
Feature:
66
- Lithuanian translation by Aiste Kesminaite
77
- Web User Interface language selection by form variable @language,

doc/announcement.txt

Lines changed: 29 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,32 @@
1-
I'm proud to release this 9th major feature release of Roundup.
2-
3-
First up, big thanks go to alexander smishlajev who has done some really
4-
good work getting the i18n and new configuration components of this release
5-
going.
6-
7-
Please note that Roundup now requires python 2.3 or later.
8-
9-
Roundup 0.9 includes:
10-
11-
- added "imapServer.py" script (sf patch 934567)
12-
- added date selection popup windows (thanks Marcus Priesch)
13-
- added Xapian indexer; replaces standard indexers if Xapian is available*
14-
- mailgw subject parsing has configurable levels of strictness
15-
- nosy messages may be sent individually to all recipients
16-
- remember where we came from when logging in (sf patch 1312889)
17-
18-
*: unfortunately the latest release of Xapian (0.9.2) has a bug in the
19-
Python bindings which prevents this indexer from working, so it's disabled
1+
I'm proud to release this, the 1.0 release of Roundup.
2+
3+
Yes, finally after over 4 years and 8 major releases, the 1.0 release is
4+
here.
5+
6+
Roundup 1.0 includes all the pre-1.0 goodness, and:
7+
8+
- added full-text indexer using Xapian as the back end
9+
- Lithuanian translation by Aiste Kesminaite
10+
- Web User Interface language selection by form variable @language,
11+
browser cookie or HTTP header Accept-Language (sf patch 1360321)
12+
- initial values for configuration options may be passed on
13+
'roundup-admin install' command line (based on sf patch 1237110)
14+
- favicon.ico image may be changed with server config option (sf patch 1355661)
15+
- Password objects initialized from plaintext remember plaintext value
16+
(sf rfe 1379447)
17+
- Roundup installation document includes configuration example
18+
for Exim Internet Mailer (sf bug 1393860)
19+
- enable registration confirmation by web only (sf bug 1381675)
20+
- allow preselection of values in templating menu()s (sf patch 1396085)
21+
- display the query name in the header (sf feature 1298535 / patch 1349387)
22+
- classhelp works with Link properties now (sf bug 1410290)
23+
- added setorderprop() and setlabelprop() to Class (sf features 1379534,
24+
1379490)
25+
- CSV encoding support (sf bug 1240848)
26+
- fields rendered with StructuredText are hyperlinked by default
27+
- additional attributes for input element may be passed to the 'field'
28+
method of a property wrapper
29+
- added "copy_url" method to generate a URL for copying an item
2030

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

doc/installation.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,6 @@ create your tracker on.
254254
Choosing Your Backend
255255
---------------------
256256

257-
.. note::
258-
259-
The tsearch2 backend is experimental and should not be selected.
260-
261257
The actual storage of Roundup tracker information is handled by backends.
262258
There's several to choose from, each with benefits and limitations:
263259

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.32 2005-04-05 01:06:54 richard Exp $
18+
# $Id: __init__.py,v 1.33 2006-01-27 06:09:44 richard Exp $
1919

2020
'''Roundup - issue tracking for knowledge workers.
2121
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '0.9.0b1'
71+
__version__ = '1.0'
7272

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

setup.py

Lines changed: 25 additions & 12 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.83 2005-10-07 05:35:02 richard Exp $
19+
# $Id: setup.py,v 1.84 2006-01-27 06:09:44 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -351,17 +351,30 @@ def main():
351351
If you're upgrading from an older version of Roundup you *must* follow
352352
the "Software Upgrade" guidelines given in the maintenance documentation.
353353
354-
Roundup 0.9 includes:
355-
356-
- added "imapServer.py" script (sf patch 934567)
357-
- added date selection popup windows (thanks Marcus Priesch)
358-
- added Xapian indexer; replaces standard indexers if Xapian is available*
359-
- mailgw subject parsing has configurable levels of strictness
360-
- nosy messages may be sent individually to all recipients
361-
- remember where we came from when logging in (sf patch 1312889)
362-
363-
*: unfortunately the latest release of Xapian (0.9.2) has a bug in the
364-
Python bindings which prevents this indexer from working, so it's disabled
354+
Roundup 1.0 includes all the pre-1.0 goodness, and:
355+
356+
- added full-text indexer using Xapian as the back end
357+
- Lithuanian translation by Aiste Kesminaite
358+
- Web User Interface language selection by form variable @language,
359+
browser cookie or HTTP header Accept-Language (sf patch 1360321)
360+
- initial values for configuration options may be passed on
361+
'roundup-admin install' command line (based on sf patch 1237110)
362+
- favicon.ico image may be changed with server config option (sf patch 1355661)
363+
- Password objects initialized from plaintext remember plaintext value
364+
(sf rfe 1379447)
365+
- Roundup installation document includes configuration example
366+
for Exim Internet Mailer (sf bug 1393860)
367+
- enable registration confirmation by web only (sf bug 1381675)
368+
- allow preselection of values in templating menu()s (sf patch 1396085)
369+
- display the query name in the header (sf feature 1298535 / patch 1349387)
370+
- classhelp works with Link properties now (sf bug 1410290)
371+
- added setorderprop() and setlabelprop() to Class (sf features 1379534,
372+
1379490)
373+
- CSV encoding support (sf bug 1240848)
374+
- fields rendered with StructuredText are hyperlinked by default
375+
- additional attributes for input element may be passed to the 'field'
376+
method of a property wrapper
377+
- added "copy_url" method to generate a URL for copying an item
365378
''',
366379
'author': "Richard Jones",
367380
'author_email': "[email protected]",

0 commit comments

Comments
 (0)