forked from idlesign/django-sitetree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
99 lines (73 loc) · 2.28 KB
/
CHANGELOG
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
v0.6
------
* Added i18n trees support (see #27).
* Added tree items processing hook support (see #26).
* Fixed various tree items filtering issues (see #34, #35).
v0.5.2
------
* Fix for yes/no icons not shown in tree admin when non-eng LANGUAGE_CODE is used (closes #31).
* Fixed item's depth calculation (closes #29).
* Fixed misleading tree rendering bug in admin interface.
* Improved Django 1.4 compatibility (fixes #33).
v0.5.1
------
+ Added Django 1.4 static files compatibility for Admin contrib.
+ Added support for slug-like IDs as item lookup params (see #24).
* Added None check in "tree_climber" method (fixes #22).
* Minor optimizations in tree.html template.
v0.5
----
+ Now sitetree uses native Django cache framework (see #16).
+ Added "in_current_branch" item attribute (see #14, #18), and "current_branch" css class.
* South migrations are now shipped within application package (see #19).
* Current menu item now preserves "a" tag, and marked with "current_item" css class.
* Request object passing forced to "menu" method (fixes #15 ).
* Fixed "save & continue" wrong redirect on item's add page.
* Minor fixes.
v0.4
----
+ Added permissions calculation optimization to "get_sitetree" method (see #9).
+ Added item access restriction for authenticated uses only.
+ Added "this-ancestor-children" alias support (see #14).
* Minor fixes.
v0.3.1
------
* Invalid return fix in "init_tree" method (fixes #6).
* Added missing translation files.
v0.3
----
+ New template tag "sitetree_page_title".
+ Added ukranian translation.
+ Added human-friendly debug messages.
+ Added permissions support (see #3).
+ Added South migrations.
+ Added "url_resolved" attribute to items.
+ Added basic unit tests (see # 4).
+ Added .rst documentation (fixed #5).
* Admin menu links normalized (fixes #2).
* Fixed variable names clashes in template tags file.
* Missing "has_children" attribute fix.
v0.2.1
-------
+ Added PyPi compatibility.
* Modules import fixes.
* README now in .rst.
v0.2
----
+ Added support for non-ascii in urls.
v0.1.4
-------
* setup.py fix.
* Django under 1.2 compatibility fix for #1.
v0.1.3
-------
* "this-children" and "this-siblings" behavior fix.
v0.1.2
-------
* Setting items order in admin fix.
v0.1.1
-------
* Minor fixes.
v0.1
----
+ Basic sitetree functionality.