forked from arteria/django-openinghours
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCHANGELOG.txt
47 lines (37 loc) · 1.48 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
=== (ongoing) ===
Please check the latest commits for development version.
=== 0.2.0 ==
- Drop Django 1 and Python 2 support
- Fixed migration errors
=== 0.1.3 ==
- Drop Django 1.7 support
- Fix a TypeError in templatetags (#24)
=== 0.1.2 ==
- Fix `FileNotFoundError` in setup.py
=== 0.1.1 ===
- Documentation fixes
- Added location (company premises) to edit form template context
=== 0.1 ===
- Custom company/location/premises model
- Cleaner tag names and API with upgrading docs
- Front-end grade editing form UI inspired by Google Local
- Tests
=== 0.0.27 ===
- Adding [django-threadlocals](https://pypi.python.org/pypi/django-threadlocals/0.8) allows for live testing of the rules defined.
- Bugfix if closed on Sunday and open later during the day. Next opening showed Monday.
=== 0.0.7 .. 0.0.26 ===
- Added template tag ``iso_day_to_weekday``, returns 'today' in case of today.
- Added template tag ``to_weekday`` to handle next weeks 'today'.
- Partial closing/opening hours with overlapping support
- Added template tag ``get_closing_rule_for_now``.
- Bugfix
=== 0.0.3 .. 0.0.6 ===
- Added attribute access in template tags.
- Returning the OpeningHours when company is open (instead of True).
- Added some template tags: ``next_time_open`` and ``has_closing_rule_for_now``.
- "Next time open" function returns closest next opening time
=== 0.0.2 ===
- Handle midnight, allow hours like Monday 9:00pm to 1:00am e.g. for night clubs, etc.
- Implemented closing hours.
=== 0.0.1 ===
- Inital version