1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-11-22 08:04:53 -05:00

Compare commits

..

3 Commits

Author SHA1 Message Date
7530bcf55c Updated Changelog 2021-12-11 07:59:50 -05:00
ab37a5e7a7
Merge pull request #79 from craigerl/fix_kiss_is_enabled
Fixed an KISS config disabled issue
2021-12-11 07:56:47 -05:00
3b9970c0e7 Fixed an KISS config disabled issue
This patch fixes a small bug when both KISS interfaces are disabled.
2021-12-11 07:46:43 -05:00
2 changed files with 12 additions and 0 deletions

View File

@ -1,6 +1,16 @@
CHANGES
=======
v2.5.7
------
* Fixed an KISS config disabled issue
* Fixed a bug with multiple notify plugins enabled
* Unify the logging to file and stdout
* Added new feature to list-plugins command
* more README.rst cleanup
* Updated README examples
v2.5.6
------

View File

@ -131,6 +131,8 @@ class KISSClient(Client):
if config.get("kiss.tcp.enabled", default=False):
return True
return False
@staticmethod
def transport(config):
if config.get("kiss.serial.enabled", default=False):