|
16 | 16 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
17 | 17 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
18 | 18 | # |
19 | | -# $Id: setup.py,v 1.58 2003-11-13 05:56:48 richard Exp $ |
| 19 | +# $Id: setup.py,v 1.59 2004-03-24 05:56:06 richard Exp $ |
20 | 20 |
|
21 | 21 | from distutils.core import setup, Extension |
22 | 22 | from distutils.util import get_platform |
@@ -188,39 +188,41 @@ def main(): |
188 | 188 | command-line, web and e-mail interfaces. It is based on the winning design |
189 | 189 | from Ka-Ping Yee in the Software Carpentry "Track" design competition. |
190 | 190 |
|
191 | | -The 0.6 release has lots of new goodies including: |
192 | | -
|
193 | | -- new instant-gratification Demo Mode ("python demo.py" :) |
194 | | -- added mysql backend (see doc/mysql.txt for details) |
195 | | -- web interface cleanups including nicer history display, nicer index |
196 | | - navigation and nicer popup list windows |
197 | | -- searching of date ranges |
198 | | -- better international support, including utf-8 email handling and ability |
199 | | - to display localized dates in web interface. |
200 | | -- more documentation including revamped design document, unix manual pages |
201 | | - and some FAQ entries |
202 | | -- significantly more powerful form handling allowing editing of multiple |
203 | | - items and creation of multiple items |
204 | | -- tracker templates can contain subdirectories and static files (e.g. |
205 | | - images) and we may now distribute templates separately from Roundup. |
206 | | - Template HTML files now have a .html extension too. |
207 | | -- user registration is now a two-step process, with confirmation from the |
208 | | - email address supplied in the registration form, and we also have a |
209 | | - password reset feature for forgotten password / login |
210 | | -- Windows Service mode for roundup-server when daemonification is |
211 | | - attempted on Windows |
212 | | -- lots of speed enhancements, making the web interface much more responsive |
213 | | -- fixed issues with dumb email or web clients |
214 | | -- email system handles more SMTP and POP features (TLS, APOP, ...) |
215 | | -- lots more little tweaks and back-end work... |
| 191 | +If you're upgrading from an older version of Roundup you *must* follow |
| 192 | +the "Software Upgrade" guidelines given in the maintenance documentation. |
| 193 | +
|
| 194 | +No, really, this is a BETA and if you don't follow the upgrading steps, |
| 195 | +particularly the bit about BACKING UP YOUR DATA, I'm NOT GOING TO BE HELD |
| 196 | +RESPONSIBLE. This release is NOT FOR GENERAL USE. |
| 197 | +
|
| 198 | +I would *greatly* appreciate people giving this release a whirl with a |
| 199 | +copy of their existing setup. It's only through real-world testing of |
| 200 | +beta releases that we can ensure that older trackers will be OK. |
| 201 | +
|
| 202 | +This release introduces far too many features to list here. Some |
| 203 | +highlights: |
| 204 | +
|
| 205 | +- added postgresql backend (originally from sf patch 761740, many changes |
| 206 | + since) |
| 207 | +- RDBMS backends implement their session and one-time-key stores and |
| 208 | + full-text indexers; thus they are now performing their own locking |
| 209 | + internally |
| 210 | +- added new "actor" automatic property (indicates user who cause the last |
| 211 | + "activity") |
| 212 | +- all RDBMS backends have sensible data typed columns and indexes on |
| 213 | + several columns |
| 214 | +- we support confirming registration by replying to the email (sf bug |
| 215 | + 763668) |
| 216 | +- all HTML templating methods now automatically check for permissions |
| 217 | + (either view or edit as appropriate), greatly simplifying templates |
216 | 218 | ''', |
217 | 219 | author = "Richard Jones", |
218 | 220 | author_email = "[email protected]", |
219 | 221 | url = 'http://roundup.sourceforge.net/', |
220 | 222 | download_url = 'http://sourceforge.net/project/showfiles.php?group_id=31577', |
221 | 223 | packages = packagelist, |
222 | 224 | classifiers = [ |
223 | | - 'Development Status :: 5 - Production/Stable', |
| 225 | + 'Development Status :: 4 - Beta', |
224 | 226 | 'Environment :: Console', |
225 | 227 | 'Environment :: Web Environment', |
226 | 228 | 'Intended Audience :: End Users/Desktop', |
|
0 commit comments