Skip to content

Commit 62f464c

Browse files
authored
Merge pull request #25 from walli545/dev
Release 1.1.0
2 parents f5c7fcc + 56c2544 commit 62f464c

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,18 @@ In the widget the schedule can be disabled temporarily and the switched state ca
4444

4545
- Translations for schedule widget
4646
- Astro actions (switch on sunrise, etc.)
47+
- Conditional actions
48+
- Switching for device groups
49+
- Switching of arbitrary values
4750

4851
## Changelog
4952

53+
### 1.1.0
54+
* (walli545)
55+
* New option to hide switched oid in widget (#20)
56+
* Fixed admin page not working on Firefox (#18)
57+
* Showing full schedule oid in admin page (e.g. time-switch.0.schedule0 instead of schedule0).
58+
5059
### 1.0.0
5160
* (walli545) initial release, features:
5261
* Admin settings to create schedules

io-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"common": {
33
"name": "time-switch",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"news": {
66
"1.0.0": {
77
"en": "initial release",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iobroker.time-switch",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Time based switching of devices",
55
"author": {
66
"name": "walli545",

widgets/time-switch.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!--
22
ioBroker.vis time-switch Widget-Set
33
4-
version: "1.0.0"
4+
version: "1.1.0"
55
66
Copyright 2019 walli545 walli5446@gmail.com
77
-->

widgets/time-switch/js/time-switch.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
ioBroker.vis time-switch Widget-Set
33
4-
version: "1.0.0"
4+
version: "1.1.0"
55
66
Copyright 2019 walli545 walli5446@gmail.com
77
*/
@@ -18,7 +18,7 @@ $.get('adapter/time-switch/words.js', function(script) {
1818

1919
// export vis binds for widget
2020
vis.binds['time-switch'] = {
21-
version: '1.0.0',
21+
version: '1.1.0',
2222
showVersion: showVersion,
2323
createWidget: createWidget,
2424
scheduleWidgets: [],

0 commit comments

Comments
 (0)