opening_hours 3.8.0 → 3.9.0-beta.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 +57 -5
- package/LICENSES/AGPL-3.0-only.txt +149 -517
- package/LICENSES/CC0-1.0.txt +121 -0
- package/LICENSES/LGPL-3.0-only.txt +304 -0
- package/Makefile +23 -21
- package/README.md +54 -27
- package/build/opening_hours.js +4491 -2277
- package/package.json +35 -31
- package/site/js/helpers.js +17 -11
- package/site/js/i18n-resources.js +211 -60
- package/site/js/opening_hours_table.js +121 -114
- package/types/index.d.ts +3 -3
package/CHANGELOG.rst
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.. SPDX-FileCopyrightText: 2016
|
|
1
|
+
.. SPDX-FileCopyrightText: © 2016 Robin Schneider <ypid@riseup.net>
|
|
2
2
|
..
|
|
3
3
|
.. SPDX-License-Identifier: LGPL-3.0-only
|
|
4
4
|
|
|
@@ -7,8 +7,8 @@ Changelog
|
|
|
7
7
|
|
|
8
8
|
All notable changes to opening_hours.js will be documented in this file.
|
|
9
9
|
|
|
10
|
-
This project adheres to `Semantic Versioning <
|
|
11
|
-
and `human-readable changelog <
|
|
10
|
+
This project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`__
|
|
11
|
+
and `human-readable changelog <https://keepachangelog.com/en/0.3.0/>`__.
|
|
12
12
|
|
|
13
13
|
Note that most of the v2.X.Z releases have not been added to the changelog yet.
|
|
14
14
|
|
|
@@ -168,6 +168,56 @@ master_ - unreleased
|
|
|
168
168
|
|
|
169
169
|
`v3.9.0 milestone <https://github.com/opening-hours/opening_hours.js/issues?q=milestone%3Av3.9.0+is%3Aclosed>`__
|
|
170
170
|
|
|
171
|
+
Added
|
|
172
|
+
~~~~~
|
|
173
|
+
|
|
174
|
+
* Public holiday definitions added:
|
|
175
|
+
|
|
176
|
+
* Chinese (#406)
|
|
177
|
+
* Croatian
|
|
178
|
+
* Luxembourg (#460)
|
|
179
|
+
* Namibian (#452)
|
|
180
|
+
|
|
181
|
+
* School holiday definitions added:
|
|
182
|
+
|
|
183
|
+
* Croatian
|
|
184
|
+
* France
|
|
185
|
+
* Luxembourg (#460)
|
|
186
|
+
|
|
187
|
+
Changed
|
|
188
|
+
~~~~~~~
|
|
189
|
+
|
|
190
|
+
* Public holiday definitions updated:
|
|
191
|
+
|
|
192
|
+
* Argentina (#456)
|
|
193
|
+
* Swedish and Finnish (#465)
|
|
194
|
+
|
|
195
|
+
* School holiday definitions updated:
|
|
196
|
+
|
|
197
|
+
* Belgium (#457)
|
|
198
|
+
* German (#468)
|
|
199
|
+
* Hungarian (#466)
|
|
200
|
+
|
|
201
|
+
* [Evaluation tool] Optimize "Error and warning messages" layout
|
|
202
|
+
* [chore] Update CI in `ci.yml` (#468)
|
|
203
|
+
* Replace deprecated `set-output`
|
|
204
|
+
* Test with maintained node versions
|
|
205
|
+
* Update actions
|
|
206
|
+
* [chore] Upgrade `colors`, `husky` and `eslint` (#468)
|
|
207
|
+
* [chore] Update dependencies (#468)
|
|
208
|
+
* [chore] Move minification into rollup and remove `esbuild` (#468)
|
|
209
|
+
* [chore] Also build sourcemap to minified files (#468)
|
|
210
|
+
* [chore] Add code-style-check to CI (#468)
|
|
211
|
+
* [chore] Change benchmark script to esm (#468)
|
|
212
|
+
|
|
213
|
+
Fixed
|
|
214
|
+
~~~~~
|
|
215
|
+
|
|
216
|
+
* JOSM remote control was not working because it was trying to be accessed as https://localhost:8111/. Switch to HTTP.
|
|
217
|
+
* [Evaluation tool] Fix timebar wrap on certain zoom levels in Firefox (issue #419)
|
|
218
|
+
* [Evaluation tool] Fix Russian and Ukrainian pluralization by updating `i18next` and using API version V4 (#468)
|
|
219
|
+
* [chore] Drop `yamlToJson.mjs` (#468) - There are better tools like https://mikefarah.gitbook.io/yq that do this. No need to maintain our own.
|
|
220
|
+
* [chore] Fix `make list` (#468)
|
|
171
221
|
|
|
172
222
|
v3.8.0_ - 2022-05-18
|
|
173
223
|
--------------------
|
|
@@ -180,10 +230,12 @@ Added
|
|
|
180
230
|
* Public holiday definitions added:
|
|
181
231
|
|
|
182
232
|
* Argentina
|
|
233
|
+
* Japanese
|
|
183
234
|
|
|
184
235
|
* Localizations added:
|
|
185
236
|
|
|
186
237
|
* Vietnamese
|
|
238
|
+
* Japanese
|
|
187
239
|
|
|
188
240
|
Changed
|
|
189
241
|
~~~~~~~
|
|
@@ -312,8 +364,8 @@ Changed
|
|
|
312
364
|
* Change directory layout of the project. [napei_, ypid_]
|
|
313
365
|
* Switch from i18next-client to i18next dependency (no longer as peer dependency). [fodor0205_, ypid_]
|
|
314
366
|
|
|
315
|
-
.. _ES2015 modules:
|
|
316
|
-
.. _rollup:
|
|
367
|
+
.. _ES2015 modules: https://exploringjs.com/es6/ch_modules.html
|
|
368
|
+
.. _rollup: https://rollupjs.org/
|
|
317
369
|
|
|
318
370
|
Fixed
|
|
319
371
|
~~~~~
|