Skip to content

Commit ac98a46

Browse files
author
Richard Jones
committed
pre-release
1 parent 8256686 commit ac98a46

File tree

4 files changed

+31
-36
lines changed

4 files changed

+31
-36
lines changed

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
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-
2007-??-?? 1.3.3
4+
2007-02-15 1.3.3
55
Fixed:
66
- If-Modified-Since handling was broken
77
- Updated documentation for customising hard-coded searches in page.html
88
- Updated Windows installation docs (thanks Bo Berglund)
99
- Handle rounding of seconds generating invalid date values
1010
- Handle 8-bit untranslateable messages from database properties
11+
- Fix scripts/roundup-reminder date calculation (sf bug 1649979)
12+
- Improved due_date and timelog customisation docs (sf bug 1625124)
1113

1214

1315
2006-12-19 1.3.2

doc/announcement.txt

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
1-
I'm proud to release version 1.3.2 of Roundup.
2-
3-
Fixed in 1.3.2:
4-
5-
- relax rules for required fields in form_parser.py (sf bug 1599740)
6-
- documentation cleanup from Luke Ross (sf patch 1594860)
7-
- updated Spanish translation from Ramiro Morales (sf patch 1594718)
8-
- handle 8-bit untranslateable messages in tracker templates
9-
- handling of required for boolean False and numeric 0 (sf bug 1608200)
10-
- removed bogus args attr of ConfigurationError (sf bug 1608056)
11-
- implemented start_response in roundup.cgi (sf bug 1604304)
12-
- clarified windows service documentation (sf patch 1597713)
13-
- HTMLClass fixed to work with new item permissions check (sf bug 1602983)
14-
- support POP over SSL (sf patch 1597703)
15-
- clean up input field generation and quoting of values (sf bug 1615616)
16-
- allow use of roundup-server pidfile without forking (sf bug 1614753)
17-
- allow translation of status/priority menu options (sf bug 1613976)
1+
I'm proud to release version 1.3.3 of Roundup.
2+
3+
Fixed in 1.3.3:
4+
5+
- If-Modified-Since handling was broken
6+
- Updated documentation for customising hard-coded searches in page.html
7+
- Updated Windows installation docs (thanks Bo Berglund)
8+
- Handle rounding of seconds generating invalid date values
9+
- Handle 8-bit untranslateable messages from database properties
10+
- Fix scripts/roundup-reminder date calculation (sf bug 1649979)
11+
- Improved due_date and timelog customisation docs (sf bug 1625124)
1812

1913
New Features in 1.3.0:
2014

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.45 2006-12-19 03:03:37 richard Exp $
18+
# $Id: __init__.py,v 1.46 2007-02-15 04:02:43 richard Exp $
1919

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

71-
__version__ = '1.3.2'
71+
__version__ = '1.3.3'
7272

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

setup.py

Lines changed: 15 additions & 16 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.96 2006-12-19 03:03:36 richard Exp $
19+
# $Id: setup.py,v 1.97 2007-02-15 04:02:43 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -219,6 +219,11 @@ def check_manifest():
219219
finally:
220220
f.close()
221221
err = [line for line in manifest if not os.path.exists(line)]
222+
err.sort()
223+
# ignore auto-generated files
224+
if err == ['roundup-admin', 'roundup-demo', 'roundup-gettext',
225+
'roundup-mailgw', 'roundup-server']:
226+
err = []
222227
if err:
223228
n = len(manifest)
224229
print '\n*** SOURCE WARNING: There are files missing (%d/%d found)!'%(
@@ -347,21 +352,15 @@ def main():
347352
'''In this release
348353
===============
349354
350-
Fixed in 1.3.2:
351-
352-
- relax rules for required fields in form_parser.py (sf bug 1599740)
353-
- documentation cleanup from Luke Ross (sf patch 1594860)
354-
- updated Spanish translation from Ramiro Morales (sf patch 1594718)
355-
- handle 8-bit untranslateable messages in tracker templates
356-
- handling of required for boolean False and numeric 0 (sf bug 1608200)
357-
- removed bogus args attr of ConfigurationError (sf bug 1608056)
358-
- implemented start_response in roundup.cgi (sf bug 1604304)
359-
- clarified windows service documentation (sf patch 1597713)
360-
- HTMLClass fixed to work with new item permissions check (sf bug 1602983)
361-
- support POP over SSL (sf patch 1597703)
362-
- clean up input field generation and quoting of values (sf bug 1615616)
363-
- allow use of roundup-server pidfile without forking (sf bug 1614753)
364-
- allow translation of status/priority menu options (sf bug 1613976)
355+
Fixed in 1.3.3:
356+
357+
- If-Modified-Since handling was broken
358+
- Updated documentation for customising hard-coded searches in page.html
359+
- Updated Windows installation docs (thanks Bo Berglund)
360+
- Handle rounding of seconds generating invalid date values
361+
- Handle 8-bit untranslateable messages from database properties
362+
- Fix scripts/roundup-reminder date calculation (sf bug 1649979)
363+
- Improved due_date and timelog customisation docs (sf bug 1625124)
365364
366365
New Features in 1.3.0:
367366

0 commit comments

Comments
 (0)