Mercurial > p > roundup > code
changeset 3523:f29a307ab3fe 1.0
pre-release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 27 Jan 2006 06:09:44 +0000 |
| parents | c6fef20094f2 |
| children | ed82c2c6ee34 |
| files | CHANGES.txt doc/announcement.txt doc/installation.txt roundup/__init__.py setup.py |
| diffstat | 5 files changed, 53 insertions(+), 34 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Fri Jan 27 05:22:46 2006 +0000 +++ b/CHANGES.txt Fri Jan 27 06:09:44 2006 +0000 @@ -1,7 +1,7 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2005-??-?? 0.9.0b2 +2005-01-27 1.0 Feature: - Lithuanian translation by Aiste Kesminaite - Web User Interface language selection by form variable @language,
--- a/doc/announcement.txt Fri Jan 27 05:22:46 2006 +0000 +++ b/doc/announcement.txt Fri Jan 27 06:09:44 2006 +0000 @@ -1,22 +1,32 @@ -I'm proud to release this 9th major feature release of Roundup. +I'm proud to release this, the 1.0 release of Roundup. -First up, big thanks go to alexander smishlajev who has done some really -good work getting the i18n and new configuration components of this release -going. +Yes, finally after over 4 years and 8 major releases, the 1.0 release is +here. -Please note that Roundup now requires python 2.3 or later. - -Roundup 0.9 includes: +Roundup 1.0 includes all the pre-1.0 goodness, and: -- added "imapServer.py" script (sf patch 934567) -- added date selection popup windows (thanks Marcus Priesch) -- added Xapian indexer; replaces standard indexers if Xapian is available* -- mailgw subject parsing has configurable levels of strictness -- nosy messages may be sent individually to all recipients -- remember where we came from when logging in (sf patch 1312889) - -*: unfortunately the latest release of Xapian (0.9.2) has a bug in the -Python bindings which prevents this indexer from working, so it's disabled +- added full-text indexer using Xapian as the back end +- Lithuanian translation by Aiste Kesminaite +- Web User Interface language selection by form variable @language, + browser cookie or HTTP header Accept-Language (sf patch 1360321) +- initial values for configuration options may be passed on + 'roundup-admin install' command line (based on sf patch 1237110) +- favicon.ico image may be changed with server config option (sf patch 1355661) +- Password objects initialized from plaintext remember plaintext value + (sf rfe 1379447) +- Roundup installation document includes configuration example + for Exim Internet Mailer (sf bug 1393860) +- enable registration confirmation by web only (sf bug 1381675) +- allow preselection of values in templating menu()s (sf patch 1396085) +- display the query name in the header (sf feature 1298535 / patch 1349387) +- classhelp works with Link properties now (sf bug 1410290) +- added setorderprop() and setlabelprop() to Class (sf features 1379534, + 1379490) +- CSV encoding support (sf bug 1240848) +- fields rendered with StructuredText are hyperlinked by default +- additional attributes for input element may be passed to the 'field' + method of a property wrapper +- added "copy_url" method to generate a URL for copying an item If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation.
--- a/doc/installation.txt Fri Jan 27 05:22:46 2006 +0000 +++ b/doc/installation.txt Fri Jan 27 06:09:44 2006 +0000 @@ -254,10 +254,6 @@ Choosing Your Backend --------------------- -.. note:: - - The tsearch2 backend is experimental and should not be selected. - The actual storage of Roundup tracker information is handled by backends. There's several to choose from, each with benefits and limitations:
--- a/roundup/__init__.py Fri Jan 27 05:22:46 2006 +0000 +++ b/roundup/__init__.py Fri Jan 27 06:09:44 2006 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.32 2005-04-05 01:06:54 richard Exp $ +# $Id: __init__.py,v 1.33 2006-01-27 06:09:44 richard Exp $ '''Roundup - issue tracking for knowledge workers. @@ -68,6 +68,6 @@ ''' __docformat__ = 'restructuredtext' -__version__ = '0.9.0b1' +__version__ = '1.0' # vim: set filetype=python ts=4 sw=4 et si
--- a/setup.py Fri Jan 27 05:22:46 2006 +0000 +++ b/setup.py Fri Jan 27 06:09:44 2006 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: setup.py,v 1.83 2005-10-07 05:35:02 richard Exp $ +# $Id: setup.py,v 1.84 2006-01-27 06:09:44 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -351,17 +351,30 @@ If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation. -Roundup 0.9 includes: +Roundup 1.0 includes all the pre-1.0 goodness, and: -- added "imapServer.py" script (sf patch 934567) -- added date selection popup windows (thanks Marcus Priesch) -- added Xapian indexer; replaces standard indexers if Xapian is available* -- mailgw subject parsing has configurable levels of strictness -- nosy messages may be sent individually to all recipients -- remember where we came from when logging in (sf patch 1312889) - -*: unfortunately the latest release of Xapian (0.9.2) has a bug in the -Python bindings which prevents this indexer from working, so it's disabled +- added full-text indexer using Xapian as the back end +- Lithuanian translation by Aiste Kesminaite +- Web User Interface language selection by form variable @language, + browser cookie or HTTP header Accept-Language (sf patch 1360321) +- initial values for configuration options may be passed on + 'roundup-admin install' command line (based on sf patch 1237110) +- favicon.ico image may be changed with server config option (sf patch 1355661) +- Password objects initialized from plaintext remember plaintext value + (sf rfe 1379447) +- Roundup installation document includes configuration example + for Exim Internet Mailer (sf bug 1393860) +- enable registration confirmation by web only (sf bug 1381675) +- allow preselection of values in templating menu()s (sf patch 1396085) +- display the query name in the header (sf feature 1298535 / patch 1349387) +- classhelp works with Link properties now (sf bug 1410290) +- added setorderprop() and setlabelprop() to Class (sf features 1379534, + 1379490) +- CSV encoding support (sf bug 1240848) +- fields rendered with StructuredText are hyperlinked by default +- additional attributes for input element may be passed to the 'field' + method of a property wrapper +- added "copy_url" method to generate a URL for copying an item ''', 'author': "Richard Jones", 'author_email': "richard@users.sourceforge.net",
