Compare commits
No commits in common. "master" and "v1.6.0" have entirely different histories.
@ -1,11 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.6.1 - 2022-01-20 - Dispose bug in netcore
|
|
||||||
### New Features
|
|
||||||
### Bugfixes
|
|
||||||
* Remove Thread.Abort, cause it's not support in netcore
|
|
||||||
### Changes
|
|
||||||
|
|
||||||
## 1.6.0 - 2022-01-15 - Refactoring is the key
|
## 1.6.0 - 2022-01-15 - Refactoring is the key
|
||||||
### New Features
|
### New Features
|
||||||
* Using C# 9 Language features now
|
* Using C# 9 Language features now
|
||||||
|
@ -5,18 +5,17 @@
|
|||||||
<RootNamespace>BlubbFish.IoT.Zway</RootNamespace>
|
<RootNamespace>BlubbFish.IoT.Zway</RootNamespace>
|
||||||
<AssemblyName>Zway</AssemblyName>
|
<AssemblyName>Zway</AssemblyName>
|
||||||
<PackageId>Zway.IoT.BlubbFish</PackageId>
|
<PackageId>Zway.IoT.BlubbFish</PackageId>
|
||||||
<Version>1.6.1</Version>
|
<Version>1.6.0</Version>
|
||||||
<NeutralLanguage>de-DE</NeutralLanguage>
|
<NeutralLanguage>de-DE</NeutralLanguage>
|
||||||
<Description>Library that speaks with zwave module/server</Description>
|
<Description>Library that speaks with zwave module/server</Description>
|
||||||
<Authors>BlubbFish</Authors>
|
<Authors>BlubbFish</Authors>
|
||||||
<Company>BlubbFish</Company>
|
<Company>BlubbFish</Company>
|
||||||
<Copyright>Copyright © 2017 - 20.01.2022</Copyright>
|
<Copyright>Copyright © 2017 - 15.01.2022</Copyright>
|
||||||
<PackageLicenseFile>LICENCE</PackageLicenseFile>
|
<PackageLicenseFile>LICENCE</PackageLicenseFile>
|
||||||
<PackageProjectUrl>https://git.blubbfish.net/vs_projects/Zway</PackageProjectUrl>
|
<PackageProjectUrl>https://git.blubbfish.net/vs_projects/Zway</PackageProjectUrl>
|
||||||
<RepositoryUrl>https://git.blubbfish.net/vs_projects/Zway.git</RepositoryUrl>
|
<RepositoryUrl>https://git.blubbfish.net/vs_projects/Zway.git</RepositoryUrl>
|
||||||
<RepositoryType>git</RepositoryType>
|
<RepositoryType>git</RepositoryType>
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
1.6.1 - 2022-01-20 - Dispose bug in netcore
|
|
||||||
1.6.0 - 2022-01-15 - Refactoring is the key
|
1.6.0 - 2022-01-15 - Refactoring is the key
|
||||||
1.5.1 - 2018-10-29 - Tiny fix for nullpointer exception
|
1.5.1 - 2018-10-29 - Tiny fix for nullpointer exception
|
||||||
1.5.0 - 2018-09-29 - Throw Exception if 3 times failed to connect to Raspberry server, add 3 new commandlcasses to IgnoredClasses
|
1.5.0 - 2018-09-29 - Throw Exception if 3 times failed to connect to Raspberry server, add 3 new commandlcasses to IgnoredClasses
|
||||||
|
@ -53,6 +53,7 @@ namespace BlubbFish.IoT.Zway.lib.Zway {
|
|||||||
}
|
}
|
||||||
this.pollthread = null;
|
this.pollthread = null;
|
||||||
|
|
||||||
|
this.pollthread.Abort();
|
||||||
this.Devices = null;
|
this.Devices = null;
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
Loading…
Reference in New Issue
Block a user