mirror of
https://github.com/craigerl/aprsd.git
synced 2025-09-02 13:17:54 -04:00
Updated docs for 2.0.0
This commit is contained in:
parent
b606495fbf
commit
b4713b2694
24
ChangeLog
24
ChangeLog
@ -1,6 +1,30 @@
|
|||||||
CHANGES
|
CHANGES
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
v2.0.0
|
||||||
|
------
|
||||||
|
|
||||||
|
* Reworked the notification threads and admin ui
|
||||||
|
* Fixed small bug with packets get\_packet\_type
|
||||||
|
* Updated overview images
|
||||||
|
* Move version string output to top of log
|
||||||
|
* Add new watchlist feature
|
||||||
|
* Fixed the Ack thread not resending acks
|
||||||
|
* reworked the admin ui to use semenatic ui more
|
||||||
|
* Added messages count to admin messages list
|
||||||
|
* Add admin UI tabs for charts, messages, config
|
||||||
|
* Removed a noisy debug log
|
||||||
|
* Dump out the config during startup
|
||||||
|
* Added message counts for each plugin
|
||||||
|
* Bump urllib3 from 1.26.4 to 1.26.5
|
||||||
|
* Added aprsd version checking
|
||||||
|
* Updated INSTALL.txt
|
||||||
|
* Update my callsign
|
||||||
|
* Update README.rst
|
||||||
|
* Update README.rst
|
||||||
|
* Bump urllib3 from 1.26.3 to 1.26.4
|
||||||
|
* Prep for v1.6.1 release
|
||||||
|
|
||||||
v1.6.1
|
v1.6.1
|
||||||
------
|
------
|
||||||
|
|
||||||
|
@ -28,6 +28,14 @@ aprsd.plugins.location module
|
|||||||
:undoc-members:
|
:undoc-members:
|
||||||
:show-inheritance:
|
:show-inheritance:
|
||||||
|
|
||||||
|
aprsd.plugins.notify module
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
.. automodule:: aprsd.plugins.notify
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
|
|
||||||
aprsd.plugins.ping module
|
aprsd.plugins.ping module
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
|
@ -68,6 +68,14 @@ aprsd.healthcheck module
|
|||||||
:undoc-members:
|
:undoc-members:
|
||||||
:show-inheritance:
|
:show-inheritance:
|
||||||
|
|
||||||
|
aprsd.listen module
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
.. automodule:: aprsd.listen
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
|
|
||||||
aprsd.main module
|
aprsd.main module
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
@ -84,6 +92,14 @@ aprsd.messaging module
|
|||||||
:undoc-members:
|
:undoc-members:
|
||||||
:show-inheritance:
|
:show-inheritance:
|
||||||
|
|
||||||
|
aprsd.packets module
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
.. automodule:: aprsd.packets
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
|
|
||||||
aprsd.plugin module
|
aprsd.plugin module
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
@ -1,6 +1,30 @@
|
|||||||
CHANGES
|
CHANGES
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
v2.0.0
|
||||||
|
------
|
||||||
|
|
||||||
|
* Reworked the notification threads and admin ui
|
||||||
|
* Fixed small bug with packets get\_packet\_type
|
||||||
|
* Updated overview images
|
||||||
|
* Move version string output to top of log
|
||||||
|
* Add new watchlist feature
|
||||||
|
* Fixed the Ack thread not resending acks
|
||||||
|
* reworked the admin ui to use semenatic ui more
|
||||||
|
* Added messages count to admin messages list
|
||||||
|
* Add admin UI tabs for charts, messages, config
|
||||||
|
* Removed a noisy debug log
|
||||||
|
* Dump out the config during startup
|
||||||
|
* Added message counts for each plugin
|
||||||
|
* Bump urllib3 from 1.26.4 to 1.26.5
|
||||||
|
* Added aprsd version checking
|
||||||
|
* Updated INSTALL.txt
|
||||||
|
* Update my callsign
|
||||||
|
* Update README.rst
|
||||||
|
* Update README.rst
|
||||||
|
* Bump urllib3 from 1.26.3 to 1.26.4
|
||||||
|
* Prep for v1.6.1 release
|
||||||
|
|
||||||
v1.6.1
|
v1.6.1
|
||||||
------
|
------
|
||||||
|
|
||||||
|
@ -54,7 +54,9 @@ the weather. an APRS message is sent, and then picked up by APRSD. The
|
|||||||
APRS packet is decoded, and the message is sent through the list of plugins
|
APRS packet is decoded, and the message is sent through the list of plugins
|
||||||
for processing. For example, the WeatherPlugin picks up the message, fetches the weather
|
for processing. For example, the WeatherPlugin picks up the message, fetches the weather
|
||||||
for the area around the user who sent the request, and then responds with
|
for the area around the user who sent the request, and then responds with
|
||||||
the weather conditions in that area.
|
the weather conditions in that area. Also includes a watch list of HAM
|
||||||
|
callsigns to look out for. The watch list can notify you when a HAM callsign
|
||||||
|
in the list is seen and now available to message on the APRS network.
|
||||||
|
|
||||||
|
|
||||||
APRSD Capabilities
|
APRSD Capabilities
|
||||||
@ -82,6 +84,18 @@ If it matches, the plugin runs. IF the regex doesn't match, the plugin is skipp
|
|||||||
* VersionPlugin - Reports the version information for aprsd
|
* VersionPlugin - Reports the version information for aprsd
|
||||||
|
|
||||||
|
|
||||||
|
List of core notification plugins
|
||||||
|
=================================
|
||||||
|
|
||||||
|
These plugins see all APRS messages from ham callsigns in the config's watch
|
||||||
|
list.
|
||||||
|
|
||||||
|
* NotifySeenPlugin - Send a message when a message is seen from a callsign in
|
||||||
|
the watch list. This is helpful when you want to know
|
||||||
|
when a friend is online in the ARPS network, but haven't
|
||||||
|
been seen in a while.
|
||||||
|
|
||||||
|
|
||||||
Current messages this will respond to:
|
Current messages this will respond to:
|
||||||
======================================
|
======================================
|
||||||
|
|
||||||
@ -201,7 +215,6 @@ Output
|
|||||||
- aprsd.plugins.version.VersionPlugin
|
- aprsd.plugins.version.VersionPlugin
|
||||||
logfile: /tmp/aprsd.log
|
logfile: /tmp/aprsd.log
|
||||||
logformat: '[%(asctime)s] [%(threadName)-12s] [%(levelname)-5.5s] %(message)s - [%(pathname)s:%(lineno)d]'
|
logformat: '[%(asctime)s] [%(threadName)-12s] [%(levelname)-5.5s] %(message)s - [%(pathname)s:%(lineno)d]'
|
||||||
plugin_dir: ~/.config/aprsd/plugins
|
|
||||||
trace: false
|
trace: false
|
||||||
units: imperial
|
units: imperial
|
||||||
web:
|
web:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user