opening_hours 3.8.0-dev → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.rst +33 -2
- package/Makefile +1 -1
- package/build/opening_hours.js +537 -57
- package/package.json +20 -20
- package/site/js/i18n-resources.js +202 -124
- package/site/js/opening_hours_table.js +14 -5
- package/types/index.d.ts +6 -9
package/CHANGELOG.rst
CHANGED
|
@@ -166,7 +166,38 @@ master_ - unreleased
|
|
|
166
166
|
|
|
167
167
|
.. _master: https://github.com/opening-hours/opening_hours.js/compare/v3.7.0...master
|
|
168
168
|
|
|
169
|
-
`v3.
|
|
169
|
+
`v3.9.0 milestone <https://github.com/opening-hours/opening_hours.js/issues?q=milestone%3Av3.9.0+is%3Aclosed>`__
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
v3.8.0_ - 2022-05-18
|
|
173
|
+
--------------------
|
|
174
|
+
|
|
175
|
+
.. _v3.8.0: https://github.com/opening-hours/opening_hours.js/compare/v3.7.0...v3.8.0
|
|
176
|
+
|
|
177
|
+
Added
|
|
178
|
+
~~~~~
|
|
179
|
+
|
|
180
|
+
* Public holiday definitions added:
|
|
181
|
+
|
|
182
|
+
* Argentina
|
|
183
|
+
|
|
184
|
+
* Localizations added:
|
|
185
|
+
|
|
186
|
+
* Vietnamese
|
|
187
|
+
|
|
188
|
+
Changed
|
|
189
|
+
~~~~~~~
|
|
190
|
+
|
|
191
|
+
* School holiday definitions updated:
|
|
192
|
+
|
|
193
|
+
* Romania
|
|
194
|
+
* France
|
|
195
|
+
|
|
196
|
+
Fixed
|
|
197
|
+
~~~~~
|
|
198
|
+
|
|
199
|
+
* Typing for typescript
|
|
200
|
+
|
|
170
201
|
|
|
171
202
|
v3.7.0_ - 2021-07-24
|
|
172
203
|
--------------------
|
|
@@ -225,7 +256,7 @@ Added
|
|
|
225
256
|
* Misused ``.`` character. Example: ``Jan 01,Dec 24.-25.``. [ypid_]
|
|
226
257
|
* Trailing ``,`` after time selector. Example: ``We 12:00-18:00,``. [ypid_]
|
|
227
258
|
* Additional rule which evaluates to closed. Example: ``Mo-Fr 10:00-20:00, We off``. [ypid_]
|
|
228
|
-
* Value consists of multiple rules each only using a time selector. Example: ``11:30-14:30;17:30-23:00``. [
|
|
259
|
+
* Value consists of multiple rules each only using a time selector. Example: ``11:30-14:30;17:30-23:00``. [ypid_]
|
|
229
260
|
* Potentially missing use of ``<additional_rule_separator>`` if the previous
|
|
230
261
|
rule has a time range which wraps over midnight and the current rule
|
|
231
262
|
matches one of the following days of the previous rule.
|
package/Makefile
CHANGED
|
@@ -120,7 +120,7 @@ doctoc:
|
|
|
120
120
|
|
|
121
121
|
## Build files which are needed to host the evaluation tool on a webserver.
|
|
122
122
|
.PHONY: ready-for-hosting
|
|
123
|
-
ready-for-hosting: dependencies-get opening_hours+deps.min.js
|
|
123
|
+
ready-for-hosting: dependencies-get build/opening_hours+deps.min.js
|
|
124
124
|
|
|
125
125
|
## command line programs {{{
|
|
126
126
|
.PHONY: run-regex_search
|