-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGELOG.txt
74 lines (51 loc) · 1.75 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
=== (ongoing) ===
=== 1.0 ===
- Prepared app for Django 1.9 and Python 3.5
=== 0.9 ===
- Changed urls to be compatible with django 1.6
=== 0.8 ===
- Changed base.html to p_base.html. This allows us to have two base templates,
one for the wireframes and one for the actual website.
=== 0.7 ===
- Changed base template of sprints.html to proto/base.html
You can simply create the file proto/base.html and put {% extends "base.html" %}
into it if you want to use your main base.html
=== 0.6 ===
- Fixed Difference totals (now based on the time totals, not the difference
average)
- Added possibility to set external_link for tasks
=== 0.5 ===
- Added new column: Developer Estimated Costs
- Added rounding to two digits
- Added sprint metadata table
- Added remaining_time to each sprint
=== 0.4 ===
- Added sprints view
- Massive refactoring and API changes, see updated README
=== 0.3 ===
- Added context utils functions
=== 0.2 ===
- Bugfix for get_hourly_rate tag
=== 0.1.1 ===
- Added get_hourly_rate templatetag
=== 0.1 ===
- Initial commit
# Suggested file syntax:
#
# === (ongoing) ===
# - this is always on top of the file
# - when you release a new version, you rename the last `(ongoing)` to the new
# version and add a new `=== (ongoing) ===` to the top of the file
#
# === 1.0 ===
# - a major version is created when the software reached a milestone and is
# feature complete
#
# === 0.2 ===
# - a minor version is created when new features or significant changes have
# been made to the software.
#
# === 0.1.1 ==
# - for bugfix releases, fixing typos in the docs, restructuring things, simply
# anything that doesn't really change the behaviour of the software you
# might use the third digit which is also sometimes called the build number.