mirror of
https://github.com/craigerl/aprsd.git
synced 2026-08-18 17:44:02 -04:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ade3c49e93 | |||
| 6fb610582d | |||
| bda2ef00dd |
@@ -1,6 +1,26 @@
|
|||||||
CHANGES
|
CHANGES
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
v2.5.4
|
||||||
|
------
|
||||||
|
|
||||||
|
* Fixed dev command missing initialization
|
||||||
|
|
||||||
|
v2.5.3
|
||||||
|
------
|
||||||
|
|
||||||
|
* Fix admin logging tab
|
||||||
|
|
||||||
|
v2.5.2
|
||||||
|
------
|
||||||
|
|
||||||
|
* Added new list-plugins command
|
||||||
|
* Don't require check-version command to have a config
|
||||||
|
* Healthcheck command doesn't need the aprsd.yml config
|
||||||
|
* Fix test failures
|
||||||
|
* Removed requirement for aprs.fi key
|
||||||
|
* Updated Changelog
|
||||||
|
|
||||||
v2.5.1
|
v2.5.1
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|||||||
+5
-1
@@ -8,7 +8,7 @@ import logging
|
|||||||
import click
|
import click
|
||||||
|
|
||||||
# local imports here
|
# local imports here
|
||||||
from aprsd import cli_helper, client, plugin
|
from aprsd import cli_helper, client, messaging, packets, plugin, stats
|
||||||
|
|
||||||
from ..aprsd import cli
|
from ..aprsd import cli
|
||||||
|
|
||||||
@@ -80,6 +80,10 @@ def test_plugin(
|
|||||||
if type(message) is tuple:
|
if type(message) is tuple:
|
||||||
message = " ".join(message)
|
message = " ".join(message)
|
||||||
client.Client(config)
|
client.Client(config)
|
||||||
|
stats.APRSDStats(config)
|
||||||
|
messaging.MsgTrack(config=config)
|
||||||
|
packets.WatchList(config=config)
|
||||||
|
packets.SeenList(config=config)
|
||||||
|
|
||||||
pm = plugin.PluginManager(config)
|
pm = plugin.PluginManager(config)
|
||||||
if load_all:
|
if load_all:
|
||||||
|
|||||||
+2
-2
@@ -19,7 +19,7 @@ from werkzeug.security import check_password_hash, generate_password_hash
|
|||||||
import aprsd
|
import aprsd
|
||||||
from aprsd import client
|
from aprsd import client
|
||||||
from aprsd import config as aprsd_config
|
from aprsd import config as aprsd_config
|
||||||
from aprsd import messaging, packets, plugin, stats, threads, utils
|
from aprsd import log, messaging, packets, plugin, stats, threads, utils
|
||||||
from aprsd.clients import aprsis
|
from aprsd.clients import aprsis
|
||||||
|
|
||||||
|
|
||||||
@@ -500,7 +500,7 @@ class LogMonitorThread(threads.APRSDThread):
|
|||||||
def loop(self):
|
def loop(self):
|
||||||
global socketio
|
global socketio
|
||||||
try:
|
try:
|
||||||
record = threads.logging_queue.get(block=True, timeout=5)
|
record = log.logging_queue.get(block=True, timeout=5)
|
||||||
json_record = self.json_record(record)
|
json_record = self.json_record(record)
|
||||||
socketio.emit(
|
socketio.emit(
|
||||||
"log_entry", json_record,
|
"log_entry", json_record,
|
||||||
|
|||||||
Reference in New Issue
Block a user