Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jekuer committed May 17, 2023
1 parent 836d551 commit 5f21da6
Show file tree
Hide file tree
Showing 13 changed files with 2,067 additions and 631 deletions.
2 changes: 1 addition & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": ["stylelint-config-standard", "stylelint-config-prettier"],
"extends": ["stylelint-config-standard"],
"ignoreFiles": ["**/*.min.css"],
"rules": {
"selector-class-pattern": null,
Expand Down
5 changes: 3 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Run ...
sudo sh update-tzdata.sh tzVersionNumber
```

... with _tzVersionNumber_ being the version of the [IANA time zone database](https://www.iana.org/time-zones) you want to use (e.g. sudo sh update-tzdata.sh 2022g).
... with _tzVersionNumber_ being the version of the [IANA time zone database](https://www.iana.org/time-zones) you want to use (e.g. sudo sh update-tzdata.sh 2023c).

<br />

Expand Down Expand Up @@ -172,7 +172,8 @@ Licensed under [Apache-2.0](LICENSE).

![npm version](https://img.shields.io/npm/v/timezones-ical-library?label=current%20version&style=for-the-badge)

- v1.6 : database update
- v1.7 : database update (2023c)
- v1.6 : database update (2022g)
- v1.5 : new dist structure
- v1.4 : further minification via data mapping
- v1.3 : bundle size optimization and API
Expand Down
2 changes: 1 addition & 1 deletion api/zones.json
Original file line number Diff line number Diff line change
Expand Up @@ -595,4 +595,4 @@
"W-SU",
"WET",
"Zulu"
]
]
10 changes: 5 additions & 5 deletions demo_assets/css/demopage.css
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ pre + h4 {
margin-top: 60px;
}

@media only screen and (max-width: 800px) {
@media only screen and (width <= 800px) {
h3,
h4 {
text-align: center;
Expand Down Expand Up @@ -351,7 +351,7 @@ a.github:hover svg {
padding: 30px 0;
}

@media (max-width: 991px) {
@media (width <= 991px) {
#logo {
width: 300px;
padding: 0;
Expand Down Expand Up @@ -441,7 +441,7 @@ body.atcb-dark .light-mode-switch div::after {
background: var(--primary-color-light);
}

@media (max-width: 991px) {
@media (width <= 991px) {
#light-mode-switch-header div::after {
background: var(--primary-color);
}
Expand Down Expand Up @@ -502,7 +502,7 @@ body.atcb-dark .light-mode-switch div::after {
max-width: 550px;
}

@media (max-width: 991px) {
@media (width <= 991px) {
#header {
background: linear-gradient(180deg, var(--primary-color), var(--primary-color), var(--primary-color-light));
flex-direction: column;
Expand All @@ -526,7 +526,7 @@ body.atcb-dark .light-mode-switch div::after {
}
}

@media (max-width: 575px) {
@media (width <= 575px) {
.example-wrapper {
padding: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion demo_assets/css/demopage.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion demo_assets/css/demopage.min.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Add to Calendar TimeZones iCal Library
* ++++++++++++++++++++++++++++++++++++++
*
* Version: 1.6.1
* Version: 1.7.0
* Creator: Jens Kuerschner (https://jenskuerschner.de)
* Project: https://github.com/add2cal/timezones-ical-library
* License: Apache-2.0
Expand Down
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<script async defer data-website-id="df493802-c6d9-49f5-aa67-245f472f5a8e" src="https://a.add-to-calendar-button.com/atcba.js" data-host-url="https://a.add-to-calendar-button.com" data-domains="tz.add-to-calendar-technology.com" data-do-not-track="true"></script>

<!-- load some basic css just for this demo page here -->
<link rel="stylesheet" href="./demo_assets/css/demopage.min.css?v=1.6.1">
<link rel="stylesheet" href="./demo_assets/css/demopage.min.css?v=1.7.0">

</head>
<body>
Expand Down Expand Up @@ -263,15 +263,15 @@ <h3>Background story</h3>
This page is hosted via "GitHub Pages". It includes some very basic analytics, that still preserves your anonymity and does not use any cookies. However, mind that the GitHub privacy policy applies additionally (<a target="_blank" rel="noopener" href="https://docs.github.com/en/github/site-policy/github-privacy-statement">click here for details</a>).
</p>
</div>
<div id="tiny-version">v1.6.1</div>
<div id="tiny-version">v1.7.0</div>

</div>


<!-- js stuff -->
<script type="application/javascript" src="./dist/tzlib.js?v=1.6.1"></script>
<script type="application/javascript" src="./dist/tzlib.js?v=1.7.0"></script>
<script type="application/javascript" src="./demo_assets/js/autocomplete.min.js"></script>
<script type="application/javascript" src="./demo_assets/js/demopage.min.js?v=1.6.1"></script>
<script type="application/javascript" src="./demo_assets/js/demopage.min.js?v=1.7.0"></script>

</body>
</html>

0 comments on commit 5f21da6

Please sign in to comment.