[1.8.1] New Default Configs
This commit is contained in:
parent
9c7d652fbb
commit
77dd5c32d3
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.8.1 - 2022-01-18 - New Default Configs
|
||||||
|
### New Features
|
||||||
|
* Bump Bot-Utils to ([v1.2.4](https://git.blubbfish.net/vs_utils/Bot-Utils/src/tag/v1.2.4)) and using the possibillity to enable via config if a module is loaded
|
||||||
|
### Bugfixes
|
||||||
|
* Buildscript not cleansup behind
|
||||||
|
### Changes
|
||||||
|
* New Sample Configs
|
||||||
|
* Codingstyles
|
||||||
|
* Add dependency to dotnet-runtime-3.1 (>= 3.1.22) in buildscript
|
||||||
|
|
||||||
## 1.8.0 - 2022-01-16 - Running again
|
## 1.8.0 - 2022-01-16 - Running again
|
||||||
### New Features
|
### New Features
|
||||||
* Change licence file (LGPL 4)
|
* Change licence file (LGPL 4)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
using BlubbFish.IoT.Zway;
|
using BlubbFish.IoT.Zway;
|
||||||
using BlubbFish.IoT.Zway.Interfaces;
|
using BlubbFish.IoT.Zway.Interfaces;
|
||||||
using BlubbFish.Utils;
|
using BlubbFish.Utils;
|
||||||
using BlubbFish.Utils.IoT.Bots;
|
|
||||||
using BlubbFish.Utils.IoT.Bots.Events;
|
using BlubbFish.Utils.IoT.Bots.Events;
|
||||||
using BlubbFish.Utils.IoT.Bots.Moduls;
|
using BlubbFish.Utils.IoT.Bots.Moduls;
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
using BlubbFish.IoT.Zway;
|
using BlubbFish.IoT.Zway;
|
||||||
using BlubbFish.IoT.Zway.Events;
|
using BlubbFish.IoT.Zway.Events;
|
||||||
using BlubbFish.IoT.Zway.Interfaces;
|
using BlubbFish.IoT.Zway.Interfaces;
|
||||||
using BlubbFish.Utils;
|
using BlubbFish.Utils;
|
||||||
using BlubbFish.Utils.IoT.Bots;
|
|
||||||
using BlubbFish.Utils.IoT.Bots.Events;
|
using BlubbFish.Utils.IoT.Bots.Events;
|
||||||
using BlubbFish.Utils.IoT.Bots.Moduls;
|
using BlubbFish.Utils.IoT.Bots.Moduls;
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
using BlubbFish.IoT.Zway;
|
using BlubbFish.IoT.Zway;
|
||||||
using BlubbFish.IoT.Zway.Devices;
|
using BlubbFish.IoT.Zway.Devices;
|
||||||
using BlubbFish.IoT.Zway.Interfaces;
|
using BlubbFish.IoT.Zway.Interfaces;
|
||||||
|
@ -6,17 +6,18 @@
|
|||||||
<RootNamespace>BlubbFish.IoT.Bots.ZwayBot.Program</RootNamespace>
|
<RootNamespace>BlubbFish.IoT.Bots.ZwayBot.Program</RootNamespace>
|
||||||
<AssemblyName>Zway-Bot</AssemblyName>
|
<AssemblyName>Zway-Bot</AssemblyName>
|
||||||
<PackageId>Program.ZwayBot.Bots.IoT.BlubbFish</PackageId>
|
<PackageId>Program.ZwayBot.Bots.IoT.BlubbFish</PackageId>
|
||||||
<Version>1.8.0</Version>
|
<Version>1.8.1</Version>
|
||||||
<NeutralLanguage>de-DE</NeutralLanguage>
|
<NeutralLanguage>de-DE</NeutralLanguage>
|
||||||
<Description>Is a Bot for Zwave Devices</Description>
|
<Description>Is a Bot for Zwave Devices</Description>
|
||||||
<Authors>BlubbFish</Authors>
|
<Authors>BlubbFish</Authors>
|
||||||
<Company>BlubbFish</Company>
|
<Company>BlubbFish</Company>
|
||||||
<Copyright>Copyright © BlubbFish 2017 - 16.01.2022</Copyright>
|
<Copyright>Copyright © BlubbFish 2017 - 18.01.2022</Copyright>
|
||||||
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
||||||
<PackageProjectUrl>https://git.blubbfish.net/vs_projects/Zway-Bot</PackageProjectUrl>
|
<PackageProjectUrl>https://git.blubbfish.net/vs_projects/Zway-Bot</PackageProjectUrl>
|
||||||
<RepositoryUrl>https://git.blubbfish.net/vs_projects/Zway-Bot.git</RepositoryUrl>
|
<RepositoryUrl>https://git.blubbfish.net/vs_projects/Zway-Bot.git</RepositoryUrl>
|
||||||
<RepositoryType>git</RepositoryType>
|
<RepositoryType>git</RepositoryType>
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
|
1.8.1 - 2022-01-18 - New Default Configs
|
||||||
1.8.0 - 2022-01-16 - Running again
|
1.8.0 - 2022-01-16 - Running again
|
||||||
1.7.3 - 2018-10-29 - Change dependencys
|
1.7.3 - 2018-10-29 - Change dependencys
|
||||||
1.7.2 - 2018-10-02 - Improve
|
1.7.2 - 2018-10-02 - Improve
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
[modul]
|
[modul]
|
||||||
|
enabled=true
|
||||||
config=public
|
config=public
|
||||||
|
|
||||||
[cold]
|
; [cold]
|
||||||
cron=0 23 * * 0-4
|
; cron=0 23 * * 0-4
|
||||||
set=7-0-67-2:Level-19;7-0-112-8:Level-2
|
; set=7-0-67-2:Level-19;7-0-112-8:Level-2
|
||||||
|
|
||||||
[hot]
|
; [hot]
|
||||||
cron=0 16 * * 1-5
|
; cron=0 16 * * 1-5
|
||||||
set=7-0-67-1:Level-22;7-0-112-8:Level-1
|
; set=7-0-67-1:Level-22;7-0-112-8:Level-1
|
@ -1,4 +1,5 @@
|
|||||||
[modul]
|
[modul]
|
||||||
|
enabled=false
|
||||||
config=private
|
config=private
|
||||||
|
|
||||||
[settings]
|
[settings]
|
||||||
|
@ -1,12 +1,16 @@
|
|||||||
[hot]
|
[modul]
|
||||||
from=7-0-67-1:Level
|
enabled=false
|
||||||
to=8-0-67-1:Level;9-0-67-1:Level
|
config=public
|
||||||
|
|
||||||
[cold]
|
; [hot]
|
||||||
from=7-0-67-2:Level
|
; from=7-0-67-1:Level
|
||||||
to=8-0-67-11:Level;9-0-67-11:Level
|
; to=8-0-67-1:Level;9-0-67-1:Level
|
||||||
|
|
||||||
[mode]
|
; [cold]
|
||||||
from=7-0-112-8:Level
|
; from=7-0-67-2:Level
|
||||||
to=8-0-64:Level;9-0-64:Level
|
; to=8-0-67-11:Level;9-0-67-11:Level
|
||||||
convert=1-1;2-11
|
|
||||||
|
; [mode]
|
||||||
|
; from=7-0-112-8:Level
|
||||||
|
; to=8-0-64:Level;9-0-64:Level
|
||||||
|
; convert=1-1;2-11
|
@ -1,4 +1,5 @@
|
|||||||
[modul]
|
[modul]
|
||||||
|
enabled=false
|
||||||
config=private
|
config=private
|
||||||
|
|
||||||
[settings]
|
[settings]
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
[temp]
|
[modul]
|
||||||
cron=30 * * * *
|
enabled=true
|
||||||
devices=7-0-49-1,8-0-49-1,9-0-49-1,10-0-49-1,11-0-49-1
|
config=public
|
||||||
|
|
||||||
|
; [temp]
|
||||||
|
; cron=30 * * * *
|
||||||
|
; devices=7-0-49-1,8-0-49-1,9-0-49-1,10-0-49-1,11-0-49-1
|
@ -12,6 +12,7 @@ export NAME=zwaybot
|
|||||||
export MAINAINER="BlubbFish <dev@blubbfish.net>"
|
export MAINAINER="BlubbFish <dev@blubbfish.net>"
|
||||||
export VERSION="$VMAJOR.$VMINOR-$VBUILD"
|
export VERSION="$VMAJOR.$VMINOR-$VBUILD"
|
||||||
export DESCRIPTION="Zway-Bot manage a Zwave.me installation so that it has more features"
|
export DESCRIPTION="Zway-Bot manage a Zwave.me installation so that it has more features"
|
||||||
|
export DEPENDENCIES="dotnet-runtime-3.1 (>= 3.1.22)"
|
||||||
|
|
||||||
export EXEPATH=Zway-Bot.dll
|
export EXEPATH=Zway-Bot.dll
|
||||||
export EXEARGUMENTS=" "
|
export EXEARGUMENTS=" "
|
||||||
|
Loading…
Reference in New Issue
Block a user