Skip to content

Commit

Permalink
added more special and holidays
Browse files Browse the repository at this point in the history
  • Loading branch information
Hypnos3 committed Aug 26, 2019
1 parent dcaa67d commit 578f17d
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
### CHANGELOG

#### 0.1.11: Maintenance Release

- added Weltkindertag as holiday for Thüringen
- added WELTFRAUENTAG as special day
- added FRIEDENSFEST as special day

#### 0.1.10: Maintenance Release

- updated dependencies

#### 0.1.9: Maintenance Release

- fix display problem in node-red 0.2.x, caused by preparations for node-red 1.0
Expand Down
26 changes: 24 additions & 2 deletions german-holidays.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE HTML>
<script type="text/x-red" data-template-name="german-holidays">
<script type="text/html" data-template-name="german-holidays">
<div>
<label for="node-input-holiday-container-row"><i class="fa fa-list"></i> <span data-i18n="german-holidays.label.holidayList"></span></label>
<div class="node-input-holiday-container-row">
Expand Down Expand Up @@ -89,7 +89,7 @@


<!-- Next, some simple help text is provided for the node. -->
<script type="text/x-red" data-help-name="german-holidays">
<script type="text/html" data-help-name="german-holidays">
<body>
<h3>About</h3>
<p>Gets german holidays</p>
Expand Down Expand Up @@ -456,6 +456,14 @@ <h3>References</h3>
regions: [],
character: characteristic.religion
},
WELTFRAUENTAG: {
name: 'Weltfrauentag',
namerAlt: 'International Women\'s Day',
month: 3,
day: 8,
regions: [],
character: characteristic.actionday
},
PALMSONNTAG: {
name: 'Palmsonntag', // 7 Tage vor dem Ostersonntag
month: easterX,
Expand Down Expand Up @@ -674,6 +682,13 @@ <h3>References</h3>
regions: [],
character: characteristic.calendar
},
FRIEDENSFEST: {
name: 'Friedensfest',
month: 8,
day: 8,
regions: [],
character: characteristic.religion
},
MARIAHIMMELFAHRT: {
name: 'Mariä Himmelfahrt',
month: 8,
Expand All @@ -688,6 +703,13 @@ <h3>References</h3>
regions: [],
character: characteristic.calendar
},
WELTKINDERTAG: {
name: 'Weltkindertag',
month: 9,
day: 20,
regions: ['TH', 'ALL'],
character: characteristic.customday
},
MICHAELISTAG: {
name: 'Michaelistag', // Tag Erzengels Michael und aller Engel
month: 9,
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-german-holidays",
"version": "0.1.10",
"version": "0.1.11",
"description": "NodeRED nodes to get german holidays",
"keywords": [
"node-red",
Expand Down

0 comments on commit 578f17d

Please sign in to comment.