forked from bitlabstudio/django-multilingual-news
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
172 lines (104 loc) · 3.31 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
=== ongoing ===
=== 2.6.9 ===
- Removed prepopulated fields from admin
=== 2.6.8 ===
- Added workaround to prepopulate title field in admin
=== 2.6.7 ===
- Updated app hook urls
=== 2.6.6 ===
- Raise 404 if news category is non-existent
=== 2.6.5 ===
- Added generic relation to news entry
=== 2.6.4 ===
- Fixed tests
- Increased coverage
- Prepared app for Python 3.5
=== 2.6.3 ===
- Fixed admin
=== 2.6.2 ===
- Fixed new migrations
- Prepared app for Django 1.9
=== 2.6.1 ===
- Fixed admin
=== 2.6 ===
- prepared app for Django 1.8
=== 2.5.2 ===
- Improved get_absolute_url function to avoid timezone issues.
=== 2.5.1 ===
- Added german translation
=== 2.5 ===
- Improvemments for list view template and detail view template.
=== 2.4.1 ===
- Improved admin
=== 2.4 ===
- Added thumbnail field to entry model
- Added category function to entry model
=== 2.3.1 ===
- Fixed cms plugin
=== 2.3 ===
- Added hide_on_list field to categories
=== 2.2 ===
- Added category argument to recent news tag
=== 2.1.1 ===
- some useful additions to the default entry template
=== 2.1 ===
- added PublishEntryView to publish or unpublish entries
- added NewsEntryDeleteView to delete entries
- added publish/unpublish and delete buttons to entry template
- added bootstrap modal for delete view
- added optional bootstrap ressources
=== 2.0.3 ===
- fixed migration dependencies
=== 2.0.2 ===
- displaying all entries, even if unpublished, when a user is logged in as
superuser
=== 2.0.1 ===
- Making entry preview require admin or staff login.
=== 2.0 ===
Backwards incompatible:
- added authors based on django-people
* removes old authors FK to auth.User and adds FK to people.Person instead.
If you want to keep all the authors, you may need to create the respective
Persons yourself and make a datamigration before migration 0016.
Check migrations 0014-0016 for more details.
Features:
- added attachments based on django-document-library
- added tagging with django-multilingual-tags
- added a tag based list view
- added categories
- added RSS Feeds
- added NewsSitemap
- added SEO fields and tags
- split news entry detail view and made another dedicated preview view, adding
"preview" to the template context
Fixes:
- improved managers by using language aware hvad managers
- fixed NewsEntry.is_public
- fixed some get_absolute_url methods
=== 1.3.1 ===
- Fixed NewsEntry admin
- Removed failing test for now deprecated templatetag. We will delete this tag
in version 2 anyways.
=== 1.3 ===
- Removed dispatch method / seems to work just fine with hvad and default
generic view behaviour
- Added FrontendEditableAdmin for better integration with django-cms 3
=== 1.2 ===
- Return preview url instead of absolute url if item is not published
=== 1.1 ===
- Removed simple-translation dependency
- Fixed tests so that they pass with the new codebase again
=== 1.0 ===
- Migration to django-cms 3 compatibility
- Added image_width, image_height, image_source_url and image_source_text fields
- Moved language field into it's own fieldset on top of the page
- Added get_recent_news assgnment tag
- Added .recent to NewsEntryManager
=== 0.3 ===
- Added image_float field
=== 0.2 ===
- Added recent news cms plugin
=== 0.1.1 ===
- Added preview url and added it to the admin's change form
=== 0.1 ===
Initial commit