-
Notifications
You must be signed in to change notification settings - Fork 97
/
CHANGELOG.txt
127 lines (84 loc) · 3.49 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
--next--
------------------
* Remove support for Python 3.6
0.9.2 (2021-12-10)
------------------
* Added support for Django 4.0, 3.2
* Fixed some documentation issues (thanks @marcanuy)
* Added setting to allow clearing a rating.
* Fixed some deprecation warnings (thanks @mvillalba)
* Added tests for model url swapping
* Added fallback to DOM based CSRF token to handle CSRF_COOKIE_HTTPONLY
* Added support for Django 3.1
* Added setting to allow deleting rating if the same score is sent
* Added support for Brazilian Portuguese language support (thanks @luizomf)
0.9.1 (2019-12-13)
------------------
* Fixed issue displaying stars in admin (thanks @GDay)
* Fixed issue with auto deploy configs
0.9.0 (2019-12-12)
------------------
* Added support for python 3.8
* Added support for django 3
* Added RU translations (thanks @DarkDemiurg)
0.8.0 (2019-06-26)
------------------
* Added support for django 2.2
* Fixed issue not setting csrf token in ratings template (thanks @4lm)
* Added german language support (thanks @4lm)
* Added support for python 3.7
0.7.0 (2018-09-13)
------------------
* Added support for django 2.1
* Changed sprite image in template tag to use static files wrapper
(this may cause issues if your STAR_RATINGS_STAR_SPRITE setting includes static root url)
* Replaced links with forms so that requests are made correctly if there is no js (This may break other css/js)
* Updated error message for missing requests context processor to work for new and old template settings
0.6.1 (2018-02-08)
------------------
* Added js events for after a user rates an object
* Added `user_rating_percentage` to rating template tag context.
* Added `STAR_RATINGS_OBJECT_ID_PATTERN` for custom rating model handling in urls (thanks @RabidCicada)
* Added documentation about initial migration when using custom ratings model (thanks @RabidCicada)
0.6.0 (2017-12-11)
------------------
* Added support for django 2.0
* Added swappable rating model
0.5.6 (2017-07-12)
------------------
* Star sprite sheet can be specified in settings using `STAR_RATINGS_STAR_SPRITE`
0.5.5 (2017-03-31)
------------------
* Support for Django 1.11
* Added support for calculating aggregates on bulk create.
* Fixed issue with hover state when widget is read only
* Removed 'Login to rate' if user is logged in
* Fixed issue with `icon_width` not resizing correctly
0.5.4 (2017-01-26)
------------------
* Added docs.
0.5.3 (2016-08-10)
------------------
* Added support for anonymous rating (thanks @urtzai)
* Fixed issue with parsing floats (thanks @anex)
* Added support for setting default star dimensions
* Django 1.10 support
0.5.2 (2016-04-12)
------------------
* Fixed issue where locales that use commas in floats would break the CSS width (thanks @spec45as and @JuanmaNatal)
* Corrected docs (thanks @marcwebbie)
0.5.0 (2015-12-11)
-------------------
* Django 1.9 support.
0.3.0 (2015-09-24)
-------------------
* Moved templates from /templates/ratings/ to /templates/star_ratings/ to match the package name.
Backwards incompatible change. If you've customised your template please rename from /templates/ratings/ to /templates/star_ratings/
* Added translation support and French translations. (Thanks @ollb).
* Split widget into separate templates to make customisation easier. (Thanks @ollb).
0.2.1 (2015-09-16)
-------------------
* Renamed Rating manager ratings_for_instance method to for_instance and added deprecation warning to old method calls.
0.2.0 (2015-09-16)
-------------------
* Initial PyPI release.