aprsd 3.4.1__tar.gz → 3.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {aprsd-3.4.1 → aprsd-3.4.2}/ChangeLog.md +611 -595
- {aprsd-3.4.1 → aprsd-3.4.2}/Makefile +1 -1
- {aprsd-3.4.1 → aprsd-3.4.2}/PKG-INFO +27 -33
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/drivers/aprsis.py +5 -1
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cmds/listen.py +2 -1
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cmds/send_message.py +1 -4
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cmds/server.py +11 -16
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cmds/webchat.py +1 -8
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/conf/common.py +0 -1
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/conf/plugin_common.py +0 -9
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/main.py +1 -1
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/packets/__init__.py +8 -0
- aprsd-3.4.2/aprsd/packets/collector.py +79 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/packets/log.py +25 -7
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/packets/packet_list.py +1 -7
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/packets/seen_list.py +1 -6
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/packets/tracker.py +1 -7
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/packets/watch_list.py +1 -4
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugin.py +0 -1
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/stats/collector.py +6 -7
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/threads/keep_alive.py +8 -1
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/utils/__init__.py +55 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd.egg-info/PKG-INFO +27 -33
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd.egg-info/SOURCES.txt +0 -1
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd.egg-info/requires.txt +26 -32
- {aprsd-3.4.1 → aprsd-3.4.2}/docker/Dockerfile +4 -2
- {aprsd-3.4.1 → aprsd-3.4.2}/requirements-dev.txt +20 -20
- {aprsd-3.4.1 → aprsd-3.4.2}/requirements.in +1 -3
- {aprsd-3.4.1 → aprsd-3.4.2}/requirements.txt +7 -16
- aprsd-3.4.1/aprsd/messaging.py +0 -4
- aprsd-3.4.1/aprsd/packets/collector.py +0 -56
- {aprsd-3.4.1 → aprsd-3.4.2}/.coveragerc +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/.github/workflows/codeql.yml +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/.github/workflows/manual_build.yml +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/.github/workflows/master-build.yml +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/.github/workflows/python.yml +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/.github/workflows/release_build.yml +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/.pre-commit-config.yaml +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/.readthedocs.yaml +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/AUTHORS +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/INSTALL.txt +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/LICENSE +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/MANIFEST.in +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/README.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cli_helper.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/aprsis.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/base.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/drivers/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/drivers/fake.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/drivers/kiss.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/factory.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/fake.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/kiss.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/client/stats.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cmds/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cmds/completion.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cmds/dev.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cmds/fetch_stats.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cmds/healthcheck.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/cmds/list_plugins.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/conf/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/conf/client.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/conf/log.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/conf/opts.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/conf/plugin_email.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/exception.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/log/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/log/log.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/packets/core.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugin_utils.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugins/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugins/email.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugins/fortune.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugins/location.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugins/notify.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugins/ping.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugins/time.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugins/version.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/plugins/weather.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/stats/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/stats/app.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/threads/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/threads/aprsd.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/threads/log_monitor.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/threads/registry.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/threads/rx.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/threads/stats.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/threads/tx.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/utils/counter.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/utils/fuzzyclock.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/utils/json.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/utils/objectstore.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/utils/ring_buffer.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/utils/trace.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/css/index.css +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/css/prism.css +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/css/tabs.css +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/images/Untitled.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/images/aprs-symbols-16-0.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/images/aprs-symbols-16-1.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/images/aprs-symbols-64-0.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/images/aprs-symbols-64-1.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/images/aprs-symbols-64-2.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/js/charts.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/js/echarts.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/js/logs.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/js/main.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/js/prism.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/js/send-message.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/static/js/tabs.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/admin/templates/index.html +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/chat.css +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/index.css +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/style.css.map +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/tabs.css +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/bootstrap.min.css +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/font.woff2 +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/google-fonts.css +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/jquery-ui.css +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/jquery.toast.css +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff2 +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff2 +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff2 +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff2 +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/images/Untitled.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/images/aprs-symbols-16-0.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/images/aprs-symbols-16-1.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/images/aprs-symbols-64-0.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/images/aprs-symbols-64-1.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/images/aprs-symbols-64-2.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/images/globe.svg +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/js/gps.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/js/main.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/js/send-message.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/js/tabs.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/bootstrap.bundle.min.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/jquery-3.7.1.min.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/jquery-ui.min.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/jquery.toast.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/semantic.min.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/socket.io.min.js +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/web/chat/templates/index.html +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd/wsgi.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd-lnav.json +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd.egg-info/dependency_links.txt +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd.egg-info/entry_points.txt +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/aprsd.egg-info/top_level.txt +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docker/bin/admin.sh +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docker/bin/listen.sh +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docker/bin/run.sh +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docker/bin/setup.sh +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docker/build.sh +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docker/docker-compose.yml +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/_static/.keep +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/_static/aprsd_overview.png +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/_static/aprsd_overview.svg +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/_templates/.keep +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.client.drivers.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.client.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.cmds.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.conf.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.log.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.packets.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.plugins.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.stats.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.threads.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.utils.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.web.admin.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/aprsd.web.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/apidoc/modules.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/aprsd.drawio +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/changelog.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/clean_docs.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/conf.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/configure.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/index.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/install.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/links.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/plugin.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/readme.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/docs/server.rst +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/examples/plugins/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/examples/plugins/example_plugin.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/gray.conf +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/pyproject.toml +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/requirements-dev.in +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/setup.cfg +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/setup.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/cmds/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/cmds/test_send_message.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/cmds/test_webchat.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/fake.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/plugins/__init__.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/plugins/test_fortune.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/plugins/test_location.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/plugins/test_notify.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/plugins/test_ping.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/plugins/test_time.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/plugins/test_version.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/plugins/test_weather.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/test_email.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/test_main.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/test_packets.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tests/test_plugin.py +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tools/fast8.sh +0 -0
- {aprsd-3.4.1 → aprsd-3.4.2}/tox.ini +0 -0
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
4
4
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
6
6
|
|
7
|
+
#### [v3.4.2](https://github.com/craigerl/aprsd/compare/v3.4.1...v3.4.2)
|
8
|
+
|
9
|
+
> 18 October 2024
|
10
|
+
|
11
|
+
- Removed remnants of QueryPlugin [`758007e`](https://github.com/craigerl/aprsd/commit/758007ea3ff809944f9ed4685c74e7eaff0f813b)
|
12
|
+
- Removed dumping of the stats on exit [`5314856`](https://github.com/craigerl/aprsd/commit/5314856101fbf9f306b112121706e7ac9513a0e4)
|
13
|
+
- Added color logging of thread names at keepalive [`5e9f92d`](https://github.com/craigerl/aprsd/commit/5e9f92dfa68a9a8841c4a10a1e8a68b3c3d9401d)
|
14
|
+
- Added packet log distance and new arrows [`3e9bf24`](https://github.com/craigerl/aprsd/commit/3e9bf2422acafe33e4bc3a3eb8d812cd81722ae2)
|
15
|
+
- Log closing client connection. [`9951b12`](https://github.com/craigerl/aprsd/commit/9951b12e2d0097975d7f482dbe818021f772fce1)
|
16
|
+
- Sort changelog commits by date [`a65262d`](https://github.com/craigerl/aprsd/commit/a65262d2ff68b5744e402d305656b00bb9950c90)
|
17
|
+
- Add final stages in Dockerfile [`8cdbf18`](https://github.com/craigerl/aprsd/commit/8cdbf18befd709a88100934cce953572b3a5f473)
|
18
|
+
- Collector cleanup [`765e02f`](https://github.com/craigerl/aprsd/commit/765e02f5b3237796936cb0378abd560ced906283)
|
19
|
+
- cleaned up some requirements [`c12c42b`](https://github.com/craigerl/aprsd/commit/c12c42b87605b97fa836a8b40713168602c89d50)
|
20
|
+
- Cleanup test failures [`14c0a69`](https://github.com/craigerl/aprsd/commit/14c0a699cb70be899d8dfdc11aa15d64bc49155c)
|
21
|
+
|
7
22
|
#### [v3.4.1](https://github.com/craigerl/aprsd/compare/v3.4.0...v3.4.1)
|
8
23
|
|
9
24
|
> 23 September 2024
|
@@ -15,29 +30,30 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
15
30
|
- Refactor Dockerfile [`#167`](https://github.com/craigerl/aprsd/pull/167)
|
16
31
|
- Bump requests from 2.31.0 to 2.32.0 [`#166`](https://github.com/craigerl/aprsd/pull/166)
|
17
32
|
- Bump jinja2 from 3.1.3 to 3.1.4 [`#163`](https://github.com/craigerl/aprsd/pull/163)
|
18
|
-
-
|
19
|
-
- Use auto-changelog to generate changelog [`673b34c`](https://github.com/craigerl/aprsd/commit/673b34c78ba38ce3ad22e2ba5ceb399af1f6c0f4)
|
33
|
+
- Put an upper bound on the QueueHandler queue [`93a9cce`](https://github.com/craigerl/aprsd/commit/93a9cce0c0d0d1d1195e591cbd7ab9583a33c0c9)
|
20
34
|
- Eliminate need for PBR [`f159741`](https://github.com/craigerl/aprsd/commit/f15974131c4b55f1c4c1085f4d78d6e179da7157)
|
21
|
-
-
|
35
|
+
- Use newer python -m build to build aprsd wheel [`2abf8bc`](https://github.com/craigerl/aprsd/commit/2abf8bc750542b07bbbbc96efa4613aeffc5db8a)
|
36
|
+
- updated requirements [`fa2d2d9`](https://github.com/craigerl/aprsd/commit/fa2d2d965d403c028fd81a15665fe1c42c950692)
|
22
37
|
- --- [`18fb2a9`](https://github.com/craigerl/aprsd/commit/18fb2a9e2b650c694651b3eef939ecd4ed24b300)
|
23
|
-
-
|
24
|
-
- Put an upper bound on the QueueHandler queue [`93a9cce`](https://github.com/craigerl/aprsd/commit/93a9cce0c0d0d1d1195e591cbd7ab9583a33c0c9)
|
38
|
+
- removed [`f7a9f7a`](https://github.com/craigerl/aprsd/commit/f7a9f7aaab5185c6aba8b3ff5ccd9b8ad549b225)
|
25
39
|
- Updated README [`8f1733e`](https://github.com/craigerl/aprsd/commit/8f1733e4939ef91dbef30e3271f2e803359f0214)
|
26
|
-
-
|
40
|
+
- Hack Dockerfile for admin fixes? [`f07ef71`](https://github.com/craigerl/aprsd/commit/f07ef71ce0849714b4d2a26b369720d6bf8ba851)
|
41
|
+
- update to pyproject [`4b26e2b`](https://github.com/craigerl/aprsd/commit/4b26e2b7f7e41d3a3d3850118a3c25a58af68be1)
|
42
|
+
- Fixed reference to ThirdPartyPacket [`ffa28fa`](https://github.com/craigerl/aprsd/commit/ffa28fa28adc60375ec0ca03f730fc321f09bfc6)
|
43
|
+
- Use auto-changelog to generate changelog [`673b34c`](https://github.com/craigerl/aprsd/commit/673b34c78ba38ce3ad22e2ba5ceb399af1f6c0f4)
|
44
|
+
- Renamed Changelog [`5ebbb52`](https://github.com/craigerl/aprsd/commit/5ebbb52a2c2a00ca9ae34a252699559f85b3e8c6)
|
27
45
|
- Updated Makefile to build Changelog [`3741555`](https://github.com/craigerl/aprsd/commit/37415557b5a38151a5de142c264a921f8d81ae5a)
|
28
|
-
-
|
29
|
-
- Build > python 3.10 [`e5662b9`](https://github.com/craigerl/aprsd/commit/e5662b95f8e498af3cfad60b64ae61d9e49726eb)
|
30
|
-
- Fixed pep8 with packet_list [`b172c6d`](https://github.com/craigerl/aprsd/commit/b172c6dbdeb460d480a0091a14002251ac6b0324)
|
46
|
+
- Update base docs [`92cb92f`](https://github.com/craigerl/aprsd/commit/92cb92f89cfb0fc5ea71b4e6344da6b0e3b8f7fe)
|
31
47
|
- added m2r package to dev requirements [`49e8a62`](https://github.com/craigerl/aprsd/commit/49e8a622a75fcac50f6e542ecdc611f29833d80b)
|
32
|
-
-
|
33
|
-
-
|
48
|
+
- Updated requirements [`9d3f45a`](https://github.com/craigerl/aprsd/commit/9d3f45ac3079a277cb7bd66544a753bc14915a02)
|
49
|
+
- Fixed pep8 with packet_list [`b172c6d`](https://github.com/craigerl/aprsd/commit/b172c6dbdeb460d480a0091a14002251ac6b0324)
|
50
|
+
- Rebuild ChangeLog [`af3d741`](https://github.com/craigerl/aprsd/commit/af3d74183315d3a616e14279672b884c0c1ec632)
|
34
51
|
- No limit on change log commits [`e3ab6e7`](https://github.com/craigerl/aprsd/commit/e3ab6e7f59fbab44a5c7266f63d3c1c662f98c6f)
|
35
|
-
-
|
36
|
-
-
|
37
|
-
-
|
52
|
+
- retagged v3.4.1 in prep for release [`a6f84e4`](https://github.com/craigerl/aprsd/commit/a6f84e42bc4f7ab02db784f8e5ca6e1560608363)
|
53
|
+
- Build > python 3.10 [`e5662b9`](https://github.com/craigerl/aprsd/commit/e5662b95f8e498af3cfad60b64ae61d9e49726eb)
|
54
|
+
- Update ChangeLog [`9b843ee`](https://github.com/craigerl/aprsd/commit/9b843eead9774ac5c456dc7834d921684d05fb6f)
|
38
55
|
- Removed invalid pyproject classifier [`a5dc322`](https://github.com/craigerl/aprsd/commit/a5dc322066f7f9e39cf911faee845861b8d34c47)
|
39
|
-
-
|
40
|
-
- Renamed Changelog [`5ebbb52`](https://github.com/craigerl/aprsd/commit/5ebbb52a2c2a00ca9ae34a252699559f85b3e8c6)
|
56
|
+
- Update Changelog [`a74a66d`](https://github.com/craigerl/aprsd/commit/a74a66d9c359d66566c3351699511dab75f8b61f)
|
41
57
|
|
42
58
|
#### [v3.4.0](https://github.com/craigerl/aprsd/compare/v3.3.4...v3.4.0)
|
43
59
|
|
@@ -47,108 +63,108 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
47
63
|
- Update client.py to add consumer in the API. [`#158`](https://github.com/craigerl/aprsd/pull/158)
|
48
64
|
- Packet updates [`#154`](https://github.com/craigerl/aprsd/pull/154)
|
49
65
|
- Bump black from 24.2.0 to 24.3.0 [`#155`](https://github.com/craigerl/aprsd/pull/155)
|
50
|
-
-
|
51
|
-
-
|
66
|
+
- Fixed access to conf.log in logging_setup [`c1acdc2`](https://github.com/craigerl/aprsd/commit/c1acdc2510c7b3999a9ea4c2bc878bc931c03d4e)
|
67
|
+
- Fixed call to setup_logging in uwsgi [`8797dfd`](https://github.com/craigerl/aprsd/commit/8797dfd072c596c933e4399aa369c5175327165c)
|
68
|
+
- replaced access to conf from uwsgi [`82b3761`](https://github.com/craigerl/aprsd/commit/82b3761628fc7f012f0ec851cc41ba564a7ca1c8)
|
69
|
+
- Update tox for mypy runs [`d0f53c5`](https://github.com/craigerl/aprsd/commit/d0f53c563f4186510bede7b81456c3cd6059069c)
|
70
|
+
- Start to add types [`12dab28`](https://github.com/craigerl/aprsd/commit/12dab284cb6aef896a8f885f5574ed5a8ac9a0b4)
|
71
|
+
- No need to synchronize on stats [`29b4b04`](https://github.com/craigerl/aprsd/commit/29b4b04eee071b0e65298759ad685275280d1256)
|
72
|
+
- Moved Threads list for mypy [`d80277c`](https://github.com/craigerl/aprsd/commit/d80277c9d8f882297ee35ffa0d1174150c290b1c)
|
73
|
+
- Added type setting on pluging.py for mypy [`9c77ca2`](https://github.com/craigerl/aprsd/commit/9c77ca26be8af072aa80236338450a1de26b6e09)
|
74
|
+
- small refactor of stats usage in version plugin [`90f212e`](https://github.com/craigerl/aprsd/commit/90f212e6dc15835d162d28d2deb579149202d525)
|
75
|
+
- removed print [`6f1d6b4`](https://github.com/craigerl/aprsd/commit/6f1d6b412209aea6bffad37083e4921dff9594f5)
|
52
76
|
- Refactored packets [`1477e61`](https://github.com/craigerl/aprsd/commit/1477e61b0fbcea4f7eda8faba7901517a89e1b0f)
|
53
|
-
-
|
54
|
-
- More packet cleanup and tests [`f53df24`](https://github.com/craigerl/aprsd/commit/f53df2498890c252fdc06e1973e060f1e7d1957a)
|
55
|
-
- Make all the Objectstore children use the same lock [`c206f52`](https://github.com/craigerl/aprsd/commit/c206f52a763a665c4b22aaaa4bf0234d0d998da7)
|
77
|
+
- Fixed some tox errors related to mypy [`00e185b`](https://github.com/craigerl/aprsd/commit/00e185b4e7ca5abed9f56282924e183b1201ea33)
|
56
78
|
- updated dev-requirements [`eada5e9`](https://github.com/craigerl/aprsd/commit/eada5e9ce25ea388913af699b3042b13156b91f3)
|
57
|
-
-
|
58
|
-
- Fixed pep8 errors and missing files [`a270c75`](https://github.com/craigerl/aprsd/commit/a270c75263aaf16bd066eded2454d71f28945a4c)
|
59
|
-
- Allow stats collector to serialize upon creation [`71d72ad`](https://github.com/craigerl/aprsd/commit/71d72adf065f1fb96d4e198612a98ae4322a3289)
|
79
|
+
- Fix for micE packet decoding with mbits [`386d2be`](https://github.com/craigerl/aprsd/commit/386d2bea6260e6b0ea63aec0b26151e2a9602984)
|
60
80
|
- Eliminated need for from_aprslib_dict [`e386e91`](https://github.com/craigerl/aprsd/commit/e386e91f6e58e63a405eb2365809501c52a05abd)
|
61
|
-
-
|
62
|
-
- Added
|
63
|
-
-
|
64
|
-
-
|
65
|
-
-
|
66
|
-
- Added threads chart to admin ui graphs [`f2d39e5`](https://github.com/craigerl/aprsd/commit/f2d39e5fd25489e3be46e9a31f373e533d70f6f1)
|
67
|
-
- Moved Threads list for mypy [`d80277c`](https://github.com/craigerl/aprsd/commit/d80277c9d8f882297ee35ffa0d1174150c290b1c)
|
68
|
-
- Update Dockerfiles [`f02db20`](https://github.com/craigerl/aprsd/commit/f02db20c3eecacbed79935d28eba3dbd0b6816a2)
|
69
|
-
- Added threads table in the admin web ui [`c6079f8`](https://github.com/craigerl/aprsd/commit/c6079f897d73a0c6c27940f5d16f9ff2f5927e58)
|
70
|
-
- Added PacketTrack to packet collector [`717db60`](https://github.com/craigerl/aprsd/commit/717db6083eb0fbd82c8cbff0d6cbd0cff9893136)
|
71
|
-
- Got unit tests working again [`f92b2ee`](https://github.com/craigerl/aprsd/commit/f92b2ee3646fe2f2c2ec5decfb98ff391faf092f)
|
72
|
-
- Changed Stats Collector registration [`dc4879a`](https://github.com/craigerl/aprsd/commit/dc4879a367dd43720d21a2b8cbe65a0568ae0a6e)
|
73
|
-
- Added new config optons for PacketList [`8392d6b`](https://github.com/craigerl/aprsd/commit/8392d6b8efec4aeb3c87edf381c672440ee2cf07)
|
81
|
+
- Don't call stats so often in webchat [`9858955`](https://github.com/craigerl/aprsd/commit/9858955d34b88003285c4c588eacb32ca3a4ce67)
|
82
|
+
- Added missing packet types in listen command [`f450238`](https://github.com/craigerl/aprsd/commit/f450238348e6869f5ec04d247d6825f719582a5f)
|
83
|
+
- Fixed some logging in webchat [`127d3b3`](https://github.com/craigerl/aprsd/commit/127d3b3f267b9f547a1c593ecbdbaf510d633fd5)
|
84
|
+
- Completely redo logging of packets!! [`1e6c483`](https://github.com/craigerl/aprsd/commit/1e6c483002be894c8862dd218b7ab7a52b65d2ef)
|
85
|
+
- Fix some pep8 issues [`b461231`](https://github.com/craigerl/aprsd/commit/b461231c008127ede1e4fcbc24067bfd283bef4c)
|
74
86
|
- Added new webchat config option for logging [`9e26df2`](https://github.com/craigerl/aprsd/commit/9e26df26d6da1298cc3dfaead7579cb19854448c)
|
75
|
-
- Fixed PacketList maxlen [`5ff62c9`](https://github.com/craigerl/aprsd/commit/5ff62c9bdfc67a0ffac72aa8ff90cf774800b6eb)
|
76
87
|
- Some packet cleanup [`da7b712`](https://github.com/craigerl/aprsd/commit/da7b7124d7982e8d24a8e7b22bd8276f679dffe4)
|
77
|
-
-
|
78
|
-
-
|
79
|
-
-
|
80
|
-
- Added fox for entry_points with old python [`09b9708`](https://github.com/craigerl/aprsd/commit/09b97086bc6e6b789c69bb9446cf370a38f437fa)
|
81
|
-
- Fixed some tox errors related to mypy [`00e185b`](https://github.com/craigerl/aprsd/commit/00e185b4e7ca5abed9f56282924e183b1201ea33)
|
82
|
-
- Added missing packet types in listen command [`f450238`](https://github.com/craigerl/aprsd/commit/f450238348e6869f5ec04d247d6825f719582a5f)
|
83
|
-
- Added config for enable_seen_list [`c43652d`](https://github.com/craigerl/aprsd/commit/c43652dbea3c55243b1457ce3abba235d50fcea1)
|
84
|
-
- Added default_packet_send_count config [`813bc7e`](https://github.com/craigerl/aprsd/commit/813bc7ea29f3a73133f467c86faf884c2c4169d4)
|
85
|
-
- Fixed issues with watch list at startup [`e2e5853`](https://github.com/craigerl/aprsd/commit/e2e58530b26bb603875d311dea73428c434f1e24)
|
86
|
-
- Added PacketList.set_maxlen() [`4542c0a`](https://github.com/craigerl/aprsd/commit/4542c0a643618940ea15468619cec7737c50d309)
|
87
|
-
- Delete more stats from webchat [`fcc02f2`](https://github.com/craigerl/aprsd/commit/fcc02f29af1f649f45c16a0dbd08a51cddf94486)
|
88
|
-
- update requirements [`8f588e6`](https://github.com/craigerl/aprsd/commit/8f588e653dc59511ce42c683fa967c8691e0d523)
|
89
|
-
- Fix for micE packet decoding with mbits [`386d2be`](https://github.com/craigerl/aprsd/commit/386d2bea6260e6b0ea63aec0b26151e2a9602984)
|
90
|
-
- Added type setting on pluging.py for mypy [`9c77ca2`](https://github.com/craigerl/aprsd/commit/9c77ca26be8af072aa80236338450a1de26b6e09)
|
91
|
-
- Webchat Send Beacon uses Path selected in UI [`4c7e27c`](https://github.com/craigerl/aprsd/commit/4c7e27c88bbac8e8b471685ac07cc85e802816b2)
|
92
|
-
- Added support for RX replyacks [`8d86764`](https://github.com/craigerl/aprsd/commit/8d86764c234cbd5f9d39d3100d5acd1b9442c49a)
|
93
|
-
- removed Packet.last_send_attempt and just use send_count [`758ea43`](https://github.com/craigerl/aprsd/commit/758ea432ed75e2e211f38b3bd74eae90708af68f)
|
94
|
-
- syncronize the add for StatsStore [`026dc6e`](https://github.com/craigerl/aprsd/commit/026dc6e3761019308dd609a8d0e610c13425bfca)
|
95
|
-
- Call packet collecter after prepare during tx. [`bef3205`](https://github.com/craigerl/aprsd/commit/bef32059f4e5443cec80dbcf4d63fe7b3c89afe8)
|
96
|
-
- Added new default_ack_send_count config option [`40c028c`](https://github.com/craigerl/aprsd/commit/40c028c84411680df80a4d8782342e02aa865ff5)
|
97
|
-
- Fix time plugin [`94f36e0`](https://github.com/craigerl/aprsd/commit/94f36e0aadcd6c85f3dce0f9b58f4dc35fb3b76c)
|
98
|
-
- Fix some issues with listen command [`8728926`](https://github.com/craigerl/aprsd/commit/8728926bf4163dc7919d7e42772fe7da93f4a89b)
|
88
|
+
- Added new config option log_packet_format [`c581dc5`](https://github.com/craigerl/aprsd/commit/c581dc5020b140955e005cea41eb094f85c1d250)
|
89
|
+
- Show comment in multiline packet output [`f4356e4`](https://github.com/craigerl/aprsd/commit/f4356e4a2075c2d2d5342024848ef739840f5309)
|
90
|
+
- More packet cleanup and tests [`f53df24`](https://github.com/craigerl/aprsd/commit/f53df2498890c252fdc06e1973e060f1e7d1957a)
|
99
91
|
- added packet counter random int [`873fc06`](https://github.com/craigerl/aprsd/commit/873fc066080cb588658e56574100dd5200e1edbc)
|
100
|
-
- Fix some pep8 issues [`b461231`](https://github.com/craigerl/aprsd/commit/b461231c008127ede1e4fcbc24067bfd283bef4c)
|
101
|
-
- Fixed call to setup_logging in uwsgi [`8797dfd`](https://github.com/craigerl/aprsd/commit/8797dfd072c596c933e4399aa369c5175327165c)
|
102
|
-
- Added config enable_packet_logging [`63f3de4`](https://github.com/craigerl/aprsd/commit/63f3de47b7f69956527ca07bb3972a2c9fc103b3)
|
103
|
-
- Admin interface catch empty stats [`2c5bc6c`](https://github.com/craigerl/aprsd/commit/2c5bc6c1f70fdf7bfd166b42f0d6554f4fcfcf28)
|
104
92
|
- Fix for filtering curse words [`f400c60`](https://github.com/craigerl/aprsd/commit/f400c6004e74b71a482429fc56d7595796fb5748)
|
105
|
-
-
|
106
|
-
- Lock on stats for PacketList [`f59b65d`](https://github.com/craigerl/aprsd/commit/f59b65d13c77f98209972c839292e4300df7e889)
|
107
|
-
- Lock around client reset [`50e491b`](https://github.com/craigerl/aprsd/commit/50e491bab43ca4c6fa11165c3348f97cc482c17e)
|
93
|
+
- Change debug log color [`c062359`](https://github.com/craigerl/aprsd/commit/c0623596cd2253e4f9bc6e0d20dd524bde2bc948)
|
108
94
|
- Put packet.json back in [`0321cb6`](https://github.com/craigerl/aprsd/commit/0321cb6cf10e7194eddd8c44c3ddce254de6b504)
|
109
|
-
-
|
110
|
-
- Fix access to PacketList._maxlen [`1c9f25a`](https://github.com/craigerl/aprsd/commit/1c9f25a3b3043352909504e62fe70f13ea439107)
|
95
|
+
- update requirements [`8f588e6`](https://github.com/craigerl/aprsd/commit/8f588e653dc59511ce42c683fa967c8691e0d523)
|
111
96
|
- Fix for sample-config warning [`428edac`](https://github.com/craigerl/aprsd/commit/428edaced96165bf559debcb3e944d66f1f54e8b)
|
97
|
+
- Fixed pep8 errors and missing files [`a270c75`](https://github.com/craigerl/aprsd/commit/a270c75263aaf16bd066eded2454d71f28945a4c)
|
98
|
+
- Got unit tests working again [`f92b2ee`](https://github.com/craigerl/aprsd/commit/f92b2ee3646fe2f2c2ec5decfb98ff391faf092f)
|
112
99
|
- Fixed access to log_monitor [`01cd0a0`](https://github.com/craigerl/aprsd/commit/01cd0a03270cd6d85187190da80aa2053ee7ea6f)
|
113
|
-
- Fixed
|
114
|
-
-
|
115
|
-
-
|
116
|
-
-
|
117
|
-
-
|
100
|
+
- Fixed issues with watch list at startup [`e2e5853`](https://github.com/craigerl/aprsd/commit/e2e58530b26bb603875d311dea73428c434f1e24)
|
101
|
+
- Allow stats collector to serialize upon creation [`71d72ad`](https://github.com/craigerl/aprsd/commit/71d72adf065f1fb96d4e198612a98ae4322a3289)
|
102
|
+
- Lock around client reset [`50e491b`](https://github.com/craigerl/aprsd/commit/50e491bab43ca4c6fa11165c3348f97cc482c17e)
|
103
|
+
- Remove the logging of the conf password if not set [`a8d56a9`](https://github.com/craigerl/aprsd/commit/a8d56a99670097653c78c642761f8adcc941a7c1)
|
104
|
+
- Removed RPC Server and client. [`333feee`](https://github.com/craigerl/aprsd/commit/333feee80501198df2eeffa2f40bcf10df7ccb0f)
|
105
|
+
- Admin UI working again [`0ca9072`](https://github.com/craigerl/aprsd/commit/0ca9072c97978fb298fc94ef974726852dfb9eb5)
|
106
|
+
- Delete more stats from webchat [`fcc02f2`](https://github.com/craigerl/aprsd/commit/fcc02f29af1f649f45c16a0dbd08a51cddf94486)
|
107
|
+
- Remove rpyc as a requirement [`7114269`](https://github.com/craigerl/aprsd/commit/7114269ceecc088db00a7a703c69b74a2404c295)
|
108
|
+
- Removed json-viewer [`bc3bdc4`](https://github.com/craigerl/aprsd/commit/bc3bdc48d2b647a5d18ecc26c769b2bec0b406cf)
|
109
|
+
- Updated prism to 1.29 [`db2fbce`](https://github.com/craigerl/aprsd/commit/db2fbce079bfdd3a9db240f85dfac0cd7a344fc8)
|
110
|
+
- changed admin web_ip to StrOpt [`6845d26`](https://github.com/craigerl/aprsd/commit/6845d266f29b50f36f32002cfa8b73634c30a5b4)
|
118
111
|
- LOG failed requests post to admin ui [`da882b4`](https://github.com/craigerl/aprsd/commit/da882b4f9b337b11bd48b74bf21b4a25693a8ddc)
|
119
|
-
-
|
120
|
-
-
|
121
|
-
-
|
112
|
+
- Ensure latest pip is in docker image [`a839dbd`](https://github.com/craigerl/aprsd/commit/a839dbd3c54fcd836d091ab0b8056de5f6025ebd)
|
113
|
+
- Ensure StatsStore has empty data [`80705cb`](https://github.com/craigerl/aprsd/commit/80705cb341c532bfeb9010ea0e9d93aaa66485c0)
|
114
|
+
- Admin interface catch empty stats [`2c5bc6c`](https://github.com/craigerl/aprsd/commit/2c5bc6c1f70fdf7bfd166b42f0d6554f4fcfcf28)
|
115
|
+
- Fix some issues with listen command [`8728926`](https://github.com/craigerl/aprsd/commit/8728926bf4163dc7919d7e42772fe7da93f4a89b)
|
116
|
+
- Fixed scrolling problem with new webchat sent msg [`2e9cf3c`](https://github.com/craigerl/aprsd/commit/2e9cf3ce8813c7ba7eec82f58561275fbaaddc39)
|
117
|
+
- Added human_info property to MessagePackets [`8f6f800`](https://github.com/craigerl/aprsd/commit/8f6f8007f4a9634b6163a66be135650876fccf0b)
|
118
|
+
- Get rid of some useless warning logs [`b388989`](https://github.com/craigerl/aprsd/commit/b3889896b9cc229dadd2baabeb1d3fdb0df8e470)
|
119
|
+
- Update webchat, include GATE route along with WIDE, ARISS, etc [`aa6e732`](https://github.com/craigerl/aprsd/commit/aa6e7329358247b504c49c0767cd4226638dc8b6)
|
120
|
+
- add GATE route to webchat along with WIDE1, etc [`886ad9b`](https://github.com/craigerl/aprsd/commit/886ad9be0976dbb6af135b8eaf62a8206fef216d)
|
121
|
+
- Fix time plugin [`94f36e0`](https://github.com/craigerl/aprsd/commit/94f36e0aadcd6c85f3dce0f9b58f4dc35fb3b76c)
|
122
|
+
- Fix issue not tracking RX Ack packets for stats [`3bef131`](https://github.com/craigerl/aprsd/commit/3bef1314f87d11910d94a2be0b28ebc7f4939615)
|
123
|
+
- Another fix for ACK packets [`f34120c`](https://github.com/craigerl/aprsd/commit/f34120c2df11b9facc2c5b8378f08fe000f1c7e3)
|
122
124
|
- Fixed a problem with the webchat tab notification [`5fa4eaf`](https://github.com/craigerl/aprsd/commit/5fa4eaf909b4ef5343d8b1a2284a725cbb6798d2)
|
123
|
-
-
|
124
|
-
-
|
125
|
-
-
|
126
|
-
-
|
127
|
-
- Fixed issue with APRSDThreadList stats() [`66e4850`](https://github.com/craigerl/aprsd/commit/66e48503537cbe17c9e24794963fc90d4235e4b3)
|
125
|
+
- Fixed PacketList maxlen [`5ff62c9`](https://github.com/craigerl/aprsd/commit/5ff62c9bdfc67a0ffac72aa8ff90cf774800b6eb)
|
126
|
+
- Lock on stats for PacketList [`f59b65d`](https://github.com/craigerl/aprsd/commit/f59b65d13c77f98209972c839292e4300df7e889)
|
127
|
+
- syncronize the add for StatsStore [`026dc6e`](https://github.com/craigerl/aprsd/commit/026dc6e3761019308dd609a8d0e610c13425bfca)
|
128
|
+
- Limit packets to 50 in PacketList [`f682890`](https://github.com/craigerl/aprsd/commit/f682890ef02fc5f4754c303b32fa04f1f656d3c9)
|
128
129
|
- Remove packet from tracker after max attempts [`4c2a40b`](https://github.com/craigerl/aprsd/commit/4c2a40b7a7acc1a3f75a8086dd82964285890012)
|
129
|
-
-
|
130
|
-
-
|
131
|
-
-
|
132
|
-
- Remove error logs from watch list [`27359d6`](https://github.com/craigerl/aprsd/commit/27359d61aade368cea49dcf255dd7a60968bfd9e)
|
133
|
-
- Fixed Keepalive access to email stats [`cb0cfee`](https://github.com/craigerl/aprsd/commit/cb0cfeea0bedba8512b9da0629d0e4394c08e193)
|
134
|
-
- force uwsgi to 2.0.24 [`c2f8af0`](https://github.com/craigerl/aprsd/commit/c2f8af06bc4687aa6a24e0d67e4f5f852b720bcd)
|
135
|
-
- ismall update [`5b2a59f`](https://github.com/craigerl/aprsd/commit/5b2a59fae39eae4f3990be2d3d1a773da6d0e72c)
|
136
|
-
- set packetlist max back to 100 [`3bd7add`](https://github.com/craigerl/aprsd/commit/3bd7adda447440867e85c1a6d0357e736948d934)
|
130
|
+
- Added new default_ack_send_count config option [`40c028c`](https://github.com/craigerl/aprsd/commit/40c028c84411680df80a4d8782342e02aa865ff5)
|
131
|
+
- Fixed issue with APRSDThreadList stats() [`66e4850`](https://github.com/craigerl/aprsd/commit/66e48503537cbe17c9e24794963fc90d4235e4b3)
|
132
|
+
- Added threads table in the admin web ui [`c6079f8`](https://github.com/craigerl/aprsd/commit/c6079f897d73a0c6c27940f5d16f9ff2f5927e58)
|
137
133
|
- ensure thread count is updated [`91ba6d1`](https://github.com/craigerl/aprsd/commit/91ba6d10ceef699c811e0e1caa408b62394ed6f8)
|
138
|
-
-
|
139
|
-
-
|
140
|
-
-
|
141
|
-
-
|
142
|
-
-
|
143
|
-
-
|
144
|
-
- Update tox for mypy runs [`d0f53c5`](https://github.com/craigerl/aprsd/commit/d0f53c563f4186510bede7b81456c3cd6059069c)
|
134
|
+
- set packetlist max back to 100 [`3bd7add`](https://github.com/craigerl/aprsd/commit/3bd7adda447440867e85c1a6d0357e736948d934)
|
135
|
+
- Added threads chart to admin ui graphs [`f2d39e5`](https://github.com/craigerl/aprsd/commit/f2d39e5fd25489e3be46e9a31f373e533d70f6f1)
|
136
|
+
- Update requirements [`1a7694e`](https://github.com/craigerl/aprsd/commit/1a7694e7e2b16e58716fd4ad43fc9ffe07793337)
|
137
|
+
- Added new config optons for PacketList [`8392d6b`](https://github.com/craigerl/aprsd/commit/8392d6b8efec4aeb3c87edf381c672440ee2cf07)
|
138
|
+
- ismall update [`5b2a59f`](https://github.com/craigerl/aprsd/commit/5b2a59fae39eae4f3990be2d3d1a773da6d0e72c)
|
139
|
+
- force uwsgi to 2.0.24 [`c2f8af0`](https://github.com/craigerl/aprsd/commit/c2f8af06bc4687aa6a24e0d67e4f5f852b720bcd)
|
145
140
|
- added packet_count in packet_list stats [`7c93534`](https://github.com/craigerl/aprsd/commit/7c935345e50678265be4345984a8749cf12259b1)
|
146
|
-
-
|
147
|
-
-
|
148
|
-
-
|
149
|
-
-
|
150
|
-
-
|
151
|
-
-
|
141
|
+
- Fix access to PacketList._maxlen [`1c9f25a`](https://github.com/craigerl/aprsd/commit/1c9f25a3b3043352909504e62fe70f13ea439107)
|
142
|
+
- removed Packet.last_send_attempt and just use send_count [`758ea43`](https://github.com/craigerl/aprsd/commit/758ea432ed75e2e211f38b3bd74eae90708af68f)
|
143
|
+
- another fix for tx send [`3e87163`](https://github.com/craigerl/aprsd/commit/3e8716365ecd2553e6ad3d1d057947a032fdb0bc)
|
144
|
+
- Added PacketList.set_maxlen() [`4542c0a`](https://github.com/craigerl/aprsd/commit/4542c0a643618940ea15468619cec7737c50d309)
|
145
|
+
- Changed Stats Collector registration [`dc4879a`](https://github.com/craigerl/aprsd/commit/dc4879a367dd43720d21a2b8cbe65a0568ae0a6e)
|
146
|
+
- Added support for RX replyacks [`8d86764`](https://github.com/craigerl/aprsd/commit/8d86764c234cbd5f9d39d3100d5acd1b9442c49a)
|
147
|
+
- Fixed Keepalive access to email stats [`cb0cfee`](https://github.com/craigerl/aprsd/commit/cb0cfeea0bedba8512b9da0629d0e4394c08e193)
|
148
|
+
- Added new PacketCollector [`a656d93`](https://github.com/craigerl/aprsd/commit/a656d9326333c79482d0797f676a6e865d49541c)
|
149
|
+
- Fixed issue with PacketList being empty [`7541f13`](https://github.com/craigerl/aprsd/commit/7541f131745203e3d590027bc206107210e0d99e)
|
150
|
+
- Remove error logs from watch list [`27359d6`](https://github.com/craigerl/aprsd/commit/27359d61aade368cea49dcf255dd7a60968bfd9e)
|
151
|
+
- Added try except blocks in collectors [`88d2624`](https://github.com/craigerl/aprsd/commit/88d26241f5f3685e011b710bcc40bb2e609a32bb)
|
152
|
+
- Webchat Send Beacon uses Path selected in UI [`4c7e27c`](https://github.com/craigerl/aprsd/commit/4c7e27c88bbac8e8b471685ac07cc85e802816b2)
|
153
|
+
- Added PacketTrack to packet collector [`717db60`](https://github.com/craigerl/aprsd/commit/717db6083eb0fbd82c8cbff0d6cbd0cff9893136)
|
154
|
+
- Call packet collecter after prepare during tx. [`bef3205`](https://github.com/craigerl/aprsd/commit/bef32059f4e5443cec80dbcf4d63fe7b3c89afe8)
|
155
|
+
- Added default_packet_send_count config [`813bc7e`](https://github.com/craigerl/aprsd/commit/813bc7ea29f3a73133f467c86faf884c2c4169d4)
|
156
|
+
- Fix APRSDStats start_time [`29d97d9`](https://github.com/craigerl/aprsd/commit/29d97d9f0cdf33ffe454ff4722b531afc5dc6145)
|
157
|
+
- Added config for enable_seen_list [`c43652d`](https://github.com/craigerl/aprsd/commit/c43652dbea3c55243b1457ce3abba235d50fcea1)
|
158
|
+
- Added fox for entry_points with old python [`09b9708`](https://github.com/craigerl/aprsd/commit/09b97086bc6e6b789c69bb9446cf370a38f437fa)
|
159
|
+
- Update Dockerfiles [`f02db20`](https://github.com/craigerl/aprsd/commit/f02db20c3eecacbed79935d28eba3dbd0b6816a2)
|
160
|
+
- Removed the requirement on click-completion [`992485e`](https://github.com/craigerl/aprsd/commit/992485e9c7d86fca71fb9bee4dfb1434b04c403d)
|
161
|
+
- Fixed PacketTrack with UnknownPacket [`2b2bf6c`](https://github.com/craigerl/aprsd/commit/2b2bf6c92dc8d8c3cb921768088ecb94753adf87)
|
162
|
+
- Make all the Objectstore children use the same lock [`c206f52`](https://github.com/craigerl/aprsd/commit/c206f52a763a665c4b22aaaa4bf0234d0d998da7)
|
163
|
+
- Added config enable_packet_logging [`63f3de4`](https://github.com/craigerl/aprsd/commit/63f3de47b7f69956527ca07bb3972a2c9fc103b3)
|
164
|
+
- Fixed unit tests failing with WatchList [`c4b17ee`](https://github.com/craigerl/aprsd/commit/c4b17eee9d9f75d3ed31e025c68ba7b4290f20ca)
|
165
|
+
- Fixed docker setup.sh comparison [`a5680a7`](https://github.com/craigerl/aprsd/commit/a5680a7cbb121d59f776b986d58e82adbfa33dab)
|
166
|
+
- Change setup.h [`fc9ab4a`](https://github.com/craigerl/aprsd/commit/fc9ab4aa74d077b9875ba51d5244d09b5e6fc464)
|
167
|
+
- Updated Changelog for 3.4.0 [`cb2a344`](https://github.com/craigerl/aprsd/commit/cb2a3441b4dac0f4a6e6c58805f5deb0e3fcb7c6)
|
152
168
|
|
153
169
|
#### [v3.3.4](https://github.com/craigerl/aprsd/compare/v3.3.3...v3.3.4)
|
154
170
|
|
@@ -167,17 +183,17 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
167
183
|
|
168
184
|
> 13 March 2024
|
169
185
|
|
170
|
-
- Changelog for 3.3.2 [`71cd7e0`](https://github.com/craigerl/aprsd/commit/71cd7e0ab5fcb73c4b9302a7d0378719981244a1)
|
171
186
|
- Removed print in utils [`f810c02`](https://github.com/craigerl/aprsd/commit/f810c02d5d75b8fad03ba5065b0950d3133de86b)
|
172
187
|
- Remove warning during sample-config [`d485f48`](https://github.com/craigerl/aprsd/commit/d485f484ecb4e6d026e9d5a36adbf1b8c77b6044)
|
188
|
+
- Changelog for 3.3.2 [`71cd7e0`](https://github.com/craigerl/aprsd/commit/71cd7e0ab5fcb73c4b9302a7d0378719981244a1)
|
173
189
|
|
174
190
|
#### [v3.3.1](https://github.com/craigerl/aprsd/compare/v3.3.0...v3.3.1)
|
175
191
|
|
176
192
|
> 12 March 2024
|
177
193
|
|
178
194
|
- Fixed problem with list-plugins [`cb9456b`](https://github.com/craigerl/aprsd/commit/cb9456b29d68ec4b64377c457214d55803242b70)
|
179
|
-
- Updates for 3.3.1 [`50e24ab`](https://github.com/craigerl/aprsd/commit/50e24abb81dd36c604c5109c5ec95f4d5fa8c52e)
|
180
195
|
- Fixed failure with fetch-stats [`10d023d`](https://github.com/craigerl/aprsd/commit/10d023dd7bbc6da252fa02ef452fc4142d313bed)
|
196
|
+
- Updates for 3.3.1 [`50e24ab`](https://github.com/craigerl/aprsd/commit/50e24abb81dd36c604c5109c5ec95f4d5fa8c52e)
|
181
197
|
|
182
198
|
#### [v3.3.0](https://github.com/craigerl/aprsd/compare/v3.2.3...v3.3.0)
|
183
199
|
|
@@ -185,60 +201,60 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
185
201
|
|
186
202
|
- Replace slow rich logging with loguru [`#147`](https://github.com/craigerl/aprsd/pull/147)
|
187
203
|
- Added location for callsign tabs in webchat [`#146`](https://github.com/craigerl/aprsd/pull/146)
|
188
|
-
-
|
189
|
-
- Added list-extensions and updated README.rst [`ff051bc`](https://github.com/craigerl/aprsd/commit/ff051bc2859223a2979c1e050b8aae7fc947b6de)
|
204
|
+
- Update for v3.2.3 [`8bceb82`](https://github.com/craigerl/aprsd/commit/8bceb827ecb20c87224a74868d2843e67c977e6e)
|
190
205
|
- Update requirements.txt [`a4230d3`](https://github.com/craigerl/aprsd/commit/a4230d324a409479ff14de420bfd44050190244f)
|
191
|
-
-
|
192
|
-
- Added
|
206
|
+
- Updated dev test-plugin command [`03c58f8`](https://github.com/craigerl/aprsd/commit/03c58f83cd0f6a98cfd77861871edfd65c4e28fa)
|
207
|
+
- Added Location info on webchat interface [`d6f0f05`](https://github.com/craigerl/aprsd/commit/d6f0f053156dcbc86f1f44f860c755efdcbe8a9e)
|
208
|
+
- update github action branchs to v8 [`a88de2f`](https://github.com/craigerl/aprsd/commit/a88de2f09cc758a63e0eb7541721dfc8a374459e)
|
193
209
|
- Create codeql.yml [`a00c4ea`](https://github.com/craigerl/aprsd/commit/a00c4ea84095cdb25f8306ce66a47f5497bcfa3b)
|
194
|
-
- updated
|
210
|
+
- updated gitignore [`1a5c5f0`](https://github.com/craigerl/aprsd/commit/1a5c5f0dcef60a192c44b0e8774f1598d2ed48b2)
|
195
211
|
- Added support for loading extensions [`b143072`](https://github.com/craigerl/aprsd/commit/b14307270c1438b6f5cdf8de5bb179729a62f993)
|
196
|
-
- use log.setup_logging [`aec88d4`](https://github.com/craigerl/aprsd/commit/aec88d4a7e107cdfbc6d38e6bc744a74b6ef3b9b)
|
197
|
-
- Fixed pep8 [`d1a09fc`](https://github.com/craigerl/aprsd/commit/d1a09fc6b5234835b49da7a19bbc65d4655481dd)
|
198
|
-
- Added installing extensions to Docker run [`4118541`](https://github.com/craigerl/aprsd/commit/41185416cbf1ee9add54ebcae6674824384e6104)
|
199
|
-
- Updated dev test-plugin command [`03c58f8`](https://github.com/craigerl/aprsd/commit/03c58f83cd0f6a98cfd77861871edfd65c4e28fa)
|
200
|
-
- removed some unneeded code [`9683459`](https://github.com/craigerl/aprsd/commit/968345944aedc9af11b1d9286b8c0d4a3354867e)
|
201
|
-
- Updated requirements [`d092a43`](https://github.com/craigerl/aprsd/commit/d092a43ec9ad9284d3f8b0060719b9e6c86f1976)
|
202
|
-
- Disable debug logs for aprslib [`24bbea1`](https://github.com/craigerl/aprsd/commit/24bbea1d499644d9d4bd7aab62f05b5802b2867e)
|
203
212
|
- Added some missing classes to threads [`e89f8a8`](https://github.com/craigerl/aprsd/commit/e89f8a805bc47f8d951fcbfb350a3b40d8befbd3)
|
204
|
-
- Update for v3.2.3 [`8bceb82`](https://github.com/craigerl/aprsd/commit/8bceb827ecb20c87224a74868d2843e67c977e6e)
|
205
|
-
- Changelog for 3.3.0 [`c37e1d5`](https://github.com/craigerl/aprsd/commit/c37e1d58bbf124fa99b33d12029e611bcb82c4da)
|
206
|
-
- fix pep8 failures [`e9c48c1`](https://github.com/craigerl/aprsd/commit/e9c48c1914395277aa7207c7ae1a8b2917a3351f)
|
207
|
-
- fixed references to conf [`7a5b55f`](https://github.com/craigerl/aprsd/commit/7a5b55fa77642927f5c853ee8975d03b83324f54)
|
208
|
-
- Add log info for Beacon and Registry threads [`a4630c1`](https://github.com/craigerl/aprsd/commit/a4630c15bede44cbf2272fae162521ac4d1b4b81)
|
209
213
|
- Added iterator to objectstore [`df2798e`](https://github.com/craigerl/aprsd/commit/df2798eafb3ff0201bb8c33f8d80f1cbcc32944e)
|
214
|
+
- removed some unneeded code [`9683459`](https://github.com/craigerl/aprsd/commit/968345944aedc9af11b1d9286b8c0d4a3354867e)
|
215
|
+
- updated requirements files [`275bf67`](https://github.com/craigerl/aprsd/commit/275bf67b9e0b474674d5efb69551ee0d2a308ec0)
|
216
|
+
- Added BeaconPacket [`11f1e95`](https://github.com/craigerl/aprsd/commit/11f1e9533e89ca236006d3a5d0b9e1b3ce0f4088)
|
210
217
|
- Cleanup some logs [`68f23d8`](https://github.com/craigerl/aprsd/commit/68f23d8ca78cf20b8f0efc7e26d75b9a319efb33)
|
211
|
-
-
|
212
|
-
-
|
213
|
-
-
|
214
|
-
- Change defaults for beacon and registry [`5fd91a2`](https://github.com/craigerl/aprsd/commit/5fd91a2172c7d4e1b1b3c65b8704f02500e0de87)
|
218
|
+
- Added installing extensions to Docker run [`4118541`](https://github.com/craigerl/aprsd/commit/41185416cbf1ee9add54ebcae6674824384e6104)
|
219
|
+
- Added the new APRS Registry thread [`1e4f0ca`](https://github.com/craigerl/aprsd/commit/1e4f0ca65af38f728de6c917d09b19450aceaa2b)
|
220
|
+
- add py310 gh actions [`1ad2e13`](https://github.com/craigerl/aprsd/commit/1ad2e135dc8f27a52d5e9b0d713bd72e753649c0)
|
215
221
|
- Added sending software string to registry [`8264c94`](https://github.com/craigerl/aprsd/commit/8264c94bd63e283313161ab51297b7a501a21cb9)
|
216
|
-
- Fixed registry url post [`2e9c9d4`](https://github.com/craigerl/aprsd/commit/2e9c9d40e1716e15356cbb73f2f5b3e9f455a176)
|
217
|
-
- Make registry thread sleep [`5d3f42f`](https://github.com/craigerl/aprsd/commit/5d3f42f411d801f0bdb22ae8a172528b19a8d89e)
|
218
|
-
- Put threads first after date/time [`2cb9c2a`](https://github.com/craigerl/aprsd/commit/2cb9c2a31cf88904381f5e2aa456be77941d9ecb)
|
219
|
-
- fixed frequency_seconds to IntOpt [`6a7d7ad`](https://github.com/craigerl/aprsd/commit/6a7d7ad79b197ce0ae77195187d4ae0936eddd20)
|
220
|
-
- changed the default packet timeout to 5 minutes [`a1e21e7`](https://github.com/craigerl/aprsd/commit/a1e21e795d2745ce0cec6327f9b036091e9bf546)
|
221
|
-
- Fixed default service registry url [`cb291de`](https://github.com/craigerl/aprsd/commit/cb291de047f80f77b63e07419ff4bb9ebaec8bce)
|
222
|
-
- py311 fails in github [`f0ad6d7`](https://github.com/craigerl/aprsd/commit/f0ad6d7577cb462ffc2c21ce53c9fb04978c1624)
|
223
222
|
- Don't send uptime to registry [`38fe408`](https://github.com/craigerl/aprsd/commit/38fe408c82ab493d8b9ebb3c281bd060afa749ae)
|
224
|
-
-
|
225
|
-
-
|
226
|
-
-
|
227
|
-
|
223
|
+
- py311 fails in github [`f0ad6d7`](https://github.com/craigerl/aprsd/commit/f0ad6d7577cb462ffc2c21ce53c9fb04978c1624)
|
224
|
+
- fix pep8 failures [`e9c48c1`](https://github.com/craigerl/aprsd/commit/e9c48c1914395277aa7207c7ae1a8b2917a3351f)
|
225
|
+
- Fixed default service registry url [`cb291de`](https://github.com/craigerl/aprsd/commit/cb291de047f80f77b63e07419ff4bb9ebaec8bce)
|
226
|
+
- changed the default packet timeout to 5 minutes [`a1e21e7`](https://github.com/craigerl/aprsd/commit/a1e21e795d2745ce0cec6327f9b036091e9bf546)
|
227
|
+
- fixed references to conf [`7a5b55f`](https://github.com/craigerl/aprsd/commit/7a5b55fa77642927f5c853ee8975d03b83324f54)
|
228
|
+
- fixed frequency_seconds to IntOpt [`6a7d7ad`](https://github.com/craigerl/aprsd/commit/6a7d7ad79b197ce0ae77195187d4ae0936eddd20)
|
229
|
+
- Add log info for Beacon and Registry threads [`a4630c1`](https://github.com/craigerl/aprsd/commit/a4630c15bede44cbf2272fae162521ac4d1b4b81)
|
230
|
+
- Change defaults for beacon and registry [`5fd91a2`](https://github.com/craigerl/aprsd/commit/5fd91a2172c7d4e1b1b3c65b8704f02500e0de87)
|
231
|
+
- Added list-extensions and updated README.rst [`ff051bc`](https://github.com/craigerl/aprsd/commit/ff051bc2859223a2979c1e050b8aae7fc947b6de)
|
232
|
+
- Fixed pep8 [`d1a09fc`](https://github.com/craigerl/aprsd/commit/d1a09fc6b5234835b49da7a19bbc65d4655481dd)
|
233
|
+
- Updated requirements [`d092a43`](https://github.com/craigerl/aprsd/commit/d092a43ec9ad9284d3f8b0060719b9e6c86f1976)
|
234
|
+
- Put threads first after date/time [`2cb9c2a`](https://github.com/craigerl/aprsd/commit/2cb9c2a31cf88904381f5e2aa456be77941d9ecb)
|
235
|
+
- Make registry thread sleep [`5d3f42f`](https://github.com/craigerl/aprsd/commit/5d3f42f411d801f0bdb22ae8a172528b19a8d89e)
|
236
|
+
- Disable debug logs for aprslib [`24bbea1`](https://github.com/craigerl/aprsd/commit/24bbea1d499644d9d4bd7aab62f05b5802b2867e)
|
237
|
+
- use log.setup_logging [`aec88d4`](https://github.com/craigerl/aprsd/commit/aec88d4a7e107cdfbc6d38e6bc744a74b6ef3b9b)
|
238
|
+
- Fixed RegistryThread not sending requests [`0b0afd3`](https://github.com/craigerl/aprsd/commit/0b0afd39ede5d437d41255563684144f62f0f323)
|
239
|
+
- Changed processpkt message [`66004f6`](https://github.com/craigerl/aprsd/commit/66004f639fcfe429fde4a6903ebeb8a5afc55847)
|
240
|
+
- Fixed registry url post [`2e9c9d4`](https://github.com/craigerl/aprsd/commit/2e9c9d40e1716e15356cbb73f2f5b3e9f455a176)
|
241
|
+
- sample-config fix [`0ca5cee`](https://github.com/craigerl/aprsd/commit/0ca5ceee7e50387a65d538a32b2da614e1ca7cb9)
|
242
|
+
- Changelog for 3.3.0 [`c37e1d5`](https://github.com/craigerl/aprsd/commit/c37e1d58bbf124fa99b33d12029e611bcb82c4da)
|
243
|
+
|
228
244
|
#### [v3.2.3](https://github.com/craigerl/aprsd/compare/v3.2.2...v3.2.3)
|
229
245
|
|
230
246
|
> 9 January 2024
|
231
247
|
|
232
248
|
- aprsd: main.py: Fix premature return in sample_config [`#144`](https://github.com/craigerl/aprsd/pull/144)
|
233
249
|
- Rework Location Plugin [`#140`](https://github.com/craigerl/aprsd/pull/140)
|
234
|
-
- Update weather.py because you can't sort icons by penis [`9350cf6`](https://github.com/craigerl/aprsd/commit/9350cf653434b6d29d4ff4874de98a4579abeceb)
|
235
|
-
- Force fortune path during setup test [`12a3113`](https://github.com/craigerl/aprsd/commit/12a311319227347e648dcc3ecff4f095e62fb4d4)
|
236
|
-
- Update weather.py both weather plugins have new Ww regex [`651cf01`](https://github.com/craigerl/aprsd/commit/651cf014b7874b95549ecd9d81cd59ada42862ce)
|
237
|
-
- Update weather.py [`b6df9de`](https://github.com/craigerl/aprsd/commit/b6df9de8aa3a1e2bb4a2951d3f7949c715ed2c3a)
|
238
250
|
- Fixed a bug with OWMWeatherPlugin [`0433768`](https://github.com/craigerl/aprsd/commit/043376878460f2324f66205aa0bccf285c6517cb)
|
239
|
-
-
|
240
|
-
-
|
251
|
+
- Update weather.py [`b6df9de`](https://github.com/craigerl/aprsd/commit/b6df9de8aa3a1e2bb4a2951d3f7949c715ed2c3a)
|
252
|
+
- Update weather.py both weather plugins have new Ww regex [`651cf01`](https://github.com/craigerl/aprsd/commit/651cf014b7874b95549ecd9d81cd59ada42862ce)
|
253
|
+
- Update weather.py because you can't sort icons by penis [`9350cf6`](https://github.com/craigerl/aprsd/commit/9350cf653434b6d29d4ff4874de98a4579abeceb)
|
241
254
|
- Added missing fortune app [`f02824b`](https://github.com/craigerl/aprsd/commit/f02824b7960c0a9e8ca872d12cd69453211d2830)
|
255
|
+
- Added fortune to Dockerfile-dev [`682e138`](https://github.com/craigerl/aprsd/commit/682e138ec23dd0be1cd443d6ecfc25422a97ea8f)
|
256
|
+
- added /usr/games to path [`026a64c`](https://github.com/craigerl/aprsd/commit/026a64c003c776b0ea3ca668ed142234fc28b0b2)
|
257
|
+
- Force fortune path during setup test [`12a3113`](https://github.com/craigerl/aprsd/commit/12a311319227347e648dcc3ecff4f095e62fb4d4)
|
242
258
|
|
243
259
|
#### [v3.2.2](https://github.com/craigerl/aprsd/compare/v3.2.1...v3.2.2)
|
244
260
|
|
@@ -250,16 +266,16 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
250
266
|
- Bump werkzeug from 2.3.7 to 3.0.1 [`#136`](https://github.com/craigerl/aprsd/pull/136)
|
251
267
|
- Update INSTALL with new conf files [`#135`](https://github.com/craigerl/aprsd/pull/135)
|
252
268
|
- Bump urllib3 from 2.0.6 to 2.0.7 [`#134`](https://github.com/craigerl/aprsd/pull/134)
|
253
|
-
- Updated requirements [`4b1214d`](https://github.com/craigerl/aprsd/commit/4b1214de74785af70b9bd4e530edfb52eb7d5fc6)
|
254
|
-
- Reworked the admin graphs [`763c9ab`](https://github.com/craigerl/aprsd/commit/763c9ab897343c3ff882e0769e9c582ce0b71e56)
|
255
269
|
- Test new packet serialization [`fe1ebf2`](https://github.com/craigerl/aprsd/commit/fe1ebf2ec159ead44412e3bbd2d13754b327aced)
|
256
|
-
-
|
257
|
-
-
|
258
|
-
-
|
270
|
+
- Reworked the admin graphs [`763c9ab`](https://github.com/craigerl/aprsd/commit/763c9ab897343c3ff882e0769e9c582ce0b71e56)
|
271
|
+
- Updated requirements [`4b1214d`](https://github.com/craigerl/aprsd/commit/4b1214de74785af70b9bd4e530edfb52eb7d5fc6)
|
272
|
+
- removed invalid reference to config.py [`fae7032`](https://github.com/craigerl/aprsd/commit/fae7032346bf14129f27cd23a5397b524bf450aa)
|
259
273
|
- Fixed datetime access in core.py [`b9dd21b`](https://github.com/craigerl/aprsd/commit/b9dd21bc14eddd1a126d6eac1fa1fa4f5cd53609)
|
260
274
|
- remove python 3.12 from github builds [`638128a`](https://github.com/craigerl/aprsd/commit/638128adf8862b9cade055fd9539a553f4f12fbb)
|
275
|
+
- pep8 fixes [`6b397cb`](https://github.com/craigerl/aprsd/commit/6b397cbdf18c4257fc20d99fc15a9b0f258cde39)
|
261
276
|
- Fix wsgi for prod [`b0bfdaa`](https://github.com/craigerl/aprsd/commit/b0bfdaa1fb15158b4cff95fbf7619ae0c8c3309e)
|
262
|
-
-
|
277
|
+
- Fix for types [`809a41f`](https://github.com/craigerl/aprsd/commit/809a41f1238a9d00252e069207ddf43555e0fbe3)
|
278
|
+
- Update for v3.2.2 release [`c0e2ef1`](https://github.com/craigerl/aprsd/commit/c0e2ef119939db41b07e2ad053e55bfbdaf07329)
|
263
279
|
|
264
280
|
#### [v3.2.1](https://github.com/craigerl/aprsd/compare/v3.2.0...v3.2.1)
|
265
281
|
|
@@ -267,24 +283,24 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
267
283
|
|
268
284
|
- Bump urllib3 from 2.0.4 to 2.0.6 [`#133`](https://github.com/craigerl/aprsd/pull/133)
|
269
285
|
- Fix for dupe packets. [`#132`](https://github.com/craigerl/aprsd/pull/132)
|
286
|
+
- Log a warning on dupe [`0d7e50d`](https://github.com/craigerl/aprsd/commit/0d7e50d2ba0ba55ae82a0c8df98bb0e7c283cdd8)
|
270
287
|
- rewrote packet_list and drop dupe packets [`4f87d5d`](https://github.com/craigerl/aprsd/commit/4f87d5da12a5588d943b0e3644d57a93e26ccafe)
|
271
|
-
-
|
272
|
-
-
|
273
|
-
- Don't process AckPackets as dupes [`59cec13`](https://github.com/craigerl/aprsd/commit/59cec1317da8fea28e2c6496f95ce8ea5bf1c73b)
|
274
|
-
- Changelog for 3.2.1 [`acf2b62`](https://github.com/craigerl/aprsd/commit/acf2b62bce741364311edca104934be91f678b2e)
|
288
|
+
- pep8 fixes [`99a0f87`](https://github.com/craigerl/aprsd/commit/99a0f877f4b97dcc91cbf9552f72fe9e29ac9ba1)
|
289
|
+
- Fixed import of Mutablemapping [`f79b88e`](https://github.com/craigerl/aprsd/commit/f79b88ec1b44ea66572ee83ef040cb0f81d82549)
|
275
290
|
- Fixed issue with packet tracker and msgNO Counter [`9bdfd16`](https://github.com/craigerl/aprsd/commit/9bdfd166fd213983ddd55e57b726bb8fc7eba8b7)
|
291
|
+
- Fixed another msgNo int issue [`751bbc2`](https://github.com/craigerl/aprsd/commit/751bbc25149f8623f54e9e853c22191533fda45c)
|
292
|
+
- Don't process AckPackets as dupes [`59cec13`](https://github.com/craigerl/aprsd/commit/59cec1317da8fea28e2c6496f95ce8ea5bf1c73b)
|
293
|
+
- Make Packet objects hashable [`544600a`](https://github.com/craigerl/aprsd/commit/544600a96b6a23fc5999c1be117511998a2228b2)
|
294
|
+
- Add ability to change path on every TX packet [`ddd4d25`](https://github.com/craigerl/aprsd/commit/ddd4d25e9dbb98603fbda1854d224baae2f2a3aa)
|
276
295
|
- Added packet_dupe_timeout conf [`f41488b`](https://github.com/craigerl/aprsd/commit/f41488b48a37a8c8bd1695304ea286bd58291faf)
|
277
296
|
- Fix path for KISS clients [`746eeb8`](https://github.com/craigerl/aprsd/commit/746eeb81b0b68d09c668267b74e0c09b134757ff)
|
278
|
-
-
|
279
|
-
- Fixed
|
280
|
-
- pep8 fixes [`99a0f87`](https://github.com/craigerl/aprsd/commit/99a0f877f4b97dcc91cbf9552f72fe9e29ac9ba1)
|
297
|
+
- Set a default password for admin [`8116960`](https://github.com/craigerl/aprsd/commit/81169600bd264f1708eddd387f14c20b3fb57429)
|
298
|
+
- Fixed default path for tcp_kiss client. [`156d9d9`](https://github.com/craigerl/aprsd/commit/156d9d9592d590e9168a70ff7d01d704cd10192e)
|
281
299
|
- Changed the path option to a ListOpt [`0155923`](https://github.com/craigerl/aprsd/commit/01559233412399f25b4ce7496f6c19036ce16609)
|
282
|
-
-
|
283
|
-
- Update index.html disable form autocomplete [`8e9a021`](https://github.com/craigerl/aprsd/commit/8e9a0213e9aaf43fda2e6279f6343229fc758e86)
|
300
|
+
- Update the webchat paths [`5ae45ce`](https://github.com/craigerl/aprsd/commit/5ae45ce42fe50b41ca1216a028cb85c99f52240a)
|
284
301
|
- Update the packet_dupe_timeout warning [`bf905a0`](https://github.com/craigerl/aprsd/commit/bf905a0e9faedab4b160764a26e7e310e16ba7e7)
|
285
|
-
-
|
286
|
-
-
|
287
|
-
- Set a default password for admin [`8116960`](https://github.com/craigerl/aprsd/commit/81169600bd264f1708eddd387f14c20b3fb57429)
|
302
|
+
- Update index.html disable form autocomplete [`8e9a021`](https://github.com/craigerl/aprsd/commit/8e9a0213e9aaf43fda2e6279f6343229fc758e86)
|
303
|
+
- Changelog for 3.2.1 [`acf2b62`](https://github.com/craigerl/aprsd/commit/acf2b62bce741364311edca104934be91f678b2e)
|
288
304
|
|
289
305
|
#### [v3.2.0](https://github.com/craigerl/aprsd/compare/v3.1.3...v3.2.0)
|
290
306
|
|
@@ -292,65 +308,65 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
292
308
|
|
293
309
|
- Bump gevent from 23.9.0.post1 to 23.9.1 [`#131`](https://github.com/craigerl/aprsd/pull/131)
|
294
310
|
- Webchat saved bootstrapjs [`#130`](https://github.com/craigerl/aprsd/pull/130)
|
295
|
-
-
|
296
|
-
- WebChat: Send GPS Beacon working [`81a19dd`](https://github.com/craigerl/aprsd/commit/81a19dd10164f7d3b5702e1cb58898893120ac67)
|
297
|
-
- Deleted webchat mobile pages [`70ddc44`](https://github.com/craigerl/aprsd/commit/70ddc44b5c30e0381d5806a8a0c20979bcc0c464)
|
298
|
-
- Removed admin_web.py [`a9e8050`](https://github.com/craigerl/aprsd/commit/a9e8050ae69e9cabb2ec37ef872f0dd23b13b0ac)
|
299
|
-
- Reworked webchat with new UI [`14e984c`](https://github.com/craigerl/aprsd/commit/14e984c9b4143309b595c9e55ad8e9126095f9c4)
|
300
|
-
- Restore previous conversations in webchat [`7292744`](https://github.com/craigerl/aprsd/commit/7292744a78c179d17caadd4d659caba38cccc4f8)
|
301
|
-
- WebChat: fixed content area scrolling [`7130ca2`](https://github.com/craigerl/aprsd/commit/7130ca2fd9425c438a787b5521e512bc5d572f18)
|
302
|
-
- Webchat: Added tab notifications and raw packet [`9635893`](https://github.com/craigerl/aprsd/commit/9635893934e1a6f29bafde003bcde911a0a63fb9)
|
303
|
-
- Webchat: tweaks to UI for expanding chat [`b393060`](https://github.com/craigerl/aprsd/commit/b393060edb0afd592d4cb88be143df6e20d1ee66)
|
304
|
-
- Added close X on webchat tabs [`8527602`](https://github.com/craigerl/aprsd/commit/852760220f10b6bf29ae6f9bacb1ff1908412027)
|
305
|
-
- Update index.html to use chat.css [`ba6b410`](https://github.com/craigerl/aprsd/commit/ba6b410795808e737c7dd035812c674ce8f9755f)
|
306
|
-
- Updated the webchat UI to look like iMessage [`29f21a9`](https://github.com/craigerl/aprsd/commit/29f21a946951b0d42aab6f339da684933c6e95ed)
|
307
|
-
- Updated documentation build [`10bf049`](https://github.com/craigerl/aprsd/commit/10bf04929e9916b48147171a0f810dad91f8c9a7)
|
311
|
+
- fixed webchat logging.logformat typeoh [`8dd3b05`](https://github.com/craigerl/aprsd/commit/8dd3b05bb16f792ff588494811ac6a669cb629ef)
|
308
312
|
- Added new webchat config section [`f922b3f`](https://github.com/craigerl/aprsd/commit/f922b3f97b741aa80da642fe4a6def966c3677a7)
|
309
|
-
- WebChat: Prevent sending message without callsign [`f151ae4`](https://github.com/craigerl/aprsd/commit/f151ae434820c24c4d09beb1876eeff12296339b)
|
310
|
-
- WebChat: flash a dupe message [`12dfdef`](https://github.com/craigerl/aprsd/commit/12dfdefb624b410f205086f3954a6809d0fa0956)
|
311
313
|
- Make use of webchat gps config options [`2e9a204`](https://github.com/craigerl/aprsd/commit/2e9a204c7466446a895f3ba62e0aab69ea1be21f)
|
314
|
+
- Convert webchat internet urls to local static urls [`1d6a667`](https://github.com/craigerl/aprsd/commit/1d6a667987f3d239512ab2458209c99e5a776e9b)
|
312
315
|
- Webchat suppress to display of dupe messages [`a8dd9ce`](https://github.com/craigerl/aprsd/commit/a8dd9ce0129d24a16c033546ffbff7d9b59f0885)
|
313
|
-
-
|
316
|
+
- click on the div after added. [`377842c`](https://github.com/craigerl/aprsd/commit/377842c2ec9a063602aa9f4a780ac7979950bc2b)
|
314
317
|
- Added dupe checkig code to webchat mobile [`2416f0e`](https://github.com/craigerl/aprsd/commit/2416f0ea1a52da1d58a2562ecbe8172aa3779e3c)
|
315
|
-
-
|
316
|
-
- webchat: got active tab onclick working [`1400e3e`](https://github.com/craigerl/aprsd/commit/1400e3e71144d4dc8a48874301b90960485a3768)
|
317
|
-
- Webchat: Fix pep8 errors [`3f5dbe0`](https://github.com/craigerl/aprsd/commit/3f5dbe0a12349de221ce65c4687b83ab2ac14128)
|
318
|
-
- Webchat: Fixed bug deleteing first tab [`f770c5f`](https://github.com/craigerl/aprsd/commit/f770c5ffd569a2d8cb722b382872494a35bedc1c)
|
318
|
+
- fixed an issue in the mobile webchat [`34311f0`](https://github.com/craigerl/aprsd/commit/34311f0fbd1a501dc9eb27ec6e6f5532a4fe43cc)
|
319
319
|
- Start keepalive thread first [`859f904`](https://github.com/craigerl/aprsd/commit/859f904602081a22d8b6f1228502053decb921c2)
|
320
|
-
-
|
321
|
-
- Removed some RPC server log noise [`82f77b7`](https://github.com/craigerl/aprsd/commit/82f77b7a6ad8d322488034b3944970744377dd3c)
|
322
|
-
- webchat: set to_call to value of tab when selected [`8a90d54`](https://github.com/craigerl/aprsd/commit/8a90d5480ae379a3af225a4f73d452c8d5ae402e)
|
323
|
-
- minor cleanup prior to release [`c9dc4f6`](https://github.com/craigerl/aprsd/commit/c9dc4f67d43a95c4abf39c0bf3e90dabe7778662)
|
320
|
+
- RPC Server logs the client IP on failed auth [`9582812`](https://github.com/craigerl/aprsd/commit/958281204175d7315ac3a62b0b6eb0656864e0ca)
|
324
321
|
- Fixed admin page packet date [`570fdb9`](https://github.com/craigerl/aprsd/commit/570fdb98a748d26126a1e4c9abdf0aff35927e81)
|
322
|
+
- Removed some RPC server log noise [`82f77b7`](https://github.com/craigerl/aprsd/commit/82f77b7a6ad8d322488034b3944970744377dd3c)
|
323
|
+
- Removed admin_web.py [`a9e8050`](https://github.com/craigerl/aprsd/commit/a9e8050ae69e9cabb2ec37ef872f0dd23b13b0ac)
|
324
|
+
- Updated documentation build [`10bf049`](https://github.com/craigerl/aprsd/commit/10bf04929e9916b48147171a0f810dad91f8c9a7)
|
325
|
+
- updated github workflows [`4b56e99`](https://github.com/craigerl/aprsd/commit/4b56e99689e4aeb518bc78bec8212bfd3d8a845e)
|
326
|
+
- recreate client during reset() [`008b2ab`](https://github.com/craigerl/aprsd/commit/008b2ab09efb98251fe55d721c75be64b1fdd8cc)
|
327
|
+
- Remove VIM from Dockerfile [`619b1b7`](https://github.com/craigerl/aprsd/commit/619b1b708e0059745e7f55d2ec4f08cc2b57f3fe)
|
328
|
+
- Restore previous conversations in webchat [`7292744`](https://github.com/craigerl/aprsd/commit/7292744a78c179d17caadd4d659caba38cccc4f8)
|
329
|
+
- Updated the webchat UI to look like iMessage [`29f21a9`](https://github.com/craigerl/aprsd/commit/29f21a946951b0d42aab6f339da684933c6e95ed)
|
330
|
+
- Reworked webchat with new UI [`14e984c`](https://github.com/craigerl/aprsd/commit/14e984c9b4143309b595c9e55ad8e9126095f9c4)
|
331
|
+
- Added close X on webchat tabs [`8527602`](https://github.com/craigerl/aprsd/commit/852760220f10b6bf29ae6f9bacb1ff1908412027)
|
332
|
+
- Deleted webchat mobile pages [`70ddc44`](https://github.com/craigerl/aprsd/commit/70ddc44b5c30e0381d5806a8a0c20979bcc0c464)
|
333
|
+
- Update index.html to use chat.css [`ba6b410`](https://github.com/craigerl/aprsd/commit/ba6b410795808e737c7dd035812c674ce8f9755f)
|
325
334
|
- Center the webchat input form [`b4e02c7`](https://github.com/craigerl/aprsd/commit/b4e02c760ee1eac155406b0939ad058fdf0e2449)
|
335
|
+
- webchat: set to_call to value of tab when selected [`8a90d54`](https://github.com/craigerl/aprsd/commit/8a90d5480ae379a3af225a4f73d452c8d5ae402e)
|
336
|
+
- webchat: got active tab onclick working [`1400e3e`](https://github.com/craigerl/aprsd/commit/1400e3e71144d4dc8a48874301b90960485a3768)
|
337
|
+
- WebChat: Send GPS Beacon working [`81a19dd`](https://github.com/craigerl/aprsd/commit/81a19dd10164f7d3b5702e1cb58898893120ac67)
|
338
|
+
- Ensure parse_delta_str doesn't puke [`140fa4a`](https://github.com/craigerl/aprsd/commit/140fa4ace49385da2d8b2c675c91441a1c8d34a0)
|
326
339
|
- Ensure Keepalive doesn't reset client at startup [`ef206b1`](https://github.com/craigerl/aprsd/commit/ef206b12837738779bfda5beb1ccfb0edbf38649)
|
327
|
-
-
|
340
|
+
- Webchat: Fixed bug deleteing first tab [`f770c5f`](https://github.com/craigerl/aprsd/commit/f770c5ffd569a2d8cb722b382872494a35bedc1c)
|
341
|
+
- Webchat: tweaks to UI for expanding chat [`b393060`](https://github.com/craigerl/aprsd/commit/b393060edb0afd592d4cb88be143df6e20d1ee66)
|
342
|
+
- WebChat: fixed content area scrolling [`7130ca2`](https://github.com/craigerl/aprsd/commit/7130ca2fd9425c438a787b5521e512bc5d572f18)
|
343
|
+
- WebChat: Prevent sending message without callsign [`f151ae4`](https://github.com/craigerl/aprsd/commit/f151ae434820c24c4d09beb1876eeff12296339b)
|
344
|
+
- Webchat: Added tab notifications and raw packet [`9635893`](https://github.com/craigerl/aprsd/commit/9635893934e1a6f29bafde003bcde911a0a63fb9)
|
345
|
+
- Webchat: Fix pep8 errors [`3f5dbe0`](https://github.com/craigerl/aprsd/commit/3f5dbe0a12349de221ce65c4687b83ab2ac14128)
|
346
|
+
- WebChat: new tab should get focus [`ff35898`](https://github.com/craigerl/aprsd/commit/ff358987a9206772792358ee2c14345fd63fc426)
|
347
|
+
- Webchat: Fix chat css on older browsers [`6b083d4`](https://github.com/craigerl/aprsd/commit/6b083d4c4d7dec874c3d67cca176b9de97bd867a)
|
328
348
|
- Webchat: Fix issue accessing msg.id [`d63c685`](https://github.com/craigerl/aprsd/commit/d63c6854aff0d5962d7e9a6aca277606955bdf49)
|
329
|
-
-
|
330
|
-
-
|
349
|
+
- WebChat: flash a dupe message [`12dfdef`](https://github.com/craigerl/aprsd/commit/12dfdefb624b410f205086f3954a6809d0fa0956)
|
350
|
+
- WebChat: cleanup some console.logs [`82d2591`](https://github.com/craigerl/aprsd/commit/82d25915fc28244232ee250dd45e41d4ef2e3cf5)
|
331
351
|
- Webchat: fix input maxlength [`788a72c`](https://github.com/craigerl/aprsd/commit/788a72c643e3d4f82defc63c068fa1d5f938aa50)
|
332
|
-
-
|
333
|
-
-
|
334
|
-
- recreate client during reset() [`008b2ab`](https://github.com/craigerl/aprsd/commit/008b2ab09efb98251fe55d721c75be64b1fdd8cc)
|
335
|
-
- fixed webchat logging.logformat typeoh [`8dd3b05`](https://github.com/craigerl/aprsd/commit/8dd3b05bb16f792ff588494811ac6a669cb629ef)
|
336
|
-
- fixed an issue in the mobile webchat [`34311f0`](https://github.com/craigerl/aprsd/commit/34311f0fbd1a501dc9eb27ec6e6f5532a4fe43cc)
|
337
|
-
- click on the div after added. [`377842c`](https://github.com/craigerl/aprsd/commit/377842c2ec9a063602aa9f4a780ac7979950bc2b)
|
352
|
+
- minor cleanup prior to release [`c9dc4f6`](https://github.com/craigerl/aprsd/commit/c9dc4f67d43a95c4abf39c0bf3e90dabe7778662)
|
353
|
+
- Update Changelog for 3.2.0 [`7408894`](https://github.com/craigerl/aprsd/commit/740889426ab0dd9604b1d1492ce7bff4948eeed3)
|
338
354
|
|
339
355
|
#### [v3.1.3](https://github.com/craigerl/aprsd/compare/v3.1.2...v3.1.3)
|
340
356
|
|
341
357
|
> 15 August 2023
|
342
358
|
|
343
|
-
- prep for 3.1.3 [`e06305f`](https://github.com/craigerl/aprsd/commit/e06305fceb551c7917c545ae76c984293d045c2f)
|
344
359
|
- Forcefully allow development webchat flask [`33c7871`](https://github.com/craigerl/aprsd/commit/33c7871dbe86a07405e5186515adaea412498f24)
|
360
|
+
- prep for 3.1.3 [`e06305f`](https://github.com/craigerl/aprsd/commit/e06305fceb551c7917c545ae76c984293d045c2f)
|
345
361
|
|
346
362
|
#### [v3.1.2](https://github.com/craigerl/aprsd/compare/v3.1.1...v3.1.2)
|
347
363
|
|
348
364
|
> 15 August 2023
|
349
365
|
|
350
366
|
- Removed adhoc ssl support in webchat [`182887c`](https://github.com/craigerl/aprsd/commit/182887c20a36d34122e5eefef77e28fcc814c7a5)
|
367
|
+
- Disable the Send GPS Beacon button [`65a5a90`](https://github.com/craigerl/aprsd/commit/65a5a90458fd38dfdb9a9629598d9ee97b8d631e)
|
351
368
|
- Added support for ThirdParty packet types [`ae9e4d3`](https://github.com/craigerl/aprsd/commit/ae9e4d31ad8333451d6e81dd6440085052c192a0)
|
352
369
|
- Updated Changelog for 3.1.2 [`b2f95b0`](https://github.com/craigerl/aprsd/commit/b2f95b0f4e1fd627da327354568d773f1172060f)
|
353
|
-
- Disable the Send GPS Beacon button [`65a5a90`](https://github.com/craigerl/aprsd/commit/65a5a90458fd38dfdb9a9629598d9ee97b8d631e)
|
354
370
|
|
355
371
|
#### [v3.1.1](https://github.com/craigerl/aprsd/compare/v3.1.0...v3.1.1)
|
356
372
|
|
@@ -359,11 +375,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
359
375
|
- Fix sending packets over KISS interface [`#128`](https://github.com/craigerl/aprsd/pull/128)
|
360
376
|
- Update the Dockerfile [`#125`](https://github.com/craigerl/aprsd/pull/125)
|
361
377
|
- Max out the client reconnect backoff to 5 [`26f354b`](https://github.com/craigerl/aprsd/commit/26f354b3a9113a41c6d9a7d5d71dac0ffba11809)
|
362
|
-
-
|
363
|
-
- Updated Changelog for v3.1.1 [`f228144`](https://github.com/craigerl/aprsd/commit/f228144f4bfb3fc739d48d6628804efaa04a0f6a)
|
378
|
+
- remove loop log [`e0c3c5c`](https://github.com/craigerl/aprsd/commit/e0c3c5cbbff6ec3ede4d4d8756c42481634a1d61)
|
364
379
|
- Use config web_ip for running admin ui from module [`011cfc5`](https://github.com/craigerl/aprsd/commit/011cfc55e100ffda5153c7ed14b287f6757842c2)
|
380
|
+
- re-enable USWeatherPlugin to use mapClick [`986df39`](https://github.com/craigerl/aprsd/commit/986df391b2eb5af78f26b95fa1c989760dfa2a56)
|
365
381
|
- Fixed pep8 failures [`db9e1d2`](https://github.com/craigerl/aprsd/commit/db9e1d23d1421ca0842208f862fe50849d7fcfd8)
|
366
|
-
-
|
382
|
+
- Updated Changelog for v3.1.1 [`f228144`](https://github.com/craigerl/aprsd/commit/f228144f4bfb3fc739d48d6628804efaa04a0f6a)
|
367
383
|
|
368
384
|
#### [v3.1.0](https://github.com/craigerl/aprsd/compare/v3.0.3...v3.1.0)
|
369
385
|
|
@@ -374,83 +390,83 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
374
390
|
- Update requirements for upgraded cryptography [`#122`](https://github.com/craigerl/aprsd/pull/122)
|
375
391
|
- Fixed rain numbers from aprslib [`#119`](https://github.com/craigerl/aprsd/pull/119)
|
376
392
|
- Example plugin wrong function [`#116`](https://github.com/craigerl/aprsd/pull/116)
|
377
|
-
-
|
393
|
+
- Update Dockerfile to help build cryptography [`00f1c3a`](https://github.com/craigerl/aprsd/commit/00f1c3a2baf6c0afc5a697ee5a895110a6c38cac)
|
394
|
+
- Ensure conf is imported for threads/tx [`4e99e30`](https://github.com/craigerl/aprsd/commit/4e99e30f165d4e6dc12e1fa2aefbba790b96211f)
|
395
|
+
- Add .readthedocs.yaml [`43d6b62`](https://github.com/craigerl/aprsd/commit/43d6b627604a50dd7c566316c0c9491b777151d9)
|
396
|
+
- Fixed .readthedocs.yaml format [`cad22e1`](https://github.com/craigerl/aprsd/commit/cad22e174432bcfb28d2c8cbaaab995f38a95461)
|
378
397
|
- Update location plugin and reworked requirements [`26c1e7a`](https://github.com/craigerl/aprsd/commit/26c1e7afbb1875bfcaf3016a2d85b34bcda48048)
|
379
|
-
- Added
|
398
|
+
- Added rpc server for listen [`8b73372`](https://github.com/craigerl/aprsd/commit/8b73372b6e63b0e6f58dffa7668a73990a599dc4)
|
399
|
+
- Fixed pep8 violation [`5bc589f`](https://github.com/craigerl/aprsd/commit/5bc589f21fd3dc33a4f0aa361cbd06d1c4288219)
|
400
|
+
- Update github workflows [`15bf371`](https://github.com/craigerl/aprsd/commit/15bf3710d25328cfd5ff3fb27710746636ea6899)
|
401
|
+
- force tox to 4.3.5 [`da20ff0`](https://github.com/craigerl/aprsd/commit/da20ff038b40160695773e6b5fedfbf51d9da8bf)
|
402
|
+
- Updated requirements [`319969c`](https://github.com/craigerl/aprsd/commit/319969cc08f9e49deabe27f38f941409a4c5e2ed)
|
403
|
+
- USe new tox and update githubworkflows [`9931c8a`](https://github.com/craigerl/aprsd/commit/9931c8a6c5f84ca46521e8d8f66d58a4c88a9890)
|
404
|
+
- Fixed unit tests for Location plugin [`80b85e6`](https://github.com/craigerl/aprsd/commit/80b85e648f0d40325964517ecc9db7cd999009de)
|
405
|
+
- Add github manual trigger for master build [`09a0c4c`](https://github.com/craigerl/aprsd/commit/09a0c4cb026101dab53d1a9544135d29f15040cd)
|
406
|
+
- Update master-build.yml [`f4d6035`](https://github.com/craigerl/aprsd/commit/f4d60357ee15e7b16fb24738fdb882d46f068795)
|
407
|
+
- Added manual master build [`311ceba`](https://github.com/craigerl/aprsd/commit/311cebaf2770ee293c7166ee56030146cba4a274)
|
408
|
+
- add arm64 for manual github build [`b172c69`](https://github.com/craigerl/aprsd/commit/b172c692a1ff9bfce1cdd49695fc17544a058216)
|
409
|
+
- Added some utilities to Dockerfile-dev [`9b94414`](https://github.com/craigerl/aprsd/commit/9b944142bd6a21285d112929791fc87a26c9cdf9)
|
380
410
|
- Replace ratelimiter with rush [`fe0d71d`](https://github.com/craigerl/aprsd/commit/fe0d71de4d75979968a67e6ff1122a11a303c3bc)
|
381
|
-
-
|
382
|
-
-
|
383
|
-
- Changelog updates for v3.1.0 [`dfd3688`](https://github.com/craigerl/aprsd/commit/dfd3688d8ff1110ac011e8adf866f67ba2ad0d86)
|
411
|
+
- Added the fetch-stats command [`b2e621d`](https://github.com/craigerl/aprsd/commit/b2e621da4b058a1fc727ff6741a27c03a0b220e4)
|
412
|
+
- added counts to the fetch-stats table [`0a14b07`](https://github.com/craigerl/aprsd/commit/0a14b07fae0e2eb2c867c624d510ca60602fab5d)
|
384
413
|
- Populate stats object with threads info [`191e1ff`](https://github.com/craigerl/aprsd/commit/191e1ff552ac3c9d769de2417d5c9a0d5f85362c)
|
385
|
-
-
|
386
|
-
-
|
414
|
+
- Fixed pep8 errors [`005675c`](https://github.com/craigerl/aprsd/commit/005675cb467863f54db1cf5ffc94f5693326b72d)
|
415
|
+
- Try and fix Dockerfile-dev [`bba7b68`](https://github.com/craigerl/aprsd/commit/bba7b68112c0b6372f21a1d2a9a7df52fa028a05)
|
387
416
|
- Fix in for aprslib issue #80 [`63bf82a`](https://github.com/craigerl/aprsd/commit/63bf82aab5cce54f7b96d95c77043067185b1c4b)
|
388
|
-
- Change how fetch-stats gets it's defaults [`5383b69`](https://github.com/craigerl/aprsd/commit/5383b698ea8d92b76ee22a8ba239d6de945e0375)
|
389
|
-
- update manual build github [`fa6e738`](https://github.com/craigerl/aprsd/commit/fa6e738a2069721eb0100ad71cbb41bfd012bc43)
|
390
417
|
- Fixed rpc client initialization [`7f2aba7`](https://github.com/craigerl/aprsd/commit/7f2aba702abc079d6b36b7fbb0e5b4d8e8d03f7f)
|
391
|
-
-
|
418
|
+
- Limit the float values to 3 decimal places [`0bd11d0`](https://github.com/craigerl/aprsd/commit/0bd11d05c666d5304e3173e2e010a23fd6d9e6e0)
|
419
|
+
- Changed weather plugin regex pattern [`565ffe3`](https://github.com/craigerl/aprsd/commit/565ffe3f7287a257a84c693f74e2dff6f35f84af)
|
420
|
+
- Moved logging to log for wsgi.py [`35d4158`](https://github.com/craigerl/aprsd/commit/35d41582ee0cfc9dce505526e8a5648d93a1be12)
|
421
|
+
- Replace Dockerfile-dev with python3 slim [`ccd564a`](https://github.com/craigerl/aprsd/commit/ccd564a52e6de2ef800934492d5e420e90d4e365)
|
422
|
+
- Added more libs for Dockerfile-dev [`ad00463`](https://github.com/craigerl/aprsd/commit/ad004633de75176bf70c6a4df19763f57350fbbb)
|
423
|
+
- update manual build github [`fa6e738`](https://github.com/craigerl/aprsd/commit/fa6e738a2069721eb0100ad71cbb41bfd012bc43)
|
424
|
+
- Update Dockerfile-dev to fix plugin permissions [`d8318f2`](https://github.com/craigerl/aprsd/commit/d8318f2ae23f5299bad2cdfb07a549bc74d83d3f)
|
425
|
+
- Update master build to include linux/arm/v8 [`dee73c1`](https://github.com/craigerl/aprsd/commit/dee73c1060be62f01e87413bfd9edef04a3ec675)
|
426
|
+
- Removed flask-classful from webchat [`6a6e854`](https://github.com/craigerl/aprsd/commit/6a6e854caf18fc01b6f38badbffe38272c73508c)
|
427
|
+
- Update docker bin/admin.sh [`fa452cc`](https://github.com/craigerl/aprsd/commit/fa452cc773b4aacd4ecb56900e1f954887dea999)
|
428
|
+
- removed linux/arm/v8 [`5723e3a`](https://github.com/craigerl/aprsd/commit/5723e3a77b78325e5e381b703bed61f2fef147f4)
|
392
429
|
- Added timing after each thread loop [`d3a93b7`](https://github.com/craigerl/aprsd/commit/d3a93b735deb222d9a2c27015a413973c810f4d0)
|
393
|
-
-
|
394
|
-
- Update master-build.yml [`f4d6035`](https://github.com/craigerl/aprsd/commit/f4d60357ee15e7b16fb24738fdb882d46f068795)
|
395
|
-
- Add github manual trigger for master build [`09a0c4c`](https://github.com/craigerl/aprsd/commit/09a0c4cb026101dab53d1a9544135d29f15040cd)
|
430
|
+
- updated wsgi config default /config/aprsd.conf [`588e140`](https://github.com/craigerl/aprsd/commit/588e140a7f1de089d9813c22c116d7cc6b6169f0)
|
396
431
|
- Add info logging for rpc server calls [`6ae55fc`](https://github.com/craigerl/aprsd/commit/6ae55fc9a14bb4e760fedce6b21705ee248fb2cc)
|
397
|
-
- Try and fix Dockerfile-dev [`bba7b68`](https://github.com/craigerl/aprsd/commit/bba7b68112c0b6372f21a1d2a9a7df52fa028a05)
|
398
|
-
- added counts to the fetch-stats table [`0a14b07`](https://github.com/craigerl/aprsd/commit/0a14b07fae0e2eb2c867c624d510ca60602fab5d)
|
399
|
-
- Update Dockerfile-dev to fix plugin permissions [`d8318f2`](https://github.com/craigerl/aprsd/commit/d8318f2ae23f5299bad2cdfb07a549bc74d83d3f)
|
400
|
-
- Limit the float values to 3 decimal places [`0bd11d0`](https://github.com/craigerl/aprsd/commit/0bd11d05c666d5304e3173e2e010a23fd6d9e6e0)
|
401
432
|
- Ensure fetch-stats ip is a string [`cbef93b`](https://github.com/craigerl/aprsd/commit/cbef93b3278b2d638c96558271ae62d72ede886a)
|
402
|
-
-
|
403
|
-
-
|
404
|
-
- Fixed .readthedocs.yaml format [`cad22e1`](https://github.com/craigerl/aprsd/commit/cad22e174432bcfb28d2c8cbaaab995f38a95461)
|
405
|
-
- Update Dockerfile to help build cryptography [`00f1c3a`](https://github.com/craigerl/aprsd/commit/00f1c3a2baf6c0afc5a697ee5a895110a6c38cac)
|
406
|
-
- Update Dockerfile-dev to include uwsgi [`1ab9c3f`](https://github.com/craigerl/aprsd/commit/1ab9c3fee4ea228a8e9194340d8fb31fc6cd7b65)
|
433
|
+
- Change how fetch-stats gets it's defaults [`5383b69`](https://github.com/craigerl/aprsd/commit/5383b698ea8d92b76ee22a8ba239d6de945e0375)
|
434
|
+
- change port to 8000 [`e51a501`](https://github.com/craigerl/aprsd/commit/e51a50154459a5f50b3faa7784f68555bb442952)
|
407
435
|
- Fixed pep8 [`4664ead`](https://github.com/craigerl/aprsd/commit/4664ead9e7b833f610b5c04acebbc9cced4447d5)
|
408
|
-
-
|
409
|
-
- Update github workflows [`15bf371`](https://github.com/craigerl/aprsd/commit/15bf3710d25328cfd5ff3fb27710746636ea6899)
|
436
|
+
- Update Dockerfile-dev to include uwsgi [`1ab9c3f`](https://github.com/craigerl/aprsd/commit/1ab9c3fee4ea228a8e9194340d8fb31fc6cd7b65)
|
410
437
|
- Fixed sio namespace registration [`099b87e`](https://github.com/craigerl/aprsd/commit/099b87e25048e2be2bf453130d9ba99299079190)
|
411
|
-
- Fixed pep8 errors [`005675c`](https://github.com/craigerl/aprsd/commit/005675cb467863f54db1cf5ffc94f5693326b72d)
|
412
|
-
- Updated requirements [`319969c`](https://github.com/craigerl/aprsd/commit/319969cc08f9e49deabe27f38f941409a4c5e2ed)
|
413
|
-
- Update docker bin/admin.sh [`fa452cc`](https://github.com/craigerl/aprsd/commit/fa452cc773b4aacd4ecb56900e1f954887dea999)
|
414
|
-
- Added more libs for Dockerfile-dev [`ad00463`](https://github.com/craigerl/aprsd/commit/ad004633de75176bf70c6a4df19763f57350fbbb)
|
415
438
|
- Use CONF.admin.web_port for single launch web admin [`c7d629f`](https://github.com/craigerl/aprsd/commit/c7d629f88a754ef1210a1ab87a96fe8f71036f38)
|
416
|
-
-
|
417
|
-
- updated wsgi config default /config/aprsd.conf [`588e140`](https://github.com/craigerl/aprsd/commit/588e140a7f1de089d9813c22c116d7cc6b6169f0)
|
418
|
-
- removed linux/arm/v8 [`5723e3a`](https://github.com/craigerl/aprsd/commit/5723e3a77b78325e5e381b703bed61f2fef147f4)
|
419
|
-
- Update master build to include linux/arm/v8 [`dee73c1`](https://github.com/craigerl/aprsd/commit/dee73c1060be62f01e87413bfd9edef04a3ec675)
|
420
|
-
- add arm64 for manual github build [`b172c69`](https://github.com/craigerl/aprsd/commit/b172c692a1ff9bfce1cdd49695fc17544a058216)
|
421
|
-
- Added some utilities to Dockerfile-dev [`9b94414`](https://github.com/craigerl/aprsd/commit/9b944142bd6a21285d112929791fc87a26c9cdf9)
|
422
|
-
- Fixed pep8 violation [`5bc589f`](https://github.com/craigerl/aprsd/commit/5bc589f21fd3dc33a4f0aa361cbd06d1c4288219)
|
423
|
-
- Ensure conf is imported for threads/tx [`4e99e30`](https://github.com/craigerl/aprsd/commit/4e99e30f165d4e6dc12e1fa2aefbba790b96211f)
|
439
|
+
- Changelog updates for v3.1.0 [`dfd3688`](https://github.com/craigerl/aprsd/commit/dfd3688d8ff1110ac011e8adf866f67ba2ad0d86)
|
424
440
|
|
425
441
|
#### [v3.0.3](https://github.com/craigerl/aprsd/compare/v3.0.2...v3.0.3)
|
426
442
|
|
427
443
|
> 25 April 2023
|
428
444
|
|
429
445
|
- Add ratelimiting for acks and other packets [`#111`](https://github.com/craigerl/aprsd/pull/111)
|
446
|
+
- Update Dockerfile [`8a456ca`](https://github.com/craigerl/aprsd/commit/8a456cac4887933e11c37b323a73e4e34fb0a7ce)
|
430
447
|
- Update Listen command [`483afce`](https://github.com/craigerl/aprsd/commit/483afce5adb39b973f4f6e5c57431007c3318889)
|
431
448
|
- Added listen.sh for docker [`c353877`](https://github.com/craigerl/aprsd/commit/c353877321af14fd8bb4804a45cd8422471dd47f)
|
432
449
|
- Change listen command plugins [`0ec41f7`](https://github.com/craigerl/aprsd/commit/0ec41f76053a0c1278d4fde14de4f853ea542669)
|
433
|
-
-
|
434
|
-
- Update Changelog to 3.0.3 [`0527ddf`](https://github.com/craigerl/aprsd/commit/0527ddfdbad58fe172f9bc24563c5c49506e22a6)
|
435
|
-
- Update Dockerfile [`8a456ca`](https://github.com/craigerl/aprsd/commit/8a456cac4887933e11c37b323a73e4e34fb0a7ce)
|
450
|
+
- Added listen args. [`66ebb28`](https://github.com/craigerl/aprsd/commit/66ebb286d8fa13a64971cdc2e9dded01637dd9c9)
|
436
451
|
- Don't load help plugin for listen command [`17d9c06`](https://github.com/craigerl/aprsd/commit/17d9c06b07232276156c015daa5692ed9413223e)
|
452
|
+
- Fixed loading of plugins for server [`e21e2a7`](https://github.com/craigerl/aprsd/commit/e21e2a7c50455c9d43c51858f0dfe81b2d2d6296)
|
437
453
|
- cleanup some debug messages [`5694cab`](https://github.com/craigerl/aprsd/commit/5694cabd93ff03e31fb0edddc1b28b2c62d9c368)
|
438
|
-
-
|
454
|
+
- Update Changelog to 3.0.3 [`0527ddf`](https://github.com/craigerl/aprsd/commit/0527ddfdbad58fe172f9bc24563c5c49506e22a6)
|
439
455
|
|
440
456
|
#### [v3.0.2](https://github.com/craigerl/aprsd/compare/v3.0.1...v3.0.2)
|
441
457
|
|
442
458
|
> 16 January 2023
|
443
459
|
|
444
|
-
- Update Changelog for 3.0.2 [`357a193`](https://github.com/craigerl/aprsd/commit/357a193a75a4e2a5efd0768ca79f71998539d2d1)
|
445
460
|
- Import RejectPacket [`4aa4a4b`](https://github.com/craigerl/aprsd/commit/4aa4a4b5d3e4326c0f479e62bd5a04d0c2e0d338)
|
461
|
+
- Update Changelog for 3.0.2 [`357a193`](https://github.com/craigerl/aprsd/commit/357a193a75a4e2a5efd0768ca79f71998539d2d1)
|
446
462
|
|
447
463
|
#### [v3.0.1](https://github.com/craigerl/aprsd/compare/v3.0.0...v3.0.1)
|
448
464
|
|
449
465
|
> 14 January 2023
|
450
466
|
|
451
467
|
- Add support for Reject messages. [`#109`](https://github.com/craigerl/aprsd/pull/109)
|
452
|
-
- Add support to Reject messages. [`c68b270`](https://github.com/craigerl/aprsd/commit/c68b270ee280a7f58163784511d5fbea810c977c)
|
453
468
|
- Update Docker builds for 3.0.0 [`3872590`](https://github.com/craigerl/aprsd/commit/38725907f31a56a9619035f17d6ae1b0f9955a17)
|
469
|
+
- Add support to Reject messages. [`c68b270`](https://github.com/craigerl/aprsd/commit/c68b270ee280a7f58163784511d5fbea810c977c)
|
454
470
|
|
455
471
|
### [v3.0.0](https://github.com/craigerl/aprsd/compare/v2.6.1...v3.0.0)
|
456
472
|
|
@@ -458,63 +474,63 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
458
474
|
|
459
475
|
- Convert config to oslo_config [`#107`](https://github.com/craigerl/aprsd/pull/107)
|
460
476
|
- Dataclasses [`#106`](https://github.com/craigerl/aprsd/pull/106)
|
461
|
-
- Reworked all packet processing [`94fb481`](https://github.com/craigerl/aprsd/commit/94fb481014dea7960c0a029b3deb8828fea22ad8)
|
462
|
-
- Update documentation and README [`c929689`](https://github.com/craigerl/aprsd/commit/c929689647159804209f1bd3711a563ba395cb18)
|
463
|
-
- Removed references to old custom config [`7ccfc25`](https://github.com/craigerl/aprsd/commit/7ccfc253cf4d881b4888c3b4040dc9e119fb74dc)
|
464
|
-
- Decouple admin web interface from server command [`ff39239`](https://github.com/craigerl/aprsd/commit/ff392395ed9e4eb8fcc46e8ec475ff82f033c45b)
|
465
|
-
- Added missing conf [`f4a6dfc`](https://github.com/craigerl/aprsd/commit/f4a6dfc8a0ccff5d6cdf3abf511eaae537e60eaa)
|
466
|
-
- Added new docs files for 3.0.0 [`29b8764`](https://github.com/craigerl/aprsd/commit/29b8764124894f25849750890074a7e5a571000a)
|
467
|
-
- Cleaned out all references to messaging [`bfc0a5a`](https://github.com/craigerl/aprsd/commit/bfc0a5a1e9bd56c808edac679a50426efc5d322e)
|
468
477
|
- Started using dataclasses to describe packets [`082db73`](https://github.com/craigerl/aprsd/commit/082db7325de50c508a96db225ad196e47fbaf806)
|
469
|
-
- Updated Healthcheck to use rpc to call aprsd [`c5acdba`](https://github.com/craigerl/aprsd/commit/c5acdba6dee13bba189af106925cb33c8adf078e)
|
470
|
-
- reworked collecting and reporting stats [`e37f99a`](https://github.com/craigerl/aprsd/commit/e37f99a6ddbb32e5d1a59f30c7179bb81451fc6a)
|
471
|
-
- Removed Packet.send() [`4a65f52`](https://github.com/craigerl/aprsd/commit/4a65f52939b38eff8c664742c58b62e69ca24a51)
|
472
478
|
- Updated plugins and plugin interfaces for Packet [`67a441d`](https://github.com/craigerl/aprsd/commit/67a441d443f4460b0db0c67f404b6d5db85024af)
|
479
|
+
- Reworked all packet processing [`94fb481`](https://github.com/craigerl/aprsd/commit/94fb481014dea7960c0a029b3deb8828fea22ad8)
|
480
|
+
- cleanup webchat [`1b49f12`](https://github.com/craigerl/aprsd/commit/1b49f128a96197bd11d47feba203d1029e022a50)
|
481
|
+
- Added contructing a GPSPacket for sending [`59e5af8`](https://github.com/craigerl/aprsd/commit/59e5af8ee59bfeac4c72662c42bcf0663162e3ef)
|
482
|
+
- Cleaned out all references to messaging [`bfc0a5a`](https://github.com/craigerl/aprsd/commit/bfc0a5a1e9bd56c808edac679a50426efc5d322e)
|
473
483
|
- More messaging -> packets cleanup [`6030cb3`](https://github.com/craigerl/aprsd/commit/6030cb394ba72e70c1e3cf161f3ddef39ddf183e)
|
474
|
-
-
|
475
|
-
- Cleaned up PluginManager [`220fb58`](https://github.com/craigerl/aprsd/commit/220fb58f9779946c33429613ff397c7082fe84eb)
|
476
|
-
- Added ObjectPacket [`ed284a4`](https://github.com/craigerl/aprsd/commit/ed284a42cc0b29357c1f2f3182db029874394216)
|
484
|
+
- Fix packets timestamp to int [`f1de7bc`](https://github.com/craigerl/aprsd/commit/f1de7bc6815be2ee129a27ff4a898abbc48a5b51)
|
477
485
|
- Cleaned up packet transmit class attributes [`c201c93`](https://github.com/craigerl/aprsd/commit/c201c93b5d01f73eb2a308d309103e114e5f6ff1)
|
478
|
-
-
|
479
|
-
- Ensure server command main thread doesn't exit [`c5aba17`](https://github.com/craigerl/aprsd/commit/c5aba17ad1eee81bfbdae33ccfd375c0b92a2411)
|
480
|
-
- Fix some unit tests and loading of CONF w/o file [`e9a954a`](https://github.com/craigerl/aprsd/commit/e9a954a8fd79059995f8e44832bea040c9a5320a)
|
481
|
-
- Updated webchat and listen for queue based RX [`ad0d89d`](https://github.com/craigerl/aprsd/commit/ad0d89db401847a44b2d2af82d9901b40ecd9b5a)
|
486
|
+
- Make tracking objectstores work w/o initializing [`1187f1e`](https://github.com/craigerl/aprsd/commit/1187f1ed738890b63201c136e607a88781a8b36e)
|
482
487
|
- Change RX packet processing to enqueu [`123b3ff`](https://github.com/craigerl/aprsd/commit/123b3ffa81c5eb6366378cd4e28d936086af7686)
|
488
|
+
- Removed unused threading code [`9fc5356`](https://github.com/craigerl/aprsd/commit/9fc5356456a60cd96c085a842cbeed0eb315e949)
|
489
|
+
- reworked collecting and reporting stats [`e37f99a`](https://github.com/craigerl/aprsd/commit/e37f99a6ddbb32e5d1a59f30c7179bb81451fc6a)
|
490
|
+
- Updated webchat and listen for queue based RX [`ad0d89d`](https://github.com/craigerl/aprsd/commit/ad0d89db401847a44b2d2af82d9901b40ecd9b5a)
|
483
491
|
- Added WeatherPacket encoding [`899a6e5`](https://github.com/craigerl/aprsd/commit/899a6e5363690a1463c6102b30033e6ff1888c3c)
|
484
|
-
- Cleaned up KISS interfaces use of old config [`0758a58`](https://github.com/craigerl/aprsd/commit/0758a581013fe0c3f0b69bb3d8d3087969e20673)
|
485
|
-
- Update regex processing and regex for plugins [`3d0bb8a`](https://github.com/craigerl/aprsd/commit/3d0bb8ae8e92c7a23352f06aa951c6b18a0c2da0)
|
486
|
-
- Added contructing a GPSPacket for sending [`59e5af8`](https://github.com/craigerl/aprsd/commit/59e5af8ee59bfeac4c72662c42bcf0663162e3ef)
|
487
492
|
- Add packet filtering for aprsd listen [`d01392f`](https://github.com/craigerl/aprsd/commit/d01392f6a588b38134875acfa085f5664febacf6)
|
488
|
-
-
|
489
|
-
- Added rain formatting unit tests to WeatherPacket [`ce3b29f`](https://github.com/craigerl/aprsd/commit/ce3b29f99023964b4922806d476ddc2678edeee8)
|
490
|
-
- Removed unused threading code [`9fc5356`](https://github.com/craigerl/aprsd/commit/9fc5356456a60cd96c085a842cbeed0eb315e949)
|
491
|
-
- Fix PluginManager.get_plugins [`2ca3636`](https://github.com/craigerl/aprsd/commit/2ca36362ec5ce9f6083487eb903f2132ac91fcb2)
|
492
|
-
- cleanup webchat [`1b49f12`](https://github.com/craigerl/aprsd/commit/1b49f128a96197bd11d47feba203d1029e022a50)
|
493
|
-
- Update Changelog for 3.0.0 [`4a10511`](https://github.com/craigerl/aprsd/commit/4a10511d8bb58b9b7785f4469db6543e731f1418)
|
494
|
-
- reworked usage of importlib.metadata [`a5520b2`](https://github.com/craigerl/aprsd/commit/a5520b2cd3b977079f1971f2ce6f383340304884)
|
495
|
-
- Dockerfile now produces aprsd.conf [`02e4f78`](https://github.com/craigerl/aprsd/commit/02e4f78d0e3be5098333263cfafb2cc3debdff81)
|
496
|
-
- Fix Rain reporting in WeatherPacket send. [`bbcd7c8`](https://github.com/craigerl/aprsd/commit/bbcd7c8a5bc3e457bbce2138029b236a7607c61e)
|
493
|
+
- Fix pep8 violation [`a1188d2`](https://github.com/craigerl/aprsd/commit/a1188d29d41df7a609fe29d23010cf8fb50fa5cc)
|
497
494
|
- Fix some WeatherPacket formatting [`f19043e`](https://github.com/craigerl/aprsd/commit/f19043ecd994ffd2d1c6958f08a47d5328c64258)
|
498
|
-
- Fix packets timestamp to int [`f1de7bc`](https://github.com/craigerl/aprsd/commit/f1de7bc6815be2ee129a27ff4a898abbc48a5b51)
|
499
|
-
- Fixed save directory default [`233d49b`](https://github.com/craigerl/aprsd/commit/233d49bb4c3cf96f4979aa8e878635376cffad5b)
|
500
|
-
- Fixed pep8 failure [`6391c7e`](https://github.com/craigerl/aprsd/commit/6391c7eed691f912de49de0aa3e0a0fdb5a2edc2)
|
501
|
-
- Removed url option from healthcheck in dev [`fe2f7b5`](https://github.com/craigerl/aprsd/commit/fe2f7b5b71d3aba24f9530e3371450b800f8cc81)
|
502
|
-
- Updated docker/bin/run.sh to use new conf [`79e7ed1`](https://github.com/craigerl/aprsd/commit/79e7ed1e915e62ed2392fed27d79da8619f3eef0)
|
503
495
|
- Update routing for weatherpacket [`088cbb8`](https://github.com/craigerl/aprsd/commit/088cbb81eddd3bf947e2e2bd970b0f3ac094bd41)
|
504
|
-
- Fix pep8 violation [`a1188d2`](https://github.com/craigerl/aprsd/commit/a1188d29d41df7a609fe29d23010cf8fb50fa5cc)
|
505
496
|
- Cleaned up PluginManager [`7dfa4e6`](https://github.com/craigerl/aprsd/commit/7dfa4e6dbf1924b5ce1061e6be2d1a00ffd095d8)
|
497
|
+
- Cleaned up PluginManager [`220fb58`](https://github.com/craigerl/aprsd/commit/220fb58f9779946c33429613ff397c7082fe84eb)
|
498
|
+
- Fix PluginManager.get_plugins [`2ca3636`](https://github.com/craigerl/aprsd/commit/2ca36362ec5ce9f6083487eb903f2132ac91fcb2)
|
499
|
+
- Removed watchlist plugins [`f464ff0`](https://github.com/craigerl/aprsd/commit/f464ff0785b2b6a2869effa4d1c5cca706199de4)
|
500
|
+
- Removed Packet.send() [`4a65f52`](https://github.com/craigerl/aprsd/commit/4a65f52939b38eff8c664742c58b62e69ca24a51)
|
501
|
+
- Fix Rain reporting in WeatherPacket send. [`bbcd7c8`](https://github.com/craigerl/aprsd/commit/bbcd7c8a5bc3e457bbce2138029b236a7607c61e)
|
502
|
+
- Added rain formatting unit tests to WeatherPacket [`ce3b29f`](https://github.com/craigerl/aprsd/commit/ce3b29f99023964b4922806d476ddc2678edeee8)
|
503
|
+
- Removed references to old custom config [`7ccfc25`](https://github.com/craigerl/aprsd/commit/7ccfc253cf4d881b4888c3b4040dc9e119fb74dc)
|
504
|
+
- Added missing conf [`f4a6dfc`](https://github.com/craigerl/aprsd/commit/f4a6dfc8a0ccff5d6cdf3abf511eaae537e60eaa)
|
505
|
+
- Fix some unit tests and loading of CONF w/o file [`e9a954a`](https://github.com/craigerl/aprsd/commit/e9a954a8fd79059995f8e44832bea040c9a5320a)
|
506
|
+
- Dockerfile now produces aprsd.conf [`02e4f78`](https://github.com/craigerl/aprsd/commit/02e4f78d0e3be5098333263cfafb2cc3debdff81)
|
507
|
+
- Decouple admin web interface from server command [`ff39239`](https://github.com/craigerl/aprsd/commit/ff392395ed9e4eb8fcc46e8ec475ff82f033c45b)
|
508
|
+
- Update documentation and README [`c929689`](https://github.com/craigerl/aprsd/commit/c929689647159804209f1bd3711a563ba395cb18)
|
509
|
+
- Change ordering of starting up of server command [`83d2e70`](https://github.com/craigerl/aprsd/commit/83d2e708ebb68ce743a1b3db9e9bea42f3bcda32)
|
510
|
+
- Update regex processing and regex for plugins [`3d0bb8a`](https://github.com/craigerl/aprsd/commit/3d0bb8ae8e92c7a23352f06aa951c6b18a0c2da0)
|
511
|
+
- Added ObjectPacket [`ed284a4`](https://github.com/craigerl/aprsd/commit/ed284a42cc0b29357c1f2f3182db029874394216)
|
512
|
+
- Updated docker/bin/run.sh to use new conf [`79e7ed1`](https://github.com/craigerl/aprsd/commit/79e7ed1e915e62ed2392fed27d79da8619f3eef0)
|
513
|
+
- Updated Healthcheck to use rpc to call aprsd [`c5acdba`](https://github.com/craigerl/aprsd/commit/c5acdba6dee13bba189af106925cb33c8adf078e)
|
514
|
+
- Removed url option from healthcheck in dev [`fe2f7b5`](https://github.com/craigerl/aprsd/commit/fe2f7b5b71d3aba24f9530e3371450b800f8cc81)
|
515
|
+
- Added new docs files for 3.0.0 [`29b8764`](https://github.com/craigerl/aprsd/commit/29b8764124894f25849750890074a7e5a571000a)
|
516
|
+
- reworked usage of importlib.metadata [`a5520b2`](https://github.com/craigerl/aprsd/commit/a5520b2cd3b977079f1971f2ce6f383340304884)
|
517
|
+
- Cleaned up KISS interfaces use of old config [`0758a58`](https://github.com/craigerl/aprsd/commit/0758a581013fe0c3f0b69bb3d8d3087969e20673)
|
518
|
+
- Fixed pep8 failure [`6391c7e`](https://github.com/craigerl/aprsd/commit/6391c7eed691f912de49de0aa3e0a0fdb5a2edc2)
|
519
|
+
- Fixed save directory default [`233d49b`](https://github.com/craigerl/aprsd/commit/233d49bb4c3cf96f4979aa8e878635376cffad5b)
|
520
|
+
- Ensure server command main thread doesn't exit [`c5aba17`](https://github.com/craigerl/aprsd/commit/c5aba17ad1eee81bfbdae33ccfd375c0b92a2411)
|
521
|
+
- Update Changelog for 3.0.0 [`4a10511`](https://github.com/craigerl/aprsd/commit/4a10511d8bb58b9b7785f4469db6543e731f1418)
|
506
522
|
|
507
523
|
#### [v2.6.1](https://github.com/craigerl/aprsd/compare/v2.6.0...v2.6.1)
|
508
524
|
|
509
525
|
> 16 December 2022
|
510
526
|
|
511
527
|
- Collections fix [`#105`](https://github.com/craigerl/aprsd/pull/105)
|
528
|
+
- Update workflow [`40f23dc`](https://github.com/craigerl/aprsd/commit/40f23dcb482f39ba2fe233578bbb36f5d2da17b7)
|
529
|
+
- Fix for Collections change in 3.10 [`9d19502`](https://github.com/craigerl/aprsd/commit/9d19502dd80133d74b516a09addfd38bc088c241)
|
530
|
+
- remove armv7 build RUST sucks [`321c5a2`](https://github.com/craigerl/aprsd/commit/321c5a2c25cc88a93dc60c3ef351413473c76517)
|
512
531
|
- Add unit tests for webchat [`19e5cfa`](https://github.com/craigerl/aprsd/commit/19e5cfa9cc7605ee39be6869efb40261c33e4efb)
|
513
532
|
- Try and fix broken 32bit qemu builds on 64bit system [`87cbcaa`](https://github.com/craigerl/aprsd/commit/87cbcaa47fc52be03d7f6763e5d2142dc7d350a1)
|
514
533
|
- Fixed position report for webchat beacon [`9571b0b`](https://github.com/craigerl/aprsd/commit/9571b0bb38f444f5b52d3b36b9efd2e8e7a331d5)
|
515
|
-
- Fix for Collections change in 3.10 [`9d19502`](https://github.com/craigerl/aprsd/commit/9d19502dd80133d74b516a09addfd38bc088c241)
|
516
|
-
- remove armv7 build RUST sucks [`321c5a2`](https://github.com/craigerl/aprsd/commit/321c5a2c25cc88a93dc60c3ef351413473c76517)
|
517
|
-
- Update workflow [`40f23dc`](https://github.com/craigerl/aprsd/commit/40f23dcb482f39ba2fe233578bbb36f5d2da17b7)
|
518
534
|
|
519
535
|
#### [v2.6.0](https://github.com/craigerl/aprsd/compare/v2.5.9...v2.6.0)
|
520
536
|
|
@@ -533,83 +549,83 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
533
549
|
- Fix typo on exception [`#94`](https://github.com/craigerl/aprsd/pull/94)
|
534
550
|
- Fix plugins not installing via docker-compose [`#97`](https://github.com/craigerl/aprsd/pull/97)
|
535
551
|
- Merge pull request #96 from ranguli/fix-pypi-scraping [`#92`](https://github.com/craigerl/aprsd/issues/92)
|
536
|
-
-
|
537
|
-
-
|
538
|
-
- Refactored threads a bit [`51b80cd`](https://github.com/craigerl/aprsd/commit/51b80cd4eaa4441f4fb6c9344b7c4e99558811ff)
|
539
|
-
- Refactored threads.py [`347a6d6`](https://github.com/craigerl/aprsd/commit/347a6d69f7825a408553a4ee08002917c5a6ab73)
|
540
|
-
- Got webchat working with KISS tcp [`7d970cb`](https://github.com/craigerl/aprsd/commit/7d970cbe7029610aa2522c1c78bf60bf10b35417)
|
541
|
-
- Add GPS beacon to mobile page [`ee96108`](https://github.com/craigerl/aprsd/commit/ee96108324ce729abb3683e94a69c9682ecc503f)
|
542
|
-
- Use new aprsd.callsign as the main callsign [`ad79ed1`](https://github.com/craigerl/aprsd/commit/ad79ed1261702ae0f278e91d7369de02b20a0af3)
|
552
|
+
- for 2.5.9 [`03a20eb`](https://github.com/craigerl/aprsd/commit/03a20ebb5caf95763fee270c157f6e802c5e68b4)
|
553
|
+
- Fix logging issue with log messages [`e739441`](https://github.com/craigerl/aprsd/commit/e739441268569748c42e059c02343e92dd00db64)
|
543
554
|
- Fixed up config option checking for KISS [`1c052a6`](https://github.com/craigerl/aprsd/commit/1c052a63c0ba896d43c06f1a06d73b73d2d2370e)
|
544
|
-
- Prep for 2.6.0 release [`5891c71`](https://github.com/craigerl/aprsd/commit/5891c71483229f3554d7c5b126412e464956e1b3)
|
545
555
|
- Refactor utils to directory [`bed060f`](https://github.com/craigerl/aprsd/commit/bed060f1c5c4e2265c90ac9dbb8db4e81a530e0a)
|
546
|
-
-
|
547
|
-
-
|
548
|
-
- Update packets to use wrapt [`967959e`](https://github.com/craigerl/aprsd/commit/967959e7b3d2d890da9476ca76a0ef1e8a3b163d)
|
549
|
-
- Update aprsd thread base class to use queue [`9b0c626`](https://github.com/craigerl/aprsd/commit/9b0c626b59406102cdab85b7a9de20cf53563953)
|
550
|
-
- create master-build.yml [`1383352`](https://github.com/craigerl/aprsd/commit/1383352e7566b35b8a14fbe98b8ea1f8d118e382)
|
551
|
-
- added workflow for building specific version [`d40927d`](https://github.com/craigerl/aprsd/commit/d40927d1c3f0890f79cb76d8b0c537e0ecf887e6)
|
552
|
-
- Update Dockerfile and build.sh [`c1db238`](https://github.com/craigerl/aprsd/commit/c1db238719eba7e0834316e5618e220f4458685b)
|
556
|
+
- Refactored threads.py [`347a6d6`](https://github.com/craigerl/aprsd/commit/347a6d69f7825a408553a4ee08002917c5a6ab73)
|
557
|
+
- Fixed pep8 errors [`29b84b4`](https://github.com/craigerl/aprsd/commit/29b84b453be5bf1ab4ba0f40bae33bc5057e42c7)
|
553
558
|
- Moved trace.py to utils [`a628439`](https://github.com/craigerl/aprsd/commit/a62843920a6742cf22c966e6d2a05155f20aeb17)
|
554
|
-
- Try sending raw APRSFrames to aioax25 [`2ce50d8`](https://github.com/craigerl/aprsd/commit/2ce50d886149d055357e44a0cbc2fddad81d7824)
|
555
559
|
- Moved log.py to logging [`1ccb2f7`](https://github.com/craigerl/aprsd/commit/1ccb2f76953d113df482902895d7014aee778195)
|
556
|
-
-
|
557
|
-
-
|
558
|
-
-
|
559
|
-
-
|
560
|
-
-
|
561
|
-
-
|
562
|
-
-
|
563
|
-
-
|
564
|
-
- Dump config with aprsd dev test-plugin [`fc1ca52`](https://github.com/craigerl/aprsd/commit/fc1ca525934c13a72c1e0315898776a57a675814)
|
560
|
+
- Added webchat command [`585d55f`](https://github.com/craigerl/aprsd/commit/585d55f10dca57b8e1dcdadfe26415b1cfa40d7e)
|
561
|
+
- Fixed access to threads refactor [`5f28788`](https://github.com/craigerl/aprsd/commit/5f2878818006397c79f6438d7dc3fbeb26b2e31e)
|
562
|
+
- Use new aprsd.callsign as the main callsign [`ad79ed1`](https://github.com/craigerl/aprsd/commit/ad79ed1261702ae0f278e91d7369de02b20a0af3)
|
563
|
+
- Try sending raw APRSFrames to aioax25 [`2ce50d8`](https://github.com/craigerl/aprsd/commit/2ce50d886149d055357e44a0cbc2fddad81d7824)
|
564
|
+
- Allow web interface when running in Docker [`b1db08a`](https://github.com/craigerl/aprsd/commit/b1db08a08c3a3b812fcb32829a62218c2d3ae132)
|
565
|
+
- Merge pull request #95 from ranguli/patch-1 [`74e4e2c`](https://github.com/craigerl/aprsd/commit/74e4e2c4f5242218b17400ee37d12506c31faec1)
|
566
|
+
- Fix PyPI scraping [`9ffd320`](https://github.com/craigerl/aprsd/commit/9ffd320353a03ab469940f9dec87ad11a1efe9a0)
|
567
|
+
- Fix typo in docker-compose.yml [`389304c`](https://github.com/craigerl/aprsd/commit/389304c3f2bee31d8c743d6ba8759204b0b80d13)
|
565
568
|
- Update dev-requirements pip-tools [`7db2242`](https://github.com/craigerl/aprsd/commit/7db2242060d8146ff4d1372fbf72df7741522ad5)
|
569
|
+
- Added container build action [`b50f343`](https://github.com/craigerl/aprsd/commit/b50f343440febca1d040b2463b68011aa8404526)
|
570
|
+
- create master-build.yml [`1383352`](https://github.com/craigerl/aprsd/commit/1383352e7566b35b8a14fbe98b8ea1f8d118e382)
|
571
|
+
- Remove docker build from test [`f9d3bc4`](https://github.com/craigerl/aprsd/commit/f9d3bc433f754b788e2fc5a988f74944239812de)
|
572
|
+
- Only tag master build as master [`9671dac`](https://github.com/craigerl/aprsd/commit/9671dacb1cf4d3cdd8ed03d530ad07164b1e2449)
|
573
|
+
- remove linux/arm/v6 from docker platform build [`358aa59`](https://github.com/craigerl/aprsd/commit/358aa5904235adf36dd6ad994ba5b82fa9794537)
|
574
|
+
- Added rustc and cargo to Dockerfile [`3580425`](https://github.com/craigerl/aprsd/commit/3580425ca3ec9fa9bf6856e39aa58f3512a0dee0)
|
575
|
+
- remove arm build for now [`ab65836`](https://github.com/craigerl/aprsd/commit/ab6583666f8a3eb7853927f8a196c88a773d5a5b)
|
566
576
|
- Add remving existing requirements [`e5f60b5`](https://github.com/craigerl/aprsd/commit/e5f60b5ce1800bf1bdb39d7b6eea769a8ff646a4)
|
577
|
+
- Update packets to use wrapt [`967959e`](https://github.com/craigerl/aprsd/commit/967959e7b3d2d890da9476ca76a0ef1e8a3b163d)
|
578
|
+
- Update aprsd thread base class to use queue [`9b0c626`](https://github.com/craigerl/aprsd/commit/9b0c626b59406102cdab85b7a9de20cf53563953)
|
579
|
+
- Added click auto_envvar_prefix [`d717a22`](https://github.com/craigerl/aprsd/commit/d717a22717ac1b0422b253dea052fe405aed8292)
|
580
|
+
- Got webchat working with KISS tcp [`7d970cb`](https://github.com/craigerl/aprsd/commit/7d970cbe7029610aa2522c1c78bf60bf10b35417)
|
581
|
+
- Updated requirements [`075078b`](https://github.com/craigerl/aprsd/commit/075078b52029cb0544e2d154e6064b783167b615)
|
582
|
+
- Dump config with aprsd dev test-plugin [`fc1ca52`](https://github.com/craigerl/aprsd/commit/fc1ca525934c13a72c1e0315898776a57a675814)
|
583
|
+
- Removed TimeOpenCageDataPlugin [`528bdb9`](https://github.com/craigerl/aprsd/commit/528bdb99e73edb94c984c7db7ca00849128e1dc0)
|
584
|
+
- change github workflow [`17e7846`](https://github.com/craigerl/aprsd/commit/17e784629e18b8b7ac4275b49f5a50194e71460b)
|
567
585
|
- Fixed failing unit tests [`5acddbd`](https://github.com/craigerl/aprsd/commit/5acddbd466dca342e7eca03d58485cb1a50471e8)
|
568
|
-
-
|
569
|
-
-
|
570
|
-
-
|
571
|
-
-
|
586
|
+
- Remove python 3.7 from docker build github [`b41e4a9`](https://github.com/craigerl/aprsd/commit/b41e4a9ef3759ac819dc9740cfb276515d090fa7)
|
587
|
+
- Add support for building linux/arm/v7 [`117f81f`](https://github.com/craigerl/aprsd/commit/117f81f55fe1a3e4e347d1c0dfbdb97e0f553f52)
|
588
|
+
- Build on the source not released aprsd [`d9b3973`](https://github.com/craigerl/aprsd/commit/d9b39734e6a236485ab08f9c70f215fdd9dbb876)
|
589
|
+
- Fixed build.sh [`d1a0a98`](https://github.com/craigerl/aprsd/commit/d1a0a988f2cb2cbb015e4c00fa80bfa1db3d8a5f)
|
590
|
+
- specify Dockerfile-dev [`4111d16`](https://github.com/craigerl/aprsd/commit/4111d16aafe456cba998183db0e745edef4f7777)
|
572
591
|
- Allow passing in version to the Dockerfile [`d5e56b5`](https://github.com/craigerl/aprsd/commit/d5e56b553eac3f327057cedd5b03c69156e23a1c)
|
573
|
-
-
|
574
|
-
- remove dev setting for template [`726c8f4`](https://github.com/craigerl/aprsd/commit/726c8f4f2f26c8fc5c2b868d1e482e0e662e6ed3)
|
575
|
-
- Fixed access to threads refactor [`5f28788`](https://github.com/craigerl/aprsd/commit/5f2878818006397c79f6438d7dc3fbeb26b2e31e)
|
576
|
-
- Update Dockerfile to 22.04 [`4fe99c3`](https://github.com/craigerl/aprsd/commit/4fe99c35b5ced1e79c679b28292d60c25271685c)
|
577
|
-
- Ignore callsign case while processing packets [`44696fb`](https://github.com/craigerl/aprsd/commit/44696fbc56e57c1a0346074e3416e126ac1897ab)
|
592
|
+
- added workflow for building specific version [`d40927d`](https://github.com/craigerl/aprsd/commit/d40927d1c3f0890f79cb76d8b0c537e0ecf887e6)
|
578
593
|
- remove linux/arm/v7 for official builds for now [`5add0f9`](https://github.com/craigerl/aprsd/commit/5add0f958d466172aa7a57b44e18bf27c8c0e3db)
|
579
|
-
-
|
580
|
-
- Remove python 3.7 from docker build github [`b41e4a9`](https://github.com/craigerl/aprsd/commit/b41e4a9ef3759ac819dc9740cfb276515d090fa7)
|
581
|
-
- change github workflow [`17e7846`](https://github.com/craigerl/aprsd/commit/17e784629e18b8b7ac4275b49f5a50194e71460b)
|
582
|
-
- Added click auto_envvar_prefix [`d717a22`](https://github.com/craigerl/aprsd/commit/d717a22717ac1b0422b253dea052fe405aed8292)
|
583
|
-
- remove arm build for now [`ab65836`](https://github.com/craigerl/aprsd/commit/ab6583666f8a3eb7853927f8a196c88a773d5a5b)
|
584
|
-
- Added rustc and cargo to Dockerfile [`3580425`](https://github.com/craigerl/aprsd/commit/3580425ca3ec9fa9bf6856e39aa58f3512a0dee0)
|
585
|
-
- remove linux/arm/v6 from docker platform build [`358aa59`](https://github.com/craigerl/aprsd/commit/358aa5904235adf36dd6ad994ba5b82fa9794537)
|
586
|
-
- Fix typo in docker-compose.yml [`389304c`](https://github.com/craigerl/aprsd/commit/389304c3f2bee31d8c743d6ba8759204b0b80d13)
|
587
|
-
- Allow web interface when running in Docker [`b1db08a`](https://github.com/craigerl/aprsd/commit/b1db08a08c3a3b812fcb32829a62218c2d3ae132)
|
588
|
-
- Update workflow again [`a6015ad`](https://github.com/craigerl/aprsd/commit/a6015adecced632ae56703c95fb51546c9da2902)
|
589
|
-
- Removed Makefile comment. [`935f820`](https://github.com/craigerl/aprsd/commit/935f820271dff5ee6b851f85becd5fb51d0780f9)
|
594
|
+
- Ignore callsign case while processing packets [`44696fb`](https://github.com/craigerl/aprsd/commit/44696fbc56e57c1a0346074e3416e126ac1897ab)
|
590
595
|
- Allow werkzeug for admin interface. [`5067f74`](https://github.com/craigerl/aprsd/commit/5067f745ca01be677d012985bd3888f98095e041)
|
591
596
|
- Allow werkzeug for admin interface. [`98fe9da`](https://github.com/craigerl/aprsd/commit/98fe9daac5cc5c13f29aef401c935925cf8d2198)
|
592
|
-
-
|
593
|
-
-
|
597
|
+
- Add GPS beacon to mobile page [`ee96108`](https://github.com/craigerl/aprsd/commit/ee96108324ce729abb3683e94a69c9682ecc503f)
|
598
|
+
- remove dev setting for template [`726c8f4`](https://github.com/craigerl/aprsd/commit/726c8f4f2f26c8fc5c2b868d1e482e0e662e6ed3)
|
599
|
+
- Mark packets as acked in MsgTracker [`480094b`](https://github.com/craigerl/aprsd/commit/480094b0d47edeeac23323211147088e1f637d70)
|
600
|
+
- Refactored threads a bit [`51b80cd`](https://github.com/craigerl/aprsd/commit/51b80cd4eaa4441f4fb6c9344b7c4e99558811ff)
|
601
|
+
- Update to latest Makefile.venv [`e4f93a2`](https://github.com/craigerl/aprsd/commit/e4f93a2ab4dbc416a93a51ba14650531f17ee02c)
|
602
|
+
- Added pyopenssl for https for webchat [`6d34d9c`](https://github.com/craigerl/aprsd/commit/6d34d9c514857798f7b3dbc47e2a3e14b95493a0)
|
603
|
+
- Update Makefile for dev vs. run environments [`576301c`](https://github.com/craigerl/aprsd/commit/576301ca209f59ed621a20c9dbc8b4e55d7a76a3)
|
604
|
+
- Removed Makefile comment. [`935f820`](https://github.com/craigerl/aprsd/commit/935f820271dff5ee6b851f85becd5fb51d0780f9)
|
605
|
+
- Update requirements [`68472b0`](https://github.com/craigerl/aprsd/commit/68472b0d8402ddcf48164fcf8e2f11963aff8dd6)
|
606
|
+
- Prep for 2.6.0 release [`5891c71`](https://github.com/craigerl/aprsd/commit/5891c71483229f3554d7c5b126412e464956e1b3)
|
607
|
+
- Update Dockerfile and build.sh [`c1db238`](https://github.com/craigerl/aprsd/commit/c1db238719eba7e0834316e5618e220f4458685b)
|
608
|
+
- Update Dockerfile to 22.04 [`4fe99c3`](https://github.com/craigerl/aprsd/commit/4fe99c35b5ced1e79c679b28292d60c25271685c)
|
609
|
+
- Update workflow again [`a6015ad`](https://github.com/craigerl/aprsd/commit/a6015adecced632ae56703c95fb51546c9da2902)
|
594
610
|
|
595
611
|
#### [v2.5.9](https://github.com/craigerl/aprsd/compare/v2.5.8...v2.5.9)
|
596
612
|
|
597
613
|
> 26 January 2022
|
598
614
|
|
599
|
-
- FIX: logging exceptions [`6257c9e`](https://github.com/craigerl/aprsd/commit/6257c9ea908158bc68e37fd8984b0a3119deff0d)
|
600
|
-
- Updated build and run for rich lib [`b00c8db`](https://github.com/craigerl/aprsd/commit/b00c8db3d6ddebe7f485a8888a52b87e43d8415a)
|
601
615
|
- update build for 2.5.8 [`79270f9`](https://github.com/craigerl/aprsd/commit/79270f95becc8ecf3912661a5bd3832ab5cd9341)
|
616
|
+
- Updated build and run for rich lib [`b00c8db`](https://github.com/craigerl/aprsd/commit/b00c8db3d6ddebe7f485a8888a52b87e43d8415a)
|
617
|
+
- FIX: logging exceptions [`6257c9e`](https://github.com/craigerl/aprsd/commit/6257c9ea908158bc68e37fd8984b0a3119deff0d)
|
602
618
|
|
603
619
|
#### [v2.5.8](https://github.com/craigerl/aprsd/compare/v2.5.7...v2.5.8)
|
604
620
|
|
605
621
|
> 7 January 2022
|
606
622
|
|
607
|
-
- Updated list-plugins [`764730c`](https://github.com/craigerl/aprsd/commit/764730c123e020235615b4be8ab1d26b43fc96be)
|
608
623
|
- Send Message command defaults to config [`a7bbde4`](https://github.com/craigerl/aprsd/commit/a7bbde4a439258691feb0429e371828d5b024a64)
|
609
624
|
- Added unit tests for dev test-plugin [`2f6e7e1`](https://github.com/craigerl/aprsd/commit/2f6e7e17e835d7b659cf3186c17d5975dd503019)
|
610
|
-
- For 2.5.8 [`29a60b7`](https://github.com/craigerl/aprsd/commit/29a60b7ed04a29de00d32e66ca42f4b204238389)
|
611
|
-
- Removed debug code [`e8100d8`](https://github.com/craigerl/aprsd/commit/e8100d8777bc38423e9d20800d2b8cfce345dc14)
|
612
625
|
- Renamed virtualenv dir to .aprsd-venv [`610e40a`](https://github.com/craigerl/aprsd/commit/610e40aecdd75212249b75f0a23b09f4caa25e79)
|
626
|
+
- Updated list-plugins [`764730c`](https://github.com/craigerl/aprsd/commit/764730c123e020235615b4be8ab1d26b43fc96be)
|
627
|
+
- Removed debug code [`e8100d8`](https://github.com/craigerl/aprsd/commit/e8100d8777bc38423e9d20800d2b8cfce345dc14)
|
628
|
+
- For 2.5.8 [`29a60b7`](https://github.com/craigerl/aprsd/commit/29a60b7ed04a29de00d32e66ca42f4b204238389)
|
613
629
|
|
614
630
|
#### [v2.5.7](https://github.com/craigerl/aprsd/compare/v2.5.6...v2.5.7)
|
615
631
|
|
@@ -630,27 +646,27 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
630
646
|
- Unittests [`#75`](https://github.com/craigerl/aprsd/pull/75)
|
631
647
|
- Rich logging [`#74`](https://github.com/craigerl/aprsd/pull/74)
|
632
648
|
- Added LOG_LEVEL env variable for the docker [`#73`](https://github.com/craigerl/aprsd/pull/73)
|
633
|
-
- Added NotifyPlugin unit tests and more [`0ad791b`](https://github.com/craigerl/aprsd/commit/0ad791bdd917495d8acd43f1895bbd16535af5c6)
|
634
649
|
- Added python rich library based logging. [`1d5f76d`](https://github.com/craigerl/aprsd/commit/1d5f76defc3da693ba8b73b7ae655dc6e060ecb0)
|
635
|
-
-
|
636
|
-
- Added test_location to test LocationPlugin [`5d6ac5c`](https://github.com/craigerl/aprsd/commit/5d6ac5cf31836da967377bbc15e3aca6c0322a96)
|
650
|
+
- Add tracing for dev command [`1233137`](https://github.com/craigerl/aprsd/commit/1233137caf1c08114a2a87f11004b3e046198ac0)
|
637
651
|
- Fixed some pep8 errors [`b5b286e`](https://github.com/craigerl/aprsd/commit/b5b286e75c502edc7eee29e3b10450d41dea8d86)
|
652
|
+
- Fixed the NotifyPlugin [`055835c`](https://github.com/craigerl/aprsd/commit/055835cb3cb116797e10f925a843818d8a9633e6)
|
653
|
+
- Reduced the APRSIS connection reset to 2 minutes [`d3dd087`](https://github.com/craigerl/aprsd/commit/d3dd08714bb172d8804170e421283d6794a253c7)
|
638
654
|
- Small cleanup on packet logging [`96cc07d`](https://github.com/craigerl/aprsd/commit/96cc07d15f25f9b1b116d5723a9fea7153175f19)
|
639
|
-
-
|
655
|
+
- Added NotifyPlugin unit tests and more [`0ad791b`](https://github.com/craigerl/aprsd/commit/0ad791bdd917495d8acd43f1895bbd16535af5c6)
|
656
|
+
- Added py39 to tox for tests [`a5184fb`](https://github.com/craigerl/aprsd/commit/a5184fb98cb286d6fd34df749591944af6e8faf6)
|
640
657
|
- Updated pytest output [`e0e7514`](https://github.com/craigerl/aprsd/commit/e0e75149a9fb126f255c373bcba87c22b85ea22c)
|
658
|
+
- Added test_location to test LocationPlugin [`5d6ac5c`](https://github.com/craigerl/aprsd/commit/5d6ac5cf31836da967377bbc15e3aca6c0322a96)
|
659
|
+
- Added unit tests for USWeatherPlugin, USMetarPlugin [`8ea00e9`](https://github.com/craigerl/aprsd/commit/8ea00e98886db552a83a469441ee4ec8ef644aa4)
|
641
660
|
- Tightened up the packet logging [`440c8d5`](https://github.com/craigerl/aprsd/commit/440c8d54adbebfdfef77d0a1e0dd757a755f3e51)
|
642
|
-
-
|
643
|
-
- Added py39 to tox for tests [`a5184fb`](https://github.com/craigerl/aprsd/commit/a5184fb98cb286d6fd34df749591944af6e8faf6)
|
644
|
-
- Add tracing for dev command [`1233137`](https://github.com/craigerl/aprsd/commit/1233137caf1c08114a2a87f11004b3e046198ac0)
|
645
|
-
- Reduced the APRSIS connection reset to 2 minutes [`d3dd087`](https://github.com/craigerl/aprsd/commit/d3dd08714bb172d8804170e421283d6794a253c7)
|
661
|
+
- Changelog [`b7791eb`](https://github.com/craigerl/aprsd/commit/b7791eb4fa78878a426d0348ddbfbb36c650671c)
|
646
662
|
|
647
663
|
#### [v2.5.5](https://github.com/craigerl/aprsd/compare/v2.5.4...v2.5.5)
|
648
664
|
|
649
665
|
> 28 November 2021
|
650
666
|
|
651
|
-
- Update requirements to use aprslib 0.7.0 [`e27887d`](https://github.com/craigerl/aprsd/commit/e27887db1a58e9c914e6ab24bd2d1806772600aa)
|
652
|
-
- fixed the failure during loading for objectstore [`5e50792`](https://github.com/craigerl/aprsd/commit/5e50792e805c0f8f6f034c7dc010f6918e9b64a7)
|
653
667
|
- updated docker build [`deec249`](https://github.com/craigerl/aprsd/commit/deec249c45d8e1684212577fe85a9e9fc44f0567)
|
668
|
+
- fixed the failure during loading for objectstore [`5e50792`](https://github.com/craigerl/aprsd/commit/5e50792e805c0f8f6f034c7dc010f6918e9b64a7)
|
669
|
+
- Update requirements to use aprslib 0.7.0 [`e27887d`](https://github.com/craigerl/aprsd/commit/e27887db1a58e9c914e6ab24bd2d1806772600aa)
|
654
670
|
|
655
671
|
#### [v2.5.4](https://github.com/craigerl/aprsd/compare/v2.5.3...v2.5.4)
|
656
672
|
|
@@ -669,12 +685,12 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
669
685
|
|
670
686
|
> 12 November 2021
|
671
687
|
|
672
|
-
-
|
688
|
+
- Updated Changelog [`10e34d8`](https://github.com/craigerl/aprsd/commit/10e34d8634b305e3cf0a73ece77127fc69d084c8)
|
673
689
|
- Removed requirement for aprs.fi key [`7787dc1`](https://github.com/craigerl/aprsd/commit/7787dc1be4f1115c9b7e6ef6804e1e41eea777d2)
|
674
|
-
- Healthcheck command doesn't need the aprsd.yml config [`8842fb1`](https://github.com/craigerl/aprsd/commit/8842fb1b441ed4d2ef441a71a5adc585465d765e)
|
675
690
|
- Fix test failures [`152132b`](https://github.com/craigerl/aprsd/commit/152132b0ed9772d702ad6712ad2f6e7f8caad165)
|
676
|
-
-
|
691
|
+
- Healthcheck command doesn't need the aprsd.yml config [`8842fb1`](https://github.com/craigerl/aprsd/commit/8842fb1b441ed4d2ef441a71a5adc585465d765e)
|
677
692
|
- Don't require check-version command to have a config [`a8a6b1a`](https://github.com/craigerl/aprsd/commit/a8a6b1aa076d16ba22f9b4754d6f62ed0000ebbc)
|
693
|
+
- Added new list-plugins command [`446484e`](https://github.com/craigerl/aprsd/commit/446484e631bc70e83017dc9cec5799869a54e2d3)
|
678
694
|
|
679
695
|
#### [v2.5.1](https://github.com/craigerl/aprsd/compare/v2.5.0...v2.5.1)
|
680
696
|
|
@@ -688,75 +704,75 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
688
704
|
> 9 November 2021
|
689
705
|
|
690
706
|
- Refactor cli [`#71`](https://github.com/craigerl/aprsd/pull/71)
|
707
|
+
- Fixed a problem with send-message command [`49f3ea8`](https://github.com/craigerl/aprsd/commit/49f3ea83392b98e5d1e362c37282819fb6f8dce7)
|
708
|
+
- Updated Changelog for 4.2.3 [`30df452`](https://github.com/craigerl/aprsd/commit/30df452e007b023e28dbeb1b7b19d702251bd045)
|
691
709
|
- Refactor the cli [`7d0006b`](https://github.com/craigerl/aprsd/commit/7d0006b0a6c4b05c14214609fcfe718ae7f0c146)
|
710
|
+
- Pep8 failures [`2ead6a9`](https://github.com/craigerl/aprsd/commit/2ead6a97da74cd9030f4a730ca2a40ba1d51ef05)
|
711
|
+
- Removed the need for FROMCALL in dev test-plugin [`3463c6e`](https://github.com/craigerl/aprsd/commit/3463c6eb96e44b7424c392c983c2942dd23d1f41)
|
692
712
|
- Added healthcheck to the cmds [`82def59`](https://github.com/craigerl/aprsd/commit/82def598f09abe02ad1fe63738040d886e568bf3)
|
693
|
-
-
|
694
|
-
- Updated Dockerfile's and build script for docker [`059cc86`](https://github.com/craigerl/aprsd/commit/059cc86a1144e57ff8278341f02ceb860991f664)
|
695
|
-
- Cleaned up some verbose output & colorized output [`cdcb98e`](https://github.com/craigerl/aprsd/commit/cdcb98e438df407394f95eb11a849cc5a2b066b7)
|
713
|
+
- pep8 [`8287c09`](https://github.com/craigerl/aprsd/commit/8287c09ce5ce871db09d0e70b6b6f5d0e186fd00)
|
696
714
|
- Ensure common params are honored [`9187b97`](https://github.com/craigerl/aprsd/commit/9187b9781a537ccdc9a3e200a050693c5e6b9587)
|
697
|
-
- Removed the need for FROMCALL in dev test-plugin [`3463c6e`](https://github.com/craigerl/aprsd/commit/3463c6eb96e44b7424c392c983c2942dd23d1f41)
|
698
|
-
- Fixed a problem with send-message command [`49f3ea8`](https://github.com/craigerl/aprsd/commit/49f3ea83392b98e5d1e362c37282819fb6f8dce7)
|
699
715
|
- Fixed test-plugin [`617973f`](https://github.com/craigerl/aprsd/commit/617973f56145a96eadce808f2002088106a013d4)
|
716
|
+
- Reworked all the common arguments [`89727e2`](https://github.com/craigerl/aprsd/commit/89727e2b8e602662f22b6581ac06b6220e4e4631)
|
717
|
+
- Cleaned up some verbose output & colorized output [`cdcb98e`](https://github.com/craigerl/aprsd/commit/cdcb98e438df407394f95eb11a849cc5a2b066b7)
|
718
|
+
- Updated Dockerfile's and build script for docker [`059cc86`](https://github.com/craigerl/aprsd/commit/059cc86a1144e57ff8278341f02ceb860991f664)
|
700
719
|
- Updated for v2.5.0 [`5d17809`](https://github.com/craigerl/aprsd/commit/5d17809895512a033db141384050a00f6dc700a0)
|
701
|
-
- Updated Changelog for 4.2.3 [`30df452`](https://github.com/craigerl/aprsd/commit/30df452e007b023e28dbeb1b7b19d702251bd045)
|
702
|
-
- Pep8 failures [`2ead6a9`](https://github.com/craigerl/aprsd/commit/2ead6a97da74cd9030f4a730ca2a40ba1d51ef05)
|
703
|
-
- pep8 [`8287c09`](https://github.com/craigerl/aprsd/commit/8287c09ce5ce871db09d0e70b6b6f5d0e186fd00)
|
704
720
|
|
705
721
|
#### [v2.4.2](https://github.com/craigerl/aprsd/compare/v2.4.1...v2.4.2)
|
706
722
|
|
707
723
|
> 2 November 2021
|
708
724
|
|
709
|
-
- Be more careful picking data to/from disk [`cefb581`](https://github.com/craigerl/aprsd/commit/cefb581bb802ae1d779bd3b895dd0dc8202b219c)
|
710
725
|
- Updated Changelog [`d2e8fe6`](https://github.com/craigerl/aprsd/commit/d2e8fe660f1ba293a11132424963ff775f0e2e81)
|
726
|
+
- Be more careful picking data to/from disk [`cefb581`](https://github.com/craigerl/aprsd/commit/cefb581bb802ae1d779bd3b895dd0dc8202b219c)
|
711
727
|
- Updated Changelog [`0d5b716`](https://github.com/craigerl/aprsd/commit/0d5b7166b3b787558b724d457054654965e8ae33)
|
712
728
|
|
713
729
|
#### [v2.4.1](https://github.com/craigerl/aprsd/compare/v2.4.0...v2.4.1)
|
714
730
|
|
715
731
|
> 25 October 2021
|
716
732
|
|
717
|
-
- Ensure plugins are last to be loaded. [`95fecd2`](https://github.com/craigerl/aprsd/commit/95fecd2394f77d8a64e94b44933cf6b80a9e43b6)
|
718
733
|
- Fixed email connecting to smtp server [`c8c23e6`](https://github.com/craigerl/aprsd/commit/c8c23e61850302c960dcf1d4993787070ec0fe32)
|
734
|
+
- Ensure plugins are last to be loaded. [`95fecd2`](https://github.com/craigerl/aprsd/commit/95fecd2394f77d8a64e94b44933cf6b80a9e43b6)
|
719
735
|
|
720
736
|
#### [v2.4.0](https://github.com/craigerl/aprsd/compare/v2.3.1...v2.4.0)
|
721
737
|
|
722
738
|
> 22 October 2021
|
723
739
|
|
724
740
|
- Refactoring/Cleanup [`#70`](https://github.com/craigerl/aprsd/pull/70)
|
725
|
-
-
|
741
|
+
- 2.3.1 Changelog [`65ea332`](https://github.com/craigerl/aprsd/commit/65ea33290ad54093ee5c05b727878e299461eafc)
|
726
742
|
- Refactor utils usage [`23e3876`](https://github.com/craigerl/aprsd/commit/23e3876e7b5d4a4b68101dd824afb2ec8ade5281)
|
727
|
-
-
|
728
|
-
- Added objectstore Mixin [`4233827`](https://github.com/craigerl/aprsd/commit/4233827dea27277737812003ebeee9c3a98d473d)
|
729
|
-
- Added new HelpPlugin [`3b7924b`](https://github.com/craigerl/aprsd/commit/3b7924b13d157bf263a2c8061bfb9508e3a80069)
|
743
|
+
- Refactored client classes [`270be94`](https://github.com/craigerl/aprsd/commit/270be947b59d47ba577091be119f6c8de522f3fd)
|
730
744
|
- Fixed email plugin's use of globals [`a6ed7b8`](https://github.com/craigerl/aprsd/commit/a6ed7b894b07d30a26394c3325af68ecca0afcd9)
|
731
|
-
-
|
732
|
-
- Added new SeenList [`278bb6e`](https://github.com/craigerl/aprsd/commit/278bb6e8825efec0f507ffa9482b1e78357f4099)
|
745
|
+
- Added new Config object. [`491644e`](https://github.com/craigerl/aprsd/commit/491644ece68f251c939fe43483bd39647b4cfa10)
|
733
746
|
- Fixed notify plugins [`e3c5c7b`](https://github.com/craigerl/aprsd/commit/e3c5c7b4081eb2c6403195f756483f1f8a093cec)
|
734
|
-
-
|
747
|
+
- Updated dev to use plugin manager [`c097c31`](https://github.com/craigerl/aprsd/commit/c097c31258ecf8d2c23193b8045d0b12b227b2a1)
|
748
|
+
- Increase email delay to +10 [`fdc8c0c`](https://github.com/craigerl/aprsd/commit/fdc8c0cd66f6c4662e60b3a7259b792848deb747)
|
749
|
+
- Added some server startup info logs [`30671cb`](https://github.com/craigerl/aprsd/commit/30671cbdbc6b6f95af0574fe7fdba8d8d6c3474f)
|
750
|
+
- Fixed issue with flask config [`f8d87d0`](https://github.com/craigerl/aprsd/commit/f8d87d05bbf5e8f3861c42199907b210c1d9e91b)
|
751
|
+
- Fixed send-message after config/client rework [`725bb2f`](https://github.com/craigerl/aprsd/commit/725bb2fe35d6adf0cd56e2a866bee0233c46534a)
|
735
752
|
- removed usage of config.check_config_option [`5b17228`](https://github.com/craigerl/aprsd/commit/5b17228811d303c62fe82d85a4ddf14e15d87934)
|
736
|
-
- Updated Changelog for 2.4.0 release [`a3a3a5a`](https://github.com/craigerl/aprsd/commit/a3a3a5aa236508f1682fbcead45cc1d20abaf0b9)
|
737
753
|
- Updated build.sh [`db9cbf5`](https://github.com/craigerl/aprsd/commit/db9cbf51dfff9cee20bd545b06c69375e6e76589)
|
738
754
|
- Updated aprsd-dev to use config for logfile format [`2bf85db`](https://github.com/craigerl/aprsd/commit/2bf85db21ba23bef40ff2b866a42604ad4f3aecd)
|
755
|
+
- Added new HelpPlugin [`3b7924b`](https://github.com/craigerl/aprsd/commit/3b7924b13d157bf263a2c8061bfb9508e3a80069)
|
756
|
+
- Added plugin version to stats reporting [`004795d`](https://github.com/craigerl/aprsd/commit/004795dbf10aa9f747e86159a7b5394a98f87480)
|
757
|
+
- Added new SeenList [`278bb6e`](https://github.com/craigerl/aprsd/commit/278bb6e8825efec0f507ffa9482b1e78357f4099)
|
758
|
+
- Only call stop_threads if it exists [`9150f3b`](https://github.com/craigerl/aprsd/commit/9150f3b6ff36e0a836d003f58f5c4915ce3eab8e)
|
739
759
|
- Added -num option to aprsd-dev test-plugin [`9b22122`](https://github.com/craigerl/aprsd/commit/9b2212245f8c3f53ad4845fe69dffcf708eac7bb)
|
740
|
-
- Added
|
760
|
+
- Added objectstore Mixin [`4233827`](https://github.com/craigerl/aprsd/commit/4233827dea27277737812003ebeee9c3a98d473d)
|
741
761
|
- PEP8 cleanup [`135e21c`](https://github.com/craigerl/aprsd/commit/135e21cd8d1795b594660955e7ac22c7d4989513)
|
742
|
-
-
|
743
|
-
-
|
744
|
-
- 2.3.1 Changelog [`65ea332`](https://github.com/craigerl/aprsd/commit/65ea33290ad54093ee5c05b727878e299461eafc)
|
745
|
-
- Make sure SeenList update has a from in packet [`89701c8`](https://github.com/craigerl/aprsd/commit/89701c8a7084cd3b4f535f7741c7e76aca042f28)
|
762
|
+
- Enable configuring where to save the objectstore data [`0d51634`](https://github.com/craigerl/aprsd/commit/0d51634ec28b5344ccaf279bf16246b339a483ec)
|
763
|
+
- Added SIGTERM to signal_handler [`8ee8b14`](https://github.com/craigerl/aprsd/commit/8ee8b149f1ca9d5dc82126212071cabf3ebf5e19)
|
746
764
|
- Ensure PacketList is initialized [`66c5d85`](https://github.com/craigerl/aprsd/commit/66c5d85b89c6edb5f18d283cd09342f7331f0710)
|
747
|
-
-
|
765
|
+
- Make sure SeenList update has a from in packet [`89701c8`](https://github.com/craigerl/aprsd/commit/89701c8a7084cd3b4f535f7741c7e76aca042f28)
|
748
766
|
- Fixed unit tests [`b0d25a7`](https://github.com/craigerl/aprsd/commit/b0d25a76f7f004936374675b7304b0e069a5e1b9)
|
749
|
-
-
|
750
|
-
-
|
751
|
-
- Increase email delay to +10 [`fdc8c0c`](https://github.com/craigerl/aprsd/commit/fdc8c0cd66f6c4662e60b3a7259b792848deb747)
|
752
|
-
- Added plugin version to stats reporting [`004795d`](https://github.com/craigerl/aprsd/commit/004795dbf10aa9f747e86159a7b5394a98f87480)
|
767
|
+
- Converted MsgTrack to ObjectStoreMixin [`e009791`](https://github.com/craigerl/aprsd/commit/e009791b754d3ddde52609f836e67330d2f55e20)
|
768
|
+
- Updated Changelog for 2.4.0 release [`a3a3a5a`](https://github.com/craigerl/aprsd/commit/a3a3a5aa236508f1682fbcead45cc1d20abaf0b9)
|
753
769
|
|
754
770
|
#### [v2.3.1](https://github.com/craigerl/aprsd/compare/v2.3.0...v2.3.1)
|
755
771
|
|
756
772
|
> 13 September 2021
|
757
773
|
|
758
|
-
- Fixed issue of aprs-is missing keepalive [`560e152`](https://github.com/craigerl/aprsd/commit/560e1527425153088d7d10cbdcfa5ec5479898d5)
|
759
774
|
- Fixed packet processing issue with aprsd send-message [`69b215d`](https://github.com/craigerl/aprsd/commit/69b215d4d8784f00d81591f4063381fd6c35d965)
|
775
|
+
- Fixed issue of aprs-is missing keepalive [`560e152`](https://github.com/craigerl/aprsd/commit/560e1527425153088d7d10cbdcfa5ec5479898d5)
|
760
776
|
|
761
777
|
#### [v2.3.0](https://github.com/craigerl/aprsd/compare/v2.2.1...v2.3.0)
|
762
778
|
|
@@ -764,59 +780,59 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
764
780
|
|
765
781
|
- Send Message via admin Web interface [`#59`](https://github.com/craigerl/aprsd/pull/59)
|
766
782
|
- Added the ability to use direwolf KISS socket [`#50`](https://github.com/craigerl/aprsd/pull/50)
|
767
|
-
-
|
768
|
-
- Upgraded the send-message POC to use websockets [`c941379`](https://github.com/craigerl/aprsd/commit/c941379a5c3983568253a09a68613dcb42d68340)
|
783
|
+
- Update Dockerfile to use 2.2.1 [`a7d79a6`](https://github.com/craigerl/aprsd/commit/a7d79a6e1b35164d9218ecc8e3abdf7a1503617c)
|
769
784
|
- New Admin ui send message page working. [`23cbf32`](https://github.com/craigerl/aprsd/commit/23cbf32814368fa504a1c7ce5fc1012fb899cfa0)
|
770
|
-
-
|
771
|
-
- Added enabled flag for every plugin object [`3faf41b`](https://github.com/craigerl/aprsd/commit/3faf41b203219fb3df237184e02daf2b9191a0ec)
|
785
|
+
- Upgraded the send-message POC to use websockets [`c941379`](https://github.com/craigerl/aprsd/commit/c941379a5c3983568253a09a68613dcb42d68340)
|
772
786
|
- Cleaned up some pep8 failures [`84ce60b`](https://github.com/craigerl/aprsd/commit/84ce60bc50a6d3123d9a944e0098660e31d32bf9)
|
773
|
-
-
|
787
|
+
- Rebased from master [`54c9a6b`](https://github.com/craigerl/aprsd/commit/54c9a6b55a8a102d44109ae454b4c76240ae0780)
|
788
|
+
- Got TX/RX working with aioax25+direwolf over TCP [`f4dee4b`](https://github.com/craigerl/aprsd/commit/f4dee4b202c3b29e265f340ae50f2f850f3fb1c8)
|
774
789
|
- Updated Admin UI to show KISS connections [`ca438c9`](https://github.com/craigerl/aprsd/commit/ca438c9c60dd7152d9b3e5648177cce84988bd8b)
|
775
|
-
- Added self creating Makefile help target [`d643ca3`](https://github.com/craigerl/aprsd/commit/d643ca38921f078a11cfeb534ebdf8e83e5ed350)
|
776
|
-
- Added send-message to the main admin UI [`c58031d`](https://github.com/craigerl/aprsd/commit/c58031d77275b5529f5eeb64aa04e466ffb7b85d)
|
777
|
-
- Prep 2.3.0 [`4164e89`](https://github.com/craigerl/aprsd/commit/4164e890165130c49a2e996f7040b142432684a9)
|
778
790
|
- Updated requirements [`c537b54`](https://github.com/craigerl/aprsd/commit/c537b54df64c9a47dd60764969d54afda9d766c8)
|
779
|
-
-
|
780
|
-
-
|
791
|
+
- Added send-message to the main admin UI [`c58031d`](https://github.com/craigerl/aprsd/commit/c58031d77275b5529f5eeb64aa04e466ffb7b85d)
|
792
|
+
- Removed values from forms [`1635feb`](https://github.com/craigerl/aprsd/commit/1635feb8205d42e36cc15674ab75c68000d18528)
|
781
793
|
- Fixed email validation [`0f6df5f`](https://github.com/craigerl/aprsd/commit/0f6df5fc05819787a5c57108a39495775d4e6959)
|
794
|
+
- Fixed issue at startup with notify plugin [`1ea6c05`](https://github.com/craigerl/aprsd/commit/1ea6c05decb736967f6fc9e431c3a72aa2f71871)
|
795
|
+
- Remove some noisy trace in email plugin [`558710d`](https://github.com/craigerl/aprsd/commit/558710d348fac8f3cb3f90e6326c0e163a7b0dda)
|
796
|
+
- Fixed a problem with the AVWX plugin not working [`8ada789`](https://github.com/craigerl/aprsd/commit/8ada789d4dd37b12277d74403effde48eaf36454)
|
782
797
|
- Allow passing in aprsis_client [`62ce84b`](https://github.com/craigerl/aprsd/commit/62ce84b3157968bd3b54a80870f6508d0f15d643)
|
783
798
|
- Update dev.py [`dfaf3aa`](https://github.com/craigerl/aprsd/commit/dfaf3aa3d1c36c992bee22405ce4625b7e1b11ad)
|
784
|
-
-
|
785
|
-
-
|
786
|
-
-
|
787
|
-
- Ensure plugin threads are valid [`7e6dffb`](https://github.com/craigerl/aprsd/commit/7e6dffb34bfca01f1691b3ee8421a03a655c5e2c)
|
788
|
-
- Fixed a problem with the AVWX plugin not working [`8ada789`](https://github.com/craigerl/aprsd/commit/8ada789d4dd37b12277d74403effde48eaf36454)
|
799
|
+
- Added self creating Makefile help target [`d643ca3`](https://github.com/craigerl/aprsd/commit/d643ca38921f078a11cfeb534ebdf8e83e5ed350)
|
800
|
+
- Updated Makefile clean target [`4f088e0`](https://github.com/craigerl/aprsd/commit/4f088e0a4a36d313dd87a5819ed1e238f83a6667)
|
801
|
+
- Added Logfile tab in Admin ui [`d6b3df9`](https://github.com/craigerl/aprsd/commit/d6b3df93f12fb7ce145e5756e776258222549fae)
|
789
802
|
- Removed fixed size on logging queue [`9eff99d`](https://github.com/craigerl/aprsd/commit/9eff99dde712c2648342323a68d0ee6a1ef295e4)
|
790
803
|
- Updated Dockerfile to use v2.3.0 [`605911c`](https://github.com/craigerl/aprsd/commit/605911cb841099f5b00af773833e542911dbec23)
|
791
|
-
-
|
804
|
+
- Ensure plugin threads are valid [`7e6dffb`](https://github.com/craigerl/aprsd/commit/7e6dffb34bfca01f1691b3ee8421a03a655c5e2c)
|
805
|
+
- Added enabled flag for every plugin object [`3faf41b`](https://github.com/craigerl/aprsd/commit/3faf41b203219fb3df237184e02daf2b9191a0ec)
|
806
|
+
- Enable plugins to return message object [`1b9a993`](https://github.com/craigerl/aprsd/commit/1b9a9935fc96a2ce6192c9408517110e0fcfd5fb)
|
807
|
+
- Prep 2.3.0 [`4164e89`](https://github.com/craigerl/aprsd/commit/4164e890165130c49a2e996f7040b142432684a9)
|
792
808
|
|
793
809
|
#### [v2.2.1](https://github.com/craigerl/aprsd/compare/v2.2.0...v2.2.1)
|
794
810
|
|
795
811
|
> 25 August 2021
|
796
812
|
|
797
|
-
- Update Changelog for 2.2.1 [`44c4dd6`](https://github.com/craigerl/aprsd/commit/44c4dd69c636abea7d0fd6dba5156a55d7f56586)
|
798
813
|
- Silence some log noise [`ec92b07`](https://github.com/craigerl/aprsd/commit/ec92b07e31c622181f5699692bc8143bc6ef7a99)
|
814
|
+
- Update Changelog for 2.2.1 [`44c4dd6`](https://github.com/craigerl/aprsd/commit/44c4dd69c636abea7d0fd6dba5156a55d7f56586)
|
799
815
|
|
800
816
|
#### [v2.2.0](https://github.com/craigerl/aprsd/compare/v2.1.0...v2.2.0)
|
801
817
|
|
802
818
|
> 25 August 2021
|
803
819
|
|
804
820
|
- Refactor Message processing and MORE [`#69`](https://github.com/craigerl/aprsd/pull/69)
|
805
|
-
-
|
806
|
-
- Use Gray instead of Black for code formatting. [`e175f77`](https://github.com/craigerl/aprsd/commit/e175f773474b33750a90ad66b55c3bd90b3fd71f)
|
807
|
-
- Added threads functions to APRSDPluginBase [`86777d8`](https://github.com/craigerl/aprsd/commit/86777d838cdb69b5fdedadf785d81479be94ba4d)
|
808
|
-
- Updated select timeouts [`0f384b0`](https://github.com/craigerl/aprsd/commit/0f384b0e856403611dfb00dd6bce63bbcfb665a9)
|
821
|
+
- Fixed aprsd-dev [`d71b0df`](https://github.com/craigerl/aprsd/commit/d71b0df31469e7ac12d4edcf8a1c8d6c6c74648c)
|
809
822
|
- Cleanup of the README.rst [`e8ffaa9`](https://github.com/craigerl/aprsd/commit/e8ffaa92b6c37c06d8059ef97b033c4f79ad938d)
|
810
|
-
-
|
811
|
-
-
|
823
|
+
- Updated slack channel link [`2b69446`](https://github.com/craigerl/aprsd/commit/2b694462f02eee1448aabc827b5a8e35a7919f25)
|
824
|
+
- Fixed LOG.debug issue in weather plugin [`f1f8aed`](https://github.com/craigerl/aprsd/commit/f1f8aed8c477f6298fc1a7c471a3cee06844d306)
|
812
825
|
- Updated tox.ini [`d6643a8`](https://github.com/craigerl/aprsd/commit/d6643a8e965ad5ee2a48ec57e0e2b9667ad2e497)
|
813
|
-
-
|
814
|
-
-
|
826
|
+
- Added threads functions to APRSDPluginBase [`86777d8`](https://github.com/craigerl/aprsd/commit/86777d838cdb69b5fdedadf785d81479be94ba4d)
|
827
|
+
- Added tracking plugin processing [`8e627c9`](https://github.com/craigerl/aprsd/commit/8e627c98b3cbd058417273864bdae8bd2148346d)
|
828
|
+
- Use Gray instead of Black for code formatting. [`e175f77`](https://github.com/craigerl/aprsd/commit/e175f773474b33750a90ad66b55c3bd90b3fd71f)
|
829
|
+
- Rebase from master and run gray [`8b5f21e`](https://github.com/craigerl/aprsd/commit/8b5f21eece6618385fbed6c130e17099414d8b73)
|
830
|
+
- Updated select timeouts [`0f384b0`](https://github.com/craigerl/aprsd/commit/0f384b0e856403611dfb00dd6bce63bbcfb665a9)
|
831
|
+
- Added days to uptime string formatting [`2e9b42d`](https://github.com/craigerl/aprsd/commit/2e9b42d7af4a96c3abdcab5853ba380ef0adc474)
|
832
|
+
- Removed TXThread [`61967b5`](https://github.com/craigerl/aprsd/commit/61967b5fe8a088106124c5b0ce35a471be14c795)
|
815
833
|
- Removed Black code style reference [`daf1e21`](https://github.com/craigerl/aprsd/commit/daf1e21b45a59964614c1575d25b322034d567af)
|
816
834
|
- Updated overview image [`d5d0064`](https://github.com/craigerl/aprsd/commit/d5d00643fac9f97bf5054f6f473ab0113b6175a3)
|
817
|
-
-
|
818
|
-
- Fixed LOG.debug issue in weather plugin [`f1f8aed`](https://github.com/craigerl/aprsd/commit/f1f8aed8c477f6298fc1a7c471a3cee06844d306)
|
819
|
-
- Updated slack channel link [`2b69446`](https://github.com/craigerl/aprsd/commit/2b694462f02eee1448aabc827b5a8e35a7919f25)
|
835
|
+
- Updated Changelog for v2.2.0 [`8190353`](https://github.com/craigerl/aprsd/commit/81903534edeb804afd547ce564af0b35418fca40)
|
820
836
|
|
821
837
|
#### [v2.1.0](https://github.com/craigerl/aprsd/compare/v2.0.0...v2.1.0)
|
822
838
|
|
@@ -840,21 +856,21 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
840
856
|
- Bump urllib3 from 1.26.4 to 1.26.5 [`#61`](https://github.com/craigerl/aprsd/pull/61)
|
841
857
|
- Added aprsd version checking [`#60`](https://github.com/craigerl/aprsd/pull/60)
|
842
858
|
- Bump urllib3 from 1.26.3 to 1.26.4 [`#56`](https://github.com/craigerl/aprsd/pull/56)
|
843
|
-
- Add new watchlist feature [`1a1fcba`](https://github.com/craigerl/aprsd/commit/1a1fcba1c4152d2d6a869d306d6450bda087c1ee)
|
844
859
|
- Prep for v1.6.1 release [`55862a2`](https://github.com/craigerl/aprsd/commit/55862a279014aeda7225055e14eb6d140415a6fe)
|
845
|
-
-
|
846
|
-
-
|
847
|
-
-
|
860
|
+
- Update README.rst [`2a5ef58`](https://github.com/craigerl/aprsd/commit/2a5ef5829568fa58a5d92b0859c1c649f9073532)
|
861
|
+
- Update README.rst [`970b32f`](https://github.com/craigerl/aprsd/commit/970b32f23824c670aae920238b9ef0814f9cd73f)
|
862
|
+
- Update my callsign [`b8dc6a3`](https://github.com/craigerl/aprsd/commit/b8dc6a329b1cbd9ca0211d16b4cdb32a2ed6b37c)
|
848
863
|
- Updated INSTALL.txt [`9de0df3`](https://github.com/craigerl/aprsd/commit/9de0df31eb75f9ce2de7ebb0c7f96ffc0613de55)
|
864
|
+
- Added message counts for each plugin. [`3ae5717`](https://github.com/craigerl/aprsd/commit/3ae571745299e7fda86b588b8140f8e58b9ff435)
|
865
|
+
- Removed a noisy debug log [`1c66555`](https://github.com/craigerl/aprsd/commit/1c665554507a74999f279d30297266d233b35aca)
|
866
|
+
- Added messages count to admin messages list. [`5afc7fb`](https://github.com/craigerl/aprsd/commit/5afc7fb6643b932c95b0de554110773f3b7377c1)
|
867
|
+
- reworked the admin ui to use semenatic ui more [`3c45d8b`](https://github.com/craigerl/aprsd/commit/3c45d8bd0f1d90800df7b1d4367ce12d9bf98b92)
|
868
|
+
- Add new watchlist feature [`1a1fcba`](https://github.com/craigerl/aprsd/commit/1a1fcba1c4152d2d6a869d306d6450bda087c1ee)
|
849
869
|
- Fixed the Ack thread not resending acks [`562ae52`](https://github.com/craigerl/aprsd/commit/562ae52c1effcca092ba5cc9451b29cd01c1947d)
|
850
|
-
- Fixed small bug with packets get_packet_type [`3d38402`](https://github.com/craigerl/aprsd/commit/3d38402be241171e92ba8e3b1bf50ee2df5a301e)
|
851
870
|
- Move version string output to top of log [`7dc4fb3`](https://github.com/craigerl/aprsd/commit/7dc4fb3e7765b42422ced04a93342234d83085fa)
|
852
|
-
- Added messages count to admin messages list. [`5afc7fb`](https://github.com/craigerl/aprsd/commit/5afc7fb6643b932c95b0de554110773f3b7377c1)
|
853
|
-
- Update README.rst [`970b32f`](https://github.com/craigerl/aprsd/commit/970b32f23824c670aae920238b9ef0814f9cd73f)
|
854
871
|
- Updated overview images [`90a44bb`](https://github.com/craigerl/aprsd/commit/90a44bb5ed6179ec2afad5d354a260d6f6bc3c3e)
|
855
|
-
-
|
856
|
-
-
|
857
|
-
- Removed a noisy debug log [`1c66555`](https://github.com/craigerl/aprsd/commit/1c665554507a74999f279d30297266d233b35aca)
|
872
|
+
- Fixed small bug with packets get_packet_type [`3d38402`](https://github.com/craigerl/aprsd/commit/3d38402be241171e92ba8e3b1bf50ee2df5a301e)
|
873
|
+
- Updated docs for 2.0.0 [`b4713b2`](https://github.com/craigerl/aprsd/commit/b4713b269488bc35740d305da7c466588deef98b)
|
858
874
|
|
859
875
|
#### [v1.6.1](https://github.com/craigerl/aprsd/compare/v1.6.0...v1.6.1)
|
860
876
|
|
@@ -865,31 +881,31 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
865
881
|
- Bump pygments from 2.7.3 to 2.7.4 [`#55`](https://github.com/craigerl/aprsd/pull/55)
|
866
882
|
- Bump jinja2 from 2.11.2 to 2.11.3 [`#52`](https://github.com/craigerl/aprsd/pull/52)
|
867
883
|
- Bump urllib3 from 1.26.2 to 1.26.3 [`#51`](https://github.com/craigerl/aprsd/pull/51)
|
868
|
-
- Updated web stats index to show messages and ram usage [`c7d10f5`](https://github.com/craigerl/aprsd/commit/c7d10f53a36f84304190dea2c7154f827b2cf479)
|
869
884
|
- Updated README docs [`b6ba90d`](https://github.com/craigerl/aprsd/commit/b6ba90de539bf6ff6dd5e384aece0c6e3384c0fd)
|
870
|
-
-
|
871
|
-
-
|
872
|
-
- Reworked Makefile to use Makefile.venv [`a4a06c9`](https://github.com/craigerl/aprsd/commit/a4a06c9763d30bfd6616b5035100a7b6eb51bedf)
|
873
|
-
- Added Dockerfile-dev and updated build.sh [`239e784`](https://github.com/craigerl/aprsd/commit/239e784d51f975ec0c62638aa9cabfaf01f4dd46)
|
874
|
-
- Added email messages graphs [`d6806c4`](https://github.com/craigerl/aprsd/commit/d6806c429ce1de162e4fbc9dab311bdb63765795)
|
875
|
-
- Added log config for flask and lnav config file [`34d2c31`](https://github.com/craigerl/aprsd/commit/34d2c31d90269ddcd5341a669eb6051a91801dbb)
|
876
|
-
- Added plugin live reload and StockPlugin [`e6cafeb`](https://github.com/craigerl/aprsd/commit/e6cafeb3d27f656ffd0da765db9cb5be3c95c035)
|
885
|
+
- Dockerfile: Make creation of /config quiet failure [`2d5bb85`](https://github.com/craigerl/aprsd/commit/2d5bb85071138813ec261d478a5a5168e2b5cfc8)
|
886
|
+
- Updated Dockerfile for multiplatform builds [`c177748`](https://github.com/craigerl/aprsd/commit/c1777483405b8c208ae0795e636c1b58390c37df)
|
877
887
|
- Updated Dockerfile for multiplatform builds [`f0034fc`](https://github.com/craigerl/aprsd/commit/f0034fc517fbb8d35c6067b424333f46e14d1480)
|
878
|
-
- Updated
|
888
|
+
- Updated Dockerfile and build.sh [`9f66774`](https://github.com/craigerl/aprsd/commit/9f66774541404b86ffd3bbea3c68cc3dcf4751a3)
|
889
|
+
- Added plugin live reload and StockPlugin [`e6cafeb`](https://github.com/craigerl/aprsd/commit/e6cafeb3d27f656ffd0da765db9cb5be3c95c035)
|
890
|
+
- Require python 3.7 and > [`933917b`](https://github.com/craigerl/aprsd/commit/933917bf9d0ca94969567668832977ecbbfadfbd)
|
891
|
+
- Added Dockerfile-dev and updated build.sh [`239e784`](https://github.com/craigerl/aprsd/commit/239e784d51f975ec0c62638aa9cabfaf01f4dd46)
|
892
|
+
- Added log format and dateformat to config file [`0a038da`](https://github.com/craigerl/aprsd/commit/0a038dae4457b9b7c98cdfb438740baab752f05c)
|
893
|
+
- Updated web stats index to show messages and ram usage [`c7d10f5`](https://github.com/craigerl/aprsd/commit/c7d10f53a36f84304190dea2c7154f827b2cf479)
|
879
894
|
- Added acks with messages graphs [`f10372b`](https://github.com/craigerl/aprsd/commit/f10372b320ce5ce8403cee849b769ece6f9d4617)
|
880
|
-
-
|
895
|
+
- Make the index page behind auth [`6297ebe`](https://github.com/craigerl/aprsd/commit/6297ebeb670d1ce986795f55ab15750da8ae0f44)
|
881
896
|
- Provide an initial datapoint on rendering index [`fb979ed`](https://github.com/craigerl/aprsd/commit/fb979eda9427355c0fc8d1d981643c9adc799e40)
|
882
|
-
- Added
|
883
|
-
-
|
884
|
-
-
|
885
|
-
-
|
897
|
+
- Added showing APRS-IS server to stats [`d1a2a14`](https://github.com/craigerl/aprsd/commit/d1a2a143709fb5be9e9bd7d8179895b1300feb1d)
|
898
|
+
- Added log config for flask and lnav config file [`34d2c31`](https://github.com/craigerl/aprsd/commit/34d2c31d90269ddcd5341a669eb6051a91801dbb)
|
899
|
+
- Added callsign to the web index page [`123266c`](https://github.com/craigerl/aprsd/commit/123266c9adbd025f8ad7549709866486183426b8)
|
900
|
+
- Reworked the stats dict output and healthcheck [`bf8d2c6`](https://github.com/craigerl/aprsd/commit/bf8d2c6088d9c09783b8d68de4c88fe77fbbc9f5)
|
901
|
+
- Added email messages graphs [`d6806c4`](https://github.com/craigerl/aprsd/commit/d6806c429ce1de162e4fbc9dab311bdb63765795)
|
886
902
|
- Force all the graphs to 0 minimum [`3ac42ed`](https://github.com/craigerl/aprsd/commit/3ac42edd823723ed06e86de0486de15a111b6275)
|
887
|
-
-
|
903
|
+
- Update Dockerfile-dev to work with startup [`3f21934`](https://github.com/craigerl/aprsd/commit/3f21934c0f271b8de916df4d7abe551c4266f2cd)
|
904
|
+
- Updated stats output for KeepAlive thread [`7b019d2`](https://github.com/craigerl/aprsd/commit/7b019d24f0af52a599c026af1c1b21a64e6228bb)
|
905
|
+
- Fixed version unit tests [`23c219f`](https://github.com/craigerl/aprsd/commit/23c219f0d2ef4ac0c65d22ac9810b5a30d99b251)
|
906
|
+
- Reworked Makefile to use Makefile.venv [`a4a06c9`](https://github.com/craigerl/aprsd/commit/a4a06c9763d30bfd6616b5035100a7b6eb51bedf)
|
888
907
|
- ignore Makefile.venv [`4aac17d`](https://github.com/craigerl/aprsd/commit/4aac17dc9869564a777f292c486d228893cb7b8a)
|
889
|
-
- Updated Dockerfile for multiplatform builds [`c177748`](https://github.com/craigerl/aprsd/commit/c1777483405b8c208ae0795e636c1b58390c37df)
|
890
|
-
- Dockerfile: Make creation of /config quiet failure [`2d5bb85`](https://github.com/craigerl/aprsd/commit/2d5bb85071138813ec261d478a5a5168e2b5cfc8)
|
891
908
|
- Removed debug log for KeepAlive thread [`fc1ee19`](https://github.com/craigerl/aprsd/commit/fc1ee195163ede96e1c457bdf8fa7844925c116f)
|
892
|
-
- Make the index page behind auth [`6297ebe`](https://github.com/craigerl/aprsd/commit/6297ebeb670d1ce986795f55ab15750da8ae0f44)
|
893
909
|
|
894
910
|
#### [v1.6.0](https://github.com/craigerl/aprsd/compare/v1.5.1...v1.6.0)
|
895
911
|
|
@@ -906,43 +922,43 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
906
922
|
- Added new time plugins [`#40`](https://github.com/craigerl/aprsd/pull/40)
|
907
923
|
- Fixed TimePlugin timezone issue [`#38`](https://github.com/craigerl/aprsd/pull/38)
|
908
924
|
- Added aprsd-dev plugin test cli and WxPlugin [`#35`](https://github.com/craigerl/aprsd/pull/35)
|
909
|
-
-
|
910
|
-
-
|
911
|
-
-
|
925
|
+
- Updated readme to include readthedocs link [`b9f6fcf`](https://github.com/craigerl/aprsd/commit/b9f6fcfa0c9703e5a27d26042703aa7574dedbf2)
|
926
|
+
- change query char from ? to ! [`7de2820`](https://github.com/craigerl/aprsd/commit/7de2820caa01df24a71e014c80aecb289d4cc39a)
|
927
|
+
- fix git with install.txt [`5fb363c`](https://github.com/craigerl/aprsd/commit/5fb363c9e72f77d7181789f4f9e594b6bda722a4)
|
928
|
+
- remove fortune white space [`ca05676`](https://github.com/craigerl/aprsd/commit/ca05676c98cd8c7b98a190fe1e53564ef5fc7b09)
|
929
|
+
- First hack at flask [`9630279`](https://github.com/craigerl/aprsd/commit/9630279d14c9e8921bfbbdd260ec7b14f8f3ccd5)
|
912
930
|
- Fixed extracting lat/lon [`fefb626`](https://github.com/craigerl/aprsd/commit/fefb626c9744952a91fcb3b02640d9dbd228df6b)
|
913
931
|
- Updated documentation and config output [`a35cb04`](https://github.com/craigerl/aprsd/commit/a35cb04ca725eacda5473dd38c0760934ca5957c)
|
914
|
-
-
|
915
|
-
-
|
916
|
-
-
|
917
|
-
- Moved docker related stuffs to docker dir [`24edcad`](https://github.com/craigerl/aprsd/commit/24edcad60a5218dcafaf38115524dc471ad4b874)
|
918
|
-
- 1.6.0 release prep [`a266c98`](https://github.com/craigerl/aprsd/commit/a266c987fd898518c4a783666d6531ed109381d5)
|
919
|
-
- Enable debug logging for smtp and imap [`030b025`](https://github.com/craigerl/aprsd/commit/030b02551fc1c23882a4ef625a92718e62b67af2)
|
932
|
+
- Added Flask web thread and stats collection [`5c94934`](https://github.com/craigerl/aprsd/commit/5c949343ec868f341c6ad3ebcff7a350afe0d620)
|
933
|
+
- Add flask and flask_classful reqs [`cae8746`](https://github.com/craigerl/aprsd/commit/cae87466903de55623c16f2f72138bd6f773ec89)
|
934
|
+
- updated .gitignore [`8bfdefd`](https://github.com/craigerl/aprsd/commit/8bfdefd5ad7138948c80122557d2e39b43f79c22)
|
920
935
|
- Cleaned up the KeepAlive output [`51894bb`](https://github.com/craigerl/aprsd/commit/51894bbab88bada9622c4cf31f1d928943ed8ac5)
|
921
|
-
-
|
922
|
-
- Added
|
923
|
-
-
|
936
|
+
- Fixed an issue with LocationPlugin [`0d18e54`](https://github.com/craigerl/aprsd/commit/0d18e54969d79842666a79a9f7f5b7ae895fa02e)
|
937
|
+
- Added flask messages web UI and basic auth [`aa29069`](https://github.com/craigerl/aprsd/commit/aa290692abf927ca2398344506a401614d19acde)
|
938
|
+
- Fixed resend email after config rework [`c1e6792`](https://github.com/craigerl/aprsd/commit/c1e67927218a9d55466f4a7f43dd0e44f7656fcc)
|
939
|
+
- debug around EmailThread hanging or vanishing [`3ca0eef`](https://github.com/craigerl/aprsd/commit/3ca0eeff56946b4cff5937d6980743f254c88fa3)
|
924
940
|
- more debug around email thread [`cfb1724`](https://github.com/craigerl/aprsd/commit/cfb172481d6ea4a8e4b97258fc7c4adbd0a69919)
|
941
|
+
- Enable debug logging for smtp and imap [`030b025`](https://github.com/craigerl/aprsd/commit/030b02551fc1c23882a4ef625a92718e62b67af2)
|
942
|
+
- duplicate email messages from RF would generate usage response [`57d768e`](https://github.com/craigerl/aprsd/commit/57d768e0107e9e22efca1809b7c527d85462d08d)
|
943
|
+
- Fixed email login issue. [`94bad95`](https://github.com/craigerl/aprsd/commit/94bad95e26c5b7420d48b4f0eadf832f09c3b45c)
|
944
|
+
- Added tracing facility [`af48c43`](https://github.com/craigerl/aprsd/commit/af48c43eb2461d644e7d13bcd92c6b1477d65c1c)
|
925
945
|
- Fixed tox pep8 failure for trace [`0b44fc0`](https://github.com/craigerl/aprsd/commit/0b44fc08eb66d58e7e9ee4cf62107526ad7b4d04)
|
946
|
+
- Added memory tracing in keeplive [`db2b537`](https://github.com/craigerl/aprsd/commit/db2b537317b35795380f1d0d8390b6314e162a21)
|
947
|
+
- EmailThread was exiting because of IMAP timeout, added exceptions for this [`47135c6`](https://github.com/craigerl/aprsd/commit/47135c60862852d71be0f9873f474f48fac6f7dd)
|
948
|
+
- Wrap all imap calls with try except blocks [`a5cc274`](https://github.com/craigerl/aprsd/commit/a5cc274ff54b0bee51c3a901f7c9efc287b9a471)
|
949
|
+
- Wrap another server call with try except [`131919b`](https://github.com/craigerl/aprsd/commit/131919bdfbf122e33d482bddc0978a16ac68572f)
|
926
950
|
- Removed some noisy debug log. [`9ba44a0`](https://github.com/craigerl/aprsd/commit/9ba44a076ca243922bb7149169d56cf6c294334b)
|
927
|
-
-
|
928
|
-
- debug around EmailThread hanging or vanishing [`3ca0eef`](https://github.com/craigerl/aprsd/commit/3ca0eeff56946b4cff5937d6980743f254c88fa3)
|
929
|
-
- remove fortune white space [`ca05676`](https://github.com/craigerl/aprsd/commit/ca05676c98cd8c7b98a190fe1e53564ef5fc7b09)
|
930
|
-
- Fixed resend email after config rework [`c1e6792`](https://github.com/craigerl/aprsd/commit/c1e67927218a9d55466f4a7f43dd0e44f7656fcc)
|
931
|
-
- Fixed an issue with LocationPlugin [`0d18e54`](https://github.com/craigerl/aprsd/commit/0d18e54969d79842666a79a9f7f5b7ae895fa02e)
|
951
|
+
- Moved docker related stuffs to docker dir [`24edcad`](https://github.com/craigerl/aprsd/commit/24edcad60a5218dcafaf38115524dc471ad4b874)
|
932
952
|
- Updated path of run.sh for docker build [`7df6462`](https://github.com/craigerl/aprsd/commit/7df6462d91300fc034779995891aefbc388bd836)
|
933
|
-
-
|
934
|
-
- fix git with install.txt [`5fb363c`](https://github.com/craigerl/aprsd/commit/5fb363c9e72f77d7181789f4f9e594b6bda722a4)
|
935
|
-
- Updated readme to include readthedocs link [`b9f6fcf`](https://github.com/craigerl/aprsd/commit/b9f6fcfa0c9703e5a27d26042703aa7574dedbf2)
|
936
|
-
- duplicate email messages from RF would generate usage response [`57d768e`](https://github.com/craigerl/aprsd/commit/57d768e0107e9e22efca1809b7c527d85462d08d)
|
937
|
-
- updated .gitignore [`8bfdefd`](https://github.com/craigerl/aprsd/commit/8bfdefd5ad7138948c80122557d2e39b43f79c22)
|
953
|
+
- 1.6.0 release prep [`a266c98`](https://github.com/craigerl/aprsd/commit/a266c987fd898518c4a783666d6531ed109381d5)
|
938
954
|
|
939
955
|
#### [v1.5.1](https://github.com/craigerl/aprsd/compare/v1.5.0...v1.5.1)
|
940
956
|
|
941
957
|
> 15 January 2021
|
942
958
|
|
943
959
|
- Update INSTALL.txt [`47ccce5`](https://github.com/craigerl/aprsd/commit/47ccce53ea60d71b678b1f67b6a514d4a83c8a78)
|
944
|
-
- Updated Changelog for v1.5.1 [`658e6b6`](https://github.com/craigerl/aprsd/commit/658e6b62027b300909e9e9e7cf131f4f93d66ca1)
|
945
960
|
- Updated README to fix pypi page [`98e3c24`](https://github.com/craigerl/aprsd/commit/98e3c246adaaf450a9b06b0589011cd940d5bb4c)
|
961
|
+
- Updated Changelog for v1.5.1 [`658e6b6`](https://github.com/craigerl/aprsd/commit/658e6b62027b300909e9e9e7cf131f4f93d66ca1)
|
946
962
|
|
947
963
|
#### [v1.5.0](https://github.com/craigerl/aprsd/compare/v1.1.0...v1.5.0)
|
948
964
|
|
@@ -953,69 +969,69 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
953
969
|
- Added Makefile for easy dev setup [`#34`](https://github.com/craigerl/aprsd/pull/34)
|
954
970
|
- backout my patch that broke tox, trying to push to craiger-test branch [`#32`](https://github.com/craigerl/aprsd/pull/32)
|
955
971
|
- Threads [`#26`](https://github.com/craigerl/aprsd/pull/26)
|
956
|
-
- Added Sphinx based documentation [`ee2aeb5`](https://github.com/craigerl/aprsd/commit/ee2aeb5157344ea02852c61e6acb25c3e7272f28)
|
957
|
-
- refactor Plugin objects to plugins directory [`d5a34b4`](https://github.com/craigerl/aprsd/commit/d5a34b4d11dd8350b6b27d1a70b349544f929160)
|
958
|
-
- Creation of MsgTrack object and other stuff [`2e90c0b`](https://github.com/craigerl/aprsd/commit/2e90c0bdbb2ee37923b61eb6cc5cdd695d99f53d)
|
959
|
-
- reworked threading [`f65707c`](https://github.com/craigerl/aprsd/commit/f65707cb8cc10c84a3cc0faafdc871de93d20ee9)
|
960
972
|
- Reworked messaging lib [`9768003`](https://github.com/craigerl/aprsd/commit/9768003c2a384389a0b6427a7e761efc5675a2ea)
|
961
|
-
-
|
962
|
-
- Updated Makefile [`c51a945`](https://github.com/craigerl/aprsd/commit/c51a9452d94fc9a4879eb698eaf648a81bbd0d5f)
|
963
|
-
- Updated MsgTrack restart_delayed [`1ce2a56`](https://github.com/craigerl/aprsd/commit/1ce2a56140566b1f1fccc7eff3f0b84b45c01578)
|
964
|
-
- Updated README to include development env [`25d948b`](https://github.com/craigerl/aprsd/commit/25d948b0ee95f9bd30d9688345ba54d41587e180)
|
973
|
+
- reworked threading [`f65707c`](https://github.com/craigerl/aprsd/commit/f65707cb8cc10c84a3cc0faafdc871de93d20ee9)
|
965
974
|
- Added some plugin unit tests [`171703a`](https://github.com/craigerl/aprsd/commit/171703ac1a603661debda12278133ca14cc10c6f)
|
975
|
+
- Added FortunePlugin unit test [`9d3ede6`](https://github.com/craigerl/aprsd/commit/9d3ede6e71313dd5800c091c67b11b9682057ae4)
|
976
|
+
- Creation of MsgTrack object and other stuff [`2e90c0b`](https://github.com/craigerl/aprsd/commit/2e90c0bdbb2ee37923b61eb6cc5cdd695d99f53d)
|
966
977
|
- Added support to save/load MsgTrack on exit/start [`2659a0b`](https://github.com/craigerl/aprsd/commit/2659a0b3b945bcbf82605a3ac0384919ee73676b)
|
967
|
-
- Added
|
968
|
-
- Added --raw format for sending messages [`54072a2`](https://github.com/craigerl/aprsd/commit/54072a2103d9833dd3aadc3b9e200842b2cea7f5)
|
969
|
-
- Updated Changelog for v1.5.0 release [`33a0e6c`](https://github.com/craigerl/aprsd/commit/33a0e6c18d7adbe979bcb49708f9730dd3f5ccec)
|
970
|
-
- Extend APRS.IS object to change login string [`ac4c3d6`](https://github.com/craigerl/aprsd/commit/ac4c3d6562b9a6802ae069c21023d4016c146c7d)
|
971
|
-
- Extend APRS.IS object to change login string [`5de1b3e`](https://github.com/craigerl/aprsd/commit/5de1b3e305b4afacf417e7cff7a06e067ae16f80)
|
972
|
-
- Changed default log level to INFO [`0aa905e`](https://github.com/craigerl/aprsd/commit/0aa905ebba802e2f8cecc2b9c98caa72edc15a41)
|
978
|
+
- Added QueryPlugin [`28f3daf`](https://github.com/craigerl/aprsd/commit/28f3daf6d07e82ccb77ebd985726790ebc4cd854)
|
973
979
|
- Added QueryPlugin resend all delayed msgs or Flush [`af0d449`](https://github.com/craigerl/aprsd/commit/af0d4491c39bec3a8837c90b14db80b4e4c8c45b)
|
980
|
+
- Update Changelog for v1.5.0 [`8bd8b95`](https://github.com/craigerl/aprsd/commit/8bd8b95b3550d65414ef7c75398ba35af246919f)
|
981
|
+
- Added pre-commit hooks [`75f610d`](https://github.com/craigerl/aprsd/commit/75f610d9710e155beb3b32f679514d2d8c482064)
|
982
|
+
- Updated README to include development env [`25d948b`](https://github.com/craigerl/aprsd/commit/25d948b0ee95f9bd30d9688345ba54d41587e180)
|
974
983
|
- Added more pre-commit hook tests [`4c0150d`](https://github.com/craigerl/aprsd/commit/4c0150dd975fc6c2303e9eae937abafc6a5f33bc)
|
975
|
-
-
|
976
|
-
-
|
984
|
+
- don't tell radio emails were sent, ack is enuf [`99c5867`](https://github.com/craigerl/aprsd/commit/99c58671626f65d2b1b6a39c6094404e8ee1188e)
|
985
|
+
- Fixed failures caused by last commit [`e83ee31`](https://github.com/craigerl/aprsd/commit/e83ee31310d2984321c67f1de3b74adb17dd09d9)
|
986
|
+
- Cleaned out old ack_dict [`dbc891f`](https://github.com/craigerl/aprsd/commit/dbc891f7385f03d4b8871007fd3bd9492128b580)
|
987
|
+
- Lots of fixes [`231c15b`](https://github.com/craigerl/aprsd/commit/231c15b1af4bb384644efcfded90d0bc6c0e8ec2)
|
988
|
+
- removed double-quote-string-fixer [`a7c2043`](https://github.com/craigerl/aprsd/commit/a7c20430fe0611af7c757900adccd98c26cb4c94)
|
977
989
|
- Fixed email shortcut lookup [`9f4cc27`](https://github.com/craigerl/aprsd/commit/9f4cc27a11966b9fe6d9ce3503a7100c44258569)
|
978
|
-
-
|
979
|
-
-
|
980
|
-
-
|
981
|
-
- Added
|
990
|
+
- Updated Makefile [`c51a945`](https://github.com/craigerl/aprsd/commit/c51a9452d94fc9a4879eb698eaf648a81bbd0d5f)
|
991
|
+
- refactor Plugin objects to plugins directory [`a385d17`](https://github.com/craigerl/aprsd/commit/a385d171bd43291f8ed3346169a358f59b002d52)
|
992
|
+
- refactor Plugin objects to plugins directory [`d5a34b4`](https://github.com/craigerl/aprsd/commit/d5a34b4d11dd8350b6b27d1a70b349544f929160)
|
993
|
+
- Added Sphinx based documentation [`ee2aeb5`](https://github.com/craigerl/aprsd/commit/ee2aeb5157344ea02852c61e6acb25c3e7272f28)
|
994
|
+
- swap Query command characters a bit [`a334623`](https://github.com/craigerl/aprsd/commit/a33462327a25ff807a6df2d50222b1cc79475729)
|
995
|
+
- undo git disaster [`45dd3f0`](https://github.com/craigerl/aprsd/commit/45dd3f0205e851bd50bfbcf74864f31960496816)
|
996
|
+
- Fix broken test [`1763e94`](https://github.com/craigerl/aprsd/commit/1763e94f937258c96bd321e1ee817b67b71ac39b)
|
997
|
+
- switch command characters for query plugin [`e7f2ebf`](https://github.com/craigerl/aprsd/commit/e7f2ebf17ed47e7acd0b4b2511a325603f437580)
|
998
|
+
- Updated build for docs tox -edocs [`bd35a61`](https://github.com/craigerl/aprsd/commit/bd35a610ffe4a3cdccd123d10a0a39e61ad261ed)
|
999
|
+
- Added some more badges to readme files [`7423df6`](https://github.com/craigerl/aprsd/commit/7423df6b25d358f3c170f51b32762ccb98f7684a)
|
1000
|
+
- Disable MX record validation [`e6dee3a`](https://github.com/craigerl/aprsd/commit/e6dee3a5b052cca12b98dc63dc102cb84520ad3a)
|
982
1001
|
- Added APRSD system diagram to docs [`cc0d0fd`](https://github.com/craigerl/aprsd/commit/cc0d0fd523a4029ef66d50351114ef8c0f2bf9ed)
|
983
|
-
-
|
1002
|
+
- change query character syntax, don't reply that we're resending stuff [`0aa7fe7`](https://github.com/craigerl/aprsd/commit/0aa7fe7a14790326a9c6cbf4c50b3c87d548b233)
|
1003
|
+
- Updated MsgTrack restart_delayed [`1ce2a56`](https://github.com/craigerl/aprsd/commit/1ce2a56140566b1f1fccc7eff3f0b84b45c01578)
|
1004
|
+
- Added unit test for QueryPlugin [`68e6f5b`](https://github.com/craigerl/aprsd/commit/68e6f5b98619e4bd5480accc5c8961bcd729264a)
|
984
1005
|
- update query plugin to resend last N messages. syntax: ?rN [`d9141dc`](https://github.com/craigerl/aprsd/commit/d9141dc2d086f06c228751732fa58edcd1754f22)
|
985
|
-
-
|
986
|
-
-
|
987
|
-
-
|
1006
|
+
- expect different reply from query plugin [`e1a292d`](https://github.com/craigerl/aprsd/commit/e1a292d8e0b03dbab6e705280decd79d87c6cb07)
|
1007
|
+
- Extend APRS.IS object to change login string [`ac4c3d6`](https://github.com/craigerl/aprsd/commit/ac4c3d6562b9a6802ae069c21023d4016c146c7d)
|
1008
|
+
- Extend APRS.IS object to change login string [`5de1b3e`](https://github.com/craigerl/aprsd/commit/5de1b3e305b4afacf417e7cff7a06e067ae16f80)
|
1009
|
+
- getting out of git hell with client.py problems [`76bbdfc`](https://github.com/craigerl/aprsd/commit/76bbdfc728d01965a684be885add49853c643d21)
|
1010
|
+
- Fixed fortune plugin failures [`7ab2613`](https://github.com/craigerl/aprsd/commit/7ab26135c2410422ca17f87efa278049146515da)
|
1011
|
+
- Fixed unit test for fortune plugin [`9470802`](https://github.com/craigerl/aprsd/commit/94708024da3e5db16dd67ad3582b111f705b1d89)
|
988
1012
|
- Added a fix for failed logins to APRS-IS [`3dd23fa`](https://github.com/craigerl/aprsd/commit/3dd23fa2ad1d248c815df4b60915a79bd01a2203)
|
989
|
-
-
|
990
|
-
-
|
1013
|
+
- Added new config for aprs.fi API Key [`bdeaf63`](https://github.com/craigerl/aprsd/commit/bdeaf6348a5fa48c4aa65f9c8c4f9bf65d7d7689)
|
1014
|
+
- Added send-message login checking and --no-ack [`90c4c6c`](https://github.com/craigerl/aprsd/commit/90c4c6c59dbfc773087111c1a6a73e04c9883d23)
|
991
1015
|
- Fixed --quiet option [`f022a3e`](https://github.com/craigerl/aprsd/commit/f022a3e42158ff0d84fc354191ce2088351c7fe6)
|
992
|
-
-
|
993
|
-
- Fixed failures caused by last commit [`e83ee31`](https://github.com/craigerl/aprsd/commit/e83ee31310d2984321c67f1de3b74adb17dd09d9)
|
994
|
-
- don't tell radio emails were sent, ack is enuf [`99c5867`](https://github.com/craigerl/aprsd/commit/99c58671626f65d2b1b6a39c6094404e8ee1188e)
|
995
|
-
- Fixed unit test for fortune plugin [`9470802`](https://github.com/craigerl/aprsd/commit/94708024da3e5db16dd67ad3582b111f705b1d89)
|
996
|
-
- Added some more badges to readme files [`7423df6`](https://github.com/craigerl/aprsd/commit/7423df6b25d358f3c170f51b32762ccb98f7684a)
|
997
|
-
- Cleaned out old ack_dict [`dbc891f`](https://github.com/craigerl/aprsd/commit/dbc891f7385f03d4b8871007fd3bd9492128b580)
|
998
|
-
- Removed flask code [`72fa550`](https://github.com/craigerl/aprsd/commit/72fa550250dcaef2c4badfe9aa755464aafcd659)
|
999
|
-
- fix plugin tests to expect new strings [`e7dc537`](https://github.com/craigerl/aprsd/commit/e7dc5379009ee0982138881eb82a5de268ef2e02)
|
1016
|
+
- Added --raw format for sending messages [`54072a2`](https://github.com/craigerl/aprsd/commit/54072a2103d9833dd3aadc3b9e200842b2cea7f5)
|
1000
1017
|
- Updated docker run.sh script [`264b753`](https://github.com/craigerl/aprsd/commit/264b7536b431ea17aa86e01342eea80318e1f542)
|
1001
|
-
-
|
1002
|
-
- Disable MX record validation [`e6dee3a`](https://github.com/craigerl/aprsd/commit/e6dee3a5b052cca12b98dc63dc102cb84520ad3a)
|
1003
|
-
- fix usage statement [`f538fb2`](https://github.com/craigerl/aprsd/commit/f538fb26aed62871c31bc47024b3041e2a15bb4a)
|
1004
|
-
- get rid of some debug noise from tracker and email delay [`7e3b95f`](https://github.com/craigerl/aprsd/commit/7e3b95fd01628c3e7bb50536193f86cd6c4f1b23)
|
1005
|
-
- switch command characters for query plugin [`e7f2ebf`](https://github.com/craigerl/aprsd/commit/e7f2ebf17ed47e7acd0b4b2511a325603f437580)
|
1006
|
-
- Fix tox tests. [`0e9cfdd`](https://github.com/craigerl/aprsd/commit/0e9cfdd847aeb87a29e30e2b443cab9d8911442f)
|
1007
|
-
- Fixed main server client initialization [`7486770`](https://github.com/craigerl/aprsd/commit/7486770bdc2e9670bb803ee064d08708ddcc55b7)
|
1008
|
-
- test plugin expect responses update to match query output [`3be373d`](https://github.com/craigerl/aprsd/commit/3be373d7fc7f47d3b97f51fd6b95c410bbdf91e1)
|
1009
|
-
- Fixed the queryPlugin unit test [`74be4f8`](https://github.com/craigerl/aprsd/commit/74be4f853ed4b4e9705445a22ae281614a5d485c)
|
1010
|
-
- Fixed latitude reporting in locationPlugin [`4ca5c29`](https://github.com/craigerl/aprsd/commit/4ca5c29d49c8a15884f08c6aa21880f45238f97e)
|
1018
|
+
- Added the ability to add comments to the config file [`cdde9c2`](https://github.com/craigerl/aprsd/commit/cdde9c290b2aaae12c819ced5a103aa252bfbc05)
|
1011
1019
|
- Fixed comments [`42b2e22`](https://github.com/craigerl/aprsd/commit/42b2e227e17a2065963e1c44d966d04a3b29fe3b)
|
1020
|
+
- make sample config easier to interpret [`e11a84b`](https://github.com/craigerl/aprsd/commit/e11a84bf053485ee0ce7367d5b9715114cd4d8ae)
|
1012
1021
|
- fixed sample-config double print [`18acd64`](https://github.com/craigerl/aprsd/commit/18acd64334e0218bdffbc4d10da0b1559f65cf0b)
|
1013
|
-
-
|
1014
|
-
-
|
1015
|
-
-
|
1016
|
-
-
|
1017
|
-
-
|
1018
|
-
-
|
1022
|
+
- get rid of some debug noise from tracker and email delay [`7e3b95f`](https://github.com/craigerl/aprsd/commit/7e3b95fd01628c3e7bb50536193f86cd6c4f1b23)
|
1023
|
+
- Fixed latitude reporting in locationPlugin [`4ca5c29`](https://github.com/craigerl/aprsd/commit/4ca5c29d49c8a15884f08c6aa21880f45238f97e)
|
1024
|
+
- fix query command syntax ?, ?3, ?d(elete), ?a(ll) [`0b5c9da`](https://github.com/craigerl/aprsd/commit/0b5c9dacf030dd39e8ee130ecde6a780205d74cd)
|
1025
|
+
- fix plugin tests to expect new strings [`e7dc537`](https://github.com/craigerl/aprsd/commit/e7dc5379009ee0982138881eb82a5de268ef2e02)
|
1026
|
+
- Changed default log level to INFO [`0aa905e`](https://github.com/craigerl/aprsd/commit/0aa905ebba802e2f8cecc2b9c98caa72edc15a41)
|
1027
|
+
- Removed flask code [`72fa550`](https://github.com/craigerl/aprsd/commit/72fa550250dcaef2c4badfe9aa755464aafcd659)
|
1028
|
+
- Fixed the queryPlugin unit test [`74be4f8`](https://github.com/craigerl/aprsd/commit/74be4f853ed4b4e9705445a22ae281614a5d485c)
|
1029
|
+
- test plugin expect responses update to match query output [`3be373d`](https://github.com/craigerl/aprsd/commit/3be373d7fc7f47d3b97f51fd6b95c410bbdf91e1)
|
1030
|
+
- Fixed main server client initialization [`7486770`](https://github.com/craigerl/aprsd/commit/7486770bdc2e9670bb803ee064d08708ddcc55b7)
|
1031
|
+
- Enabled some emailthread messages and added timestamp [`d81bfd6`](https://github.com/craigerl/aprsd/commit/d81bfd6fd5b238157eee13809ba7fafae61b7d4d)
|
1032
|
+
- fix usage statement [`f538fb2`](https://github.com/craigerl/aprsd/commit/f538fb26aed62871c31bc47024b3041e2a15bb4a)
|
1033
|
+
- Fix tox tests. [`0e9cfdd`](https://github.com/craigerl/aprsd/commit/0e9cfdd847aeb87a29e30e2b443cab9d8911442f)
|
1034
|
+
- Updated Changelog for v1.5.0 release [`33a0e6c`](https://github.com/craigerl/aprsd/commit/33a0e6c18d7adbe979bcb49708f9730dd3f5ccec)
|
1019
1035
|
|
1020
1036
|
#### [v1.1.0](https://github.com/craigerl/aprsd/compare/v1.0.1...v1.1.0)
|
1021
1037
|
|
@@ -1025,16 +1041,16 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
1025
1041
|
- Major refactor [`#23`](https://github.com/craigerl/aprsd/pull/23)
|
1026
1042
|
- Updated the Dockerfile to use alpine [`#24`](https://github.com/craigerl/aprsd/pull/24)
|
1027
1043
|
- Big patch [`fa51f8f`](https://github.com/craigerl/aprsd/commit/fa51f8fdf20bd5578353009cb49cf4fdf7ed71fb)
|
1028
|
-
-
|
1029
|
-
- Refactored the main process_packet method [`1d898ea`](https://github.com/craigerl/aprsd/commit/1d898ea20fb739e50d190f35b2e8bac909d4f127)
|
1044
|
+
- Fixed send-message with email command and others [`3261710`](https://github.com/craigerl/aprsd/commit/3261710bf8d5b3dc8d038016825af39fa1cdbf98)
|
1030
1045
|
- Updated README.rst [`6a61765`](https://github.com/craigerl/aprsd/commit/6a61765eba9cd2f3ad0c4f104f011e82e0f86029)
|
1046
|
+
- Updated the aprsd-slack-plugin required version [`0992ab8`](https://github.com/craigerl/aprsd/commit/0992ab817696a2aa97604e0c4571350e4bd368a3)
|
1031
1047
|
- Fixed issue when RX ack [`d3ee1b7`](https://github.com/craigerl/aprsd/commit/d3ee1b78bc62dd57be6b505eb1269a70cdbb7242)
|
1032
|
-
-
|
1033
|
-
-
|
1048
|
+
- Added Changelog [`6d2160c`](https://github.com/craigerl/aprsd/commit/6d2160c7b740d8508c9fc5daebf58659c2d4595f)
|
1049
|
+
- Updated docker-compose [`c39fdde`](https://github.com/craigerl/aprsd/commit/c39fddef67f25bb73e128a47576e33cdf9db9d04)
|
1034
1050
|
- Ensure fortune is installed [`18b269a`](https://github.com/craigerl/aprsd/commit/18b269a39d91feeea7329ac1df61df21a29c49f4)
|
1035
1051
|
- Added fix for an unknown packet type [`b260954`](https://github.com/craigerl/aprsd/commit/b2609548f23430d850a365796fc519e6798b7576)
|
1036
|
-
-
|
1037
|
-
-
|
1052
|
+
- Update README with version 1.1.0 related info [`8161719`](https://github.com/craigerl/aprsd/commit/8161719697d04b02b00a2bd6b6ef32606602489c)
|
1053
|
+
- Refactored the main process_packet method [`1d898ea`](https://github.com/craigerl/aprsd/commit/1d898ea20fb739e50d190f35b2e8bac909d4f127)
|
1038
1054
|
|
1039
1055
|
#### [v1.0.1](https://github.com/craigerl/aprsd/compare/v1.0.0...v1.0.1)
|
1040
1056
|
|
@@ -1045,9 +1061,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
1045
1061
|
- Updates for building containers [`#19`](https://github.com/craigerl/aprsd/pull/19)
|
1046
1062
|
- Don't use the dirname for the plugin path search [`#18`](https://github.com/craigerl/aprsd/pull/18)
|
1047
1063
|
- Reworked Plugin loading [`#17`](https://github.com/craigerl/aprsd/pull/17)
|
1048
|
-
- Updated README with a TOC [`21253ff`](https://github.com/craigerl/aprsd/commit/21253ff6e798356aff97479ca0d80326bcf0e9b3)
|
1049
|
-
- Updated README with development information [`3ffa416`](https://github.com/craigerl/aprsd/commit/3ffa4165f01153f67102c835508bf6dd5a9a30bc)
|
1050
1064
|
- Fixed an issue with weather plugin [`eba093b`](https://github.com/craigerl/aprsd/commit/eba093b62a7d100fe0f88850c9e9b3b6f50d3a2e)
|
1065
|
+
- Updated README with development information [`3ffa416`](https://github.com/craigerl/aprsd/commit/3ffa4165f01153f67102c835508bf6dd5a9a30bc)
|
1066
|
+
- Updated README with a TOC [`21253ff`](https://github.com/craigerl/aprsd/commit/21253ff6e798356aff97479ca0d80326bcf0e9b3)
|
1051
1067
|
- Updated loggin timestamp to include [] [`8a62738`](https://github.com/craigerl/aprsd/commit/8a6273867cc9bd341f4c4ed628048c932320cf8e)
|
1052
1068
|
|
1053
1069
|
#### v1.0.0
|
@@ -1070,102 +1086,102 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
1070
1086
|
- Added password, callsign and host [`#3`](https://github.com/craigerl/aprsd/pull/3)
|
1071
1087
|
- Cleaned up trailing whitespace [`#2`](https://github.com/craigerl/aprsd/pull/2)
|
1072
1088
|
- Added standard python main() [`#1`](https://github.com/craigerl/aprsd/pull/1)
|
1089
|
+
- Initial commit [`8cea620`](https://github.com/craigerl/aprsd/commit/8cea620fcc738e1f6e00cf79ed204ea58ea3ae0c)
|
1090
|
+
- Add files via upload [`51579d7`](https://github.com/craigerl/aprsd/commit/51579d7c2350a85f755e3ee039bc76278da62a59)
|
1091
|
+
- Update README.md [`38d2e51`](https://github.com/craigerl/aprsd/commit/38d2e516de18876b911213f373d76fddff3d6115)
|
1092
|
+
- Update README.md [`6db4e6f`](https://github.com/craigerl/aprsd/commit/6db4e6fd5e7d35b21bf3dde1c18a50cbacc99232)
|
1093
|
+
- Update README.md [`7947d54`](https://github.com/craigerl/aprsd/commit/7947d54fd7b75d41c29915084d8d93b38d601bfc)
|
1094
|
+
- Update README.md [`66f8f82`](https://github.com/craigerl/aprsd/commit/66f8f8269a9e466618ea48ce30f0a9adafb0fd36)
|
1095
|
+
- Update README.md [`538e2fe`](https://github.com/craigerl/aprsd/commit/538e2fef29ba547b980d63865573cc0491db858b)
|
1096
|
+
- Update README.md [`e2d9478`](https://github.com/craigerl/aprsd/commit/e2d9478e272a047f0dd1d2e6ffa5f9c3f9f3d269)
|
1097
|
+
- Update README.md [`a3f1d34`](https://github.com/craigerl/aprsd/commit/a3f1d34bc05c8443d419fee2db5a75312528e394)
|
1098
|
+
- Update README.md [`d31d3bd`](https://github.com/craigerl/aprsd/commit/d31d3bdf0d192c63dc22c0256d6ee14d738e6007)
|
1099
|
+
- Update README.md [`7e409c7`](https://github.com/craigerl/aprsd/commit/7e409c79fbe18e1e3efa62ee15543728f4b2d92a)
|
1100
|
+
- Update README.md [`ce66908`](https://github.com/craigerl/aprsd/commit/ce6690842ad5c2a182ecdd57359aa1bccd4d9dc4)
|
1101
|
+
- Update README.md [`d9b9fd9`](https://github.com/craigerl/aprsd/commit/d9b9fd9a47f6d487e63847dbcd9c3c0787be2f5d)
|
1102
|
+
- Update README.md [`134a555`](https://github.com/craigerl/aprsd/commit/134a5558d4332e92241c4013fcef7e9f173cd609)
|
1103
|
+
- Update aprsd.py [`2330523`](https://github.com/craigerl/aprsd/commit/2330523853855e0b722e0ee51164af932ffae196)
|
1104
|
+
- Update README.md [`821a34b`](https://github.com/craigerl/aprsd/commit/821a34b12d97b4521cfbc1de9c39f6248f0ea512)
|
1105
|
+
- Add files via upload [`471af76`](https://github.com/craigerl/aprsd/commit/471af76595407ded6a25c6ac4f24ea91e0fa872c)
|
1106
|
+
- Update aprsd.py [`230cf45`](https://github.com/craigerl/aprsd/commit/230cf453591e55c632aa2b672b6a9fd40ed9ef74)
|
1107
|
+
- Update README.md [`04269b3`](https://github.com/craigerl/aprsd/commit/04269b39ba4b295943efa80e5fad2d6343756f5f)
|
1108
|
+
- Update README.md [`aa184a3`](https://github.com/craigerl/aprsd/commit/aa184a34ac94f17810f5059d144bdf0d427df752)
|
1073
1109
|
- de-localize [`fcef019`](https://github.com/craigerl/aprsd/commit/fcef0195b03a1d6397a5dbaf25454ba2b4c87ccb)
|
1074
|
-
-
|
1075
|
-
-
|
1110
|
+
- Update README.md [`34d4da8`](https://github.com/craigerl/aprsd/commit/34d4da8f0d32da286cda1faf0a8af74f981523aa)
|
1111
|
+
- Update README.md [`e3a1841`](https://github.com/craigerl/aprsd/commit/e3a18417f1fb9b78056c4d2b1327b0011e53c5ab)
|
1112
|
+
- Update README.md [`e74fd4f`](https://github.com/craigerl/aprsd/commit/e74fd4fd6dc748cb1cc68158df75ffecd1e7e720)
|
1113
|
+
- Update README.md [`7cfde54`](https://github.com/craigerl/aprsd/commit/7cfde5425050ba049ba34342f824d8710ad638e1)
|
1114
|
+
- de-localize [`149580e`](https://github.com/craigerl/aprsd/commit/149580e8c434bf7b7beaef88723e73995cb7b8b2)
|
1115
|
+
- mapme [`48036f9`](https://github.com/craigerl/aprsd/commit/48036f9ffdabce9be1b9faa4e4db37c6a0c57486)
|
1076
1116
|
- added weather and location [`7b74138`](https://github.com/craigerl/aprsd/commit/7b74138cbaf016e770b3879d36740c2a57fcc585)
|
1077
|
-
-
|
1117
|
+
- added weather and location 2 [`2fbc0e3`](https://github.com/craigerl/aprsd/commit/2fbc0e305c21ab45ff6c0443794447d1686422e5)
|
1118
|
+
- added weather and location 3 [`f1d25c0`](https://github.com/craigerl/aprsd/commit/f1d25c06aafc08f87c1618b71260dd12545e8e70)
|
1119
|
+
- sanitize readme [`de6ca53`](https://github.com/craigerl/aprsd/commit/de6ca53fc8887248d936eb45f2a4a126bdac6876)
|
1120
|
+
- sanitize readme a bit more [`b6356ce`](https://github.com/craigerl/aprsd/commit/b6356ce90142dc4c24ff564182baa9e61bedf1d5)
|
1121
|
+
- sanitize readme a bit more [`19e747d`](https://github.com/craigerl/aprsd/commit/19e747d3dce0f5c291795ebfc950928dcfea2090)
|
1122
|
+
- drop virtenv on first line [`f3e386c`](https://github.com/craigerl/aprsd/commit/f3e386c485fd45cc4c6e371a5222134eb87de516)
|
1123
|
+
- tweaks to readme [`8a1c5e0`](https://github.com/craigerl/aprsd/commit/8a1c5e0db2ea070187ef902b547ecbcfbe151f82)
|
1124
|
+
- make tn a global [`d9caac6`](https://github.com/craigerl/aprsd/commit/d9caac64d7b3e0e7c63d64a3562a4789d6c49f0d)
|
1125
|
+
- add tweaked fuzzyclock [`7dc1c5d`](https://github.com/craigerl/aprsd/commit/7dc1c5d8fdab0543f0e655ea79887d87cedb713f)
|
1126
|
+
- comments [`174da13`](https://github.com/craigerl/aprsd/commit/174da13ddacd421468fadd1213db55b5ece4830c)
|
1127
|
+
- Added argparse for cli options [`8b61116`](https://github.com/craigerl/aprsd/commit/8b61116fceef117a5d2faa86bde5e8244878f88d)
|
1078
1128
|
- First stab at migrating this to a pytpi repo [`ecd797d`](https://github.com/craigerl/aprsd/commit/ecd797d91e56a3444e79a9e67d552c602fffa772)
|
1079
1129
|
- First stab at migrating this to a pytpi repo [`a2b5908`](https://github.com/craigerl/aprsd/commit/a2b5908b1670251bb4a4250db8bbf8d75da646fd)
|
1130
|
+
- readme update [`4a8181c`](https://github.com/craigerl/aprsd/commit/4a8181ce303b173116704bf8c0a0eccf76aa6690)
|
1131
|
+
- readme [`d3e5d35`](https://github.com/craigerl/aprsd/commit/d3e5d35d1c0c952a495b030a9658cf28b781857e)
|
1132
|
+
- readme again [`5ac718d`](https://github.com/craigerl/aprsd/commit/5ac718dfab7eafb3e00982ec4e0cfeadcd506782)
|
1133
|
+
- readme again again [`20c43b4`](https://github.com/craigerl/aprsd/commit/20c43b4e85b712f9e7d78a492084eb1a3db4f169)
|
1134
|
+
- readme again again [`d98af66`](https://github.com/craigerl/aprsd/commit/d98af66dba29be731d18eaa572919862dbdc8be2)
|
1135
|
+
- sanitize readme [`8390419`](https://github.com/craigerl/aprsd/commit/8390419292188e9abae4d7c86dacbb47b3ecb747)
|
1136
|
+
- update readme [`c36b14b`](https://github.com/craigerl/aprsd/commit/c36b14b4de56783562f2ea698e42a988df53efcb)
|
1137
|
+
- update readme [`b3435c0`](https://github.com/craigerl/aprsd/commit/b3435c0053116e5986f0189a82e8d376a2d45c87)
|
1138
|
+
- added exit if missing config file [`e3964c5`](https://github.com/craigerl/aprsd/commit/e3964c5426245e71a9689196b9e0402fdab376d5)
|
1139
|
+
- added test to ensure shortcuts in config.yml [`8d1d293`](https://github.com/craigerl/aprsd/commit/8d1d2933e886abb9b2ce72d364413b86917f7e63)
|
1140
|
+
- updated README for install and usage instructions [`4eff52f`](https://github.com/craigerl/aprsd/commit/4eff52f24589852404f7a6cd1581fd58c110ae43)
|
1141
|
+
- Added a try block around imap login [`89d038e`](https://github.com/craigerl/aprsd/commit/89d038e93d32ff63526335aed72859099641edcd)
|
1142
|
+
- select inbox if gmail server [`7abc470`](https://github.com/craigerl/aprsd/commit/7abc47098b873ec10fe8c1720eb326bd958807f7)
|
1143
|
+
- Created fake_aprs.py [`bd47a2b`](https://github.com/craigerl/aprsd/commit/bd47a2bdea43566bf63cb497d3b57996c2751d04)
|
1144
|
+
- Update README.md [`1f31ba0`](https://github.com/craigerl/aprsd/commit/1f31ba0fc754f5f543e977facffcfd093796cbb5)
|
1145
|
+
- fix INBOX [`78add91`](https://github.com/craigerl/aprsd/commit/78add91f3ccd8d2398a79890bf6f0f2520b38641)
|
1146
|
+
- fix bugs after beautification and yaml config additions. Convert to sockets. case insensitive commands [`abc6379`](https://github.com/craigerl/aprsd/commit/abc63791f135b75cd71ce0fcce002fee386a258e)
|
1147
|
+
- INSTALL.txt for the average person [`f175f7e`](https://github.com/craigerl/aprsd/commit/f175f7e6e31f41fd0dd9eb6fbb40bd2aea8b4cfb)
|
1148
|
+
- fix check_email_thread to do proper threading, take delay as arg [`b552f96`](https://github.com/craigerl/aprsd/commit/b552f9611f0f0c02d65804aeb03128383e16917c)
|
1080
1149
|
- fix check_email_thread to do proper threading, take delay as arg [`e171e16`](https://github.com/craigerl/aprsd/commit/e171e16854862e3cbc743b9c5d526f0895d54b19)
|
1081
|
-
- add tweaked fuzzyclock [`7dc1c5d`](https://github.com/craigerl/aprsd/commit/7dc1c5d8fdab0543f0e655ea79887d87cedb713f)
|
1082
|
-
- added weather and location 2 [`2fbc0e3`](https://github.com/craigerl/aprsd/commit/2fbc0e305c21ab45ff6c0443794447d1686422e5)
|
1083
|
-
- Initial conversion to click [`50fb090`](https://github.com/craigerl/aprsd/commit/50fb0905578171485c6cc69c3f60bc9f4eb3dd91)
|
1084
|
-
- Add files via upload [`51579d7`](https://github.com/craigerl/aprsd/commit/51579d7c2350a85f755e3ee039bc76278da62a59)
|
1085
|
-
- clean up code around closed_socket and reconnect [`371a7a0`](https://github.com/craigerl/aprsd/commit/371a7a08acbef67cfcc9163888ade88a5e4ae88b)
|
1086
|
-
- Add files via upload [`471af76`](https://github.com/craigerl/aprsd/commit/471af76595407ded6a25c6ac4f24ea91e0fa872c)
|
1087
|
-
- Update README.md [`ce66908`](https://github.com/craigerl/aprsd/commit/ce6690842ad5c2a182ecdd57359aa1bccd4d9dc4)
|
1088
|
-
- Added argparse for cli options [`8b61116`](https://github.com/craigerl/aprsd/commit/8b61116fceef117a5d2faa86bde5e8244878f88d)
|
1089
|
-
- can detect closed socket and reconnect now [`b8f37fa`](https://github.com/craigerl/aprsd/commit/b8f37fac6ed24be4dcf5741f3b85b0f4b0f8b2f8)
|
1090
|
-
- switch from urlib to requests for weather, tested in py3 and py2. still need to update locate, and all other http calls [`00432cf`](https://github.com/craigerl/aprsd/commit/00432cf5bbdfb59bc89d721874d692b79a90d6be)
|
1091
|
-
- socket reconnect on timeout testing [`712d66c`](https://github.com/craigerl/aprsd/commit/712d66c389c068cb84738bae0e26a7904c5e1c73)
|
1092
|
-
- fix parse_email unicode probs by using body.decode(errors='ignore') [`44228c6`](https://github.com/craigerl/aprsd/commit/44228c63b3accd72acb92185ac22bc7a2240af5d)
|
1093
|
-
- added decaying email check timer which resets with activity [`cf73add`](https://github.com/craigerl/aprsd/commit/cf73add2db7ac6e85ee65e3d3e038dd709ce19f2)
|
1094
1150
|
- socket reconnect on timeout testing [`5e96706`](https://github.com/craigerl/aprsd/commit/5e96706f7adf74c955fa4006228ea76a68b42f1e)
|
1151
|
+
- socket reconnect on timeout testing [`712d66c`](https://github.com/craigerl/aprsd/commit/712d66c389c068cb84738bae0e26a7904c5e1c73)
|
1152
|
+
- Reconnect on socket timeout [`b553987`](https://github.com/craigerl/aprsd/commit/b553987350723887c094a87638c49c3f93e26d03)
|
1095
1153
|
- Reconnect on socket timeout [`ecd0e8f`](https://github.com/craigerl/aprsd/commit/ecd0e8f95eeadf9582075e15e1120f9999ca068a)
|
1096
1154
|
- Reconnect on socket timeout [`766acbb`](https://github.com/craigerl/aprsd/commit/766acbb777a59150da5e77d2d5c7725621dfc01e)
|
1097
|
-
-
|
1098
|
-
-
|
1155
|
+
- socket timeout of 300 instead of 60 [`32e146d`](https://github.com/craigerl/aprsd/commit/32e146d105dc47ab591f200b4d0df89209d45b77)
|
1156
|
+
- added decaying email check timer which resets with activity [`cf73add`](https://github.com/craigerl/aprsd/commit/cf73add2db7ac6e85ee65e3d3e038dd709ce19f2)
|
1157
|
+
- George Carlin profanity filter [`3ae7a05`](https://github.com/craigerl/aprsd/commit/3ae7a056b62f751498d653b39d8b68a9aa9d86e3)
|
1158
|
+
- Update INSTALL.txt [`89069af`](https://github.com/craigerl/aprsd/commit/89069af58a03427f45f255109ecbee9ff0b3a351)
|
1159
|
+
- Update INSTALL.txt [`ef132d8`](https://github.com/craigerl/aprsd/commit/ef132d8037087c647d35e1f39d7cd44a5b924c54)
|
1160
|
+
- Update INSTALL.txt [`d1ab8bc`](https://github.com/craigerl/aprsd/commit/d1ab8bc27d3977f5b8ca1f9280d8857602414900)
|
1161
|
+
- main loop went into tight loop, added debug print before every continue [`b597228`](https://github.com/craigerl/aprsd/commit/b5972287196130ea873ee00a8713cf56e5d543b3)
|
1162
|
+
- main loop went into tight loop, more debug prints [`a4faa76`](https://github.com/craigerl/aprsd/commit/a4faa7614c646b8698908c54f21f97e5b3122c1f)
|
1163
|
+
- Update INSTALL.txt [`54a2c01`](https://github.com/craigerl/aprsd/commit/54a2c016c9f08c35b1860b70473204970b7dfe68)
|
1099
1164
|
- more debugging messages trying to find rare tight loop in main [`3d7e3a4`](https://github.com/craigerl/aprsd/commit/3d7e3a4e542bab8edfb48f1804136873077e34f1)
|
1100
|
-
- Update README.md [`821a34b`](https://github.com/craigerl/aprsd/commit/821a34b12d97b4521cfbc1de9c39f6248f0ea512)
|
1101
|
-
- Update README.md [`34d4da8`](https://github.com/craigerl/aprsd/commit/34d4da8f0d32da286cda1faf0a8af74f981523aa)
|
1102
|
-
- Update README.md [`04269b3`](https://github.com/craigerl/aprsd/commit/04269b39ba4b295943efa80e5fad2d6343756f5f)
|
1103
|
-
- Update README.md [`38d2e51`](https://github.com/craigerl/aprsd/commit/38d2e516de18876b911213f373d76fddff3d6115)
|
1104
|
-
- Update aprsd.py [`230cf45`](https://github.com/craigerl/aprsd/commit/230cf453591e55c632aa2b672b6a9fd40ed9ef74)
|
1105
|
-
- Update aprsd.py [`2330523`](https://github.com/craigerl/aprsd/commit/2330523853855e0b722e0ee51164af932ffae196)
|
1106
|
-
- imap tags are unicode in py3. .decode tags [`4b09fad`](https://github.com/craigerl/aprsd/commit/4b09fad8767c8bdb7ddcab2dc4b04a0863d6cdfe)
|
1107
|
-
- INSTALL.txt for the average person [`f175f7e`](https://github.com/craigerl/aprsd/commit/f175f7e6e31f41fd0dd9eb6fbb40bd2aea8b4cfb)
|
1108
|
-
- readme update [`4a8181c`](https://github.com/craigerl/aprsd/commit/4a8181ce303b173116704bf8c0a0eccf76aa6690)
|
1109
|
-
- Update README.md [`e3a1841`](https://github.com/craigerl/aprsd/commit/e3a18417f1fb9b78056c4d2b1327b0011e53c5ab)
|
1110
|
-
- cleaned up weather code after switch to requests ... from urllib. works on py2 and py3 [`ad0f96d`](https://github.com/craigerl/aprsd/commit/ad0f96d1aafef080dfaa6f9d5587c965f9115bd2)
|
1111
|
-
- Update README.md [`e2d9478`](https://github.com/craigerl/aprsd/commit/e2d9478e272a047f0dd1d2e6ffa5f9c3f9f3d269)
|
1112
1165
|
- Update INSTALL.txt [`22f7123`](https://github.com/craigerl/aprsd/commit/22f7123e17724331e669c7b5ecf52edefdfb1693)
|
1113
|
-
-
|
1114
|
-
- reset default email check delay to 60, fix a few comments [`d3bb44f`](https://github.com/craigerl/aprsd/commit/d3bb44feeca74f37df3a95ab51f308823e2214a7)
|
1115
|
-
- Added a try block around imap login [`89d038e`](https://github.com/craigerl/aprsd/commit/89d038e93d32ff63526335aed72859099641edcd)
|
1116
|
-
- fix check_email_thread to do proper threading, take delay as arg [`b552f96`](https://github.com/craigerl/aprsd/commit/b552f9611f0f0c02d65804aeb03128383e16917c)
|
1117
|
-
- main loop went into tight loop, added debug print before every continue [`b597228`](https://github.com/craigerl/aprsd/commit/b5972287196130ea873ee00a8713cf56e5d543b3)
|
1118
|
-
- socket timeout 5 minutes [`e6995c3`](https://github.com/craigerl/aprsd/commit/e6995c360582ab5bb21c98ce4c90de43578efa48)
|
1119
|
-
- sanitize readme [`8390419`](https://github.com/craigerl/aprsd/commit/8390419292188e9abae4d7c86dacbb47b3ecb747)
|
1120
|
-
- readme again again [`20c43b4`](https://github.com/craigerl/aprsd/commit/20c43b4e85b712f9e7d78a492084eb1a3db4f169)
|
1121
|
-
- sanitize readme a bit more [`b6356ce`](https://github.com/craigerl/aprsd/commit/b6356ce90142dc4c24ff564182baa9e61bedf1d5)
|
1122
|
-
- yet another unicode problem, in resend_email fixed [`bb1a2ee`](https://github.com/craigerl/aprsd/commit/bb1a2ee61a7bf7b95821c46d8094a0814512ac7a)
|
1123
|
-
- some failed attempts at getting the first txt or html from a multipart message, currently sends the last [`90fcb99`](https://github.com/craigerl/aprsd/commit/90fcb9973bcc29eb4f1838bd11f6ae2e7cdced32)
|
1124
|
-
- fix INBOX [`78add91`](https://github.com/craigerl/aprsd/commit/78add91f3ccd8d2398a79890bf6f0f2520b38641)
|
1125
|
-
- updated README for install and usage instructions [`4eff52f`](https://github.com/craigerl/aprsd/commit/4eff52f24589852404f7a6cd1581fd58c110ae43)
|
1166
|
+
- can detect closed socket and reconnect now [`b8f37fa`](https://github.com/craigerl/aprsd/commit/b8f37fac6ed24be4dcf5741f3b85b0f4b0f8b2f8)
|
1126
1167
|
- Detect closed socket, reconnect, with a bit more grace [`4b67df2`](https://github.com/craigerl/aprsd/commit/4b67df2907e1ad6e0258aa154facb969217c0936)
|
1127
|
-
-
|
1128
|
-
-
|
1129
|
-
-
|
1168
|
+
- socket timeout 5 minutes [`e6995c3`](https://github.com/craigerl/aprsd/commit/e6995c360582ab5bb21c98ce4c90de43578efa48)
|
1169
|
+
- clean up code around closed_socket and reconnect [`735cb3a`](https://github.com/craigerl/aprsd/commit/735cb3a557650ac207cc70910f082b5f31ae2ecd)
|
1170
|
+
- clean up code around closed_socket and reconnect [`371a7a0`](https://github.com/craigerl/aprsd/commit/371a7a08acbef67cfcc9163888ade88a5e4ae88b)
|
1171
|
+
- fix parse_email unicode probs by using body.decode(errors='ignore') [`44228c6`](https://github.com/craigerl/aprsd/commit/44228c63b3accd72acb92185ac22bc7a2240af5d)
|
1130
1172
|
- fix parse_email unicode probs by using body.decode(errors='ignore').. again [`3c16149`](https://github.com/craigerl/aprsd/commit/3c16149e716b9677417731a2651d5a3cb0862b49)
|
1131
|
-
-
|
1132
|
-
- Update INSTALL.txt [`89069af`](https://github.com/craigerl/aprsd/commit/89069af58a03427f45f255109ecbee9ff0b3a351)
|
1133
|
-
- Update README.md [`1f31ba0`](https://github.com/craigerl/aprsd/commit/1f31ba0fc754f5f543e977facffcfd093796cbb5)
|
1134
|
-
- update readme [`c36b14b`](https://github.com/craigerl/aprsd/commit/c36b14b4de56783562f2ea698e42a988df53efcb)
|
1135
|
-
- readme again [`5ac718d`](https://github.com/craigerl/aprsd/commit/5ac718dfab7eafb3e00982ec4e0cfeadcd506782)
|
1136
|
-
- Update README.md [`7cfde54`](https://github.com/craigerl/aprsd/commit/7cfde5425050ba049ba34342f824d8710ad638e1)
|
1137
|
-
- Update README.md [`e74fd4f`](https://github.com/craigerl/aprsd/commit/e74fd4fd6dc748cb1cc68158df75ffecd1e7e720)
|
1138
|
-
- Update README.md [`d9b9fd9`](https://github.com/craigerl/aprsd/commit/d9b9fd9a47f6d487e63847dbcd9c3c0787be2f5d)
|
1139
|
-
- Update README.md [`7e409c7`](https://github.com/craigerl/aprsd/commit/7e409c79fbe18e1e3efa62ee15543728f4b2d92a)
|
1140
|
-
- Update README.md [`a3f1d34`](https://github.com/craigerl/aprsd/commit/a3f1d34bc05c8443d419fee2db5a75312528e394)
|
1141
|
-
- Update README.md [`538e2fe`](https://github.com/craigerl/aprsd/commit/538e2fef29ba547b980d63865573cc0491db858b)
|
1142
|
-
- Update README.md [`7947d54`](https://github.com/craigerl/aprsd/commit/7947d54fd7b75d41c29915084d8d93b38d601bfc)
|
1143
|
-
- main loop went into tight loop, more debug prints [`a4faa76`](https://github.com/craigerl/aprsd/commit/a4faa7614c646b8698908c54f21f97e5b3122c1f)
|
1144
|
-
- select inbox if gmail server [`7abc470`](https://github.com/craigerl/aprsd/commit/7abc47098b873ec10fe8c1720eb326bd958807f7)
|
1145
|
-
- fixed fortune. yet another unicode issue, tested in py3 and py2 [`2bebd83`](https://github.com/craigerl/aprsd/commit/2bebd8344985d49eda197d87674ddb4107824abd)
|
1146
|
-
- add urllib import back until i replace all calls with requests [`b38f561`](https://github.com/craigerl/aprsd/commit/b38f561b843b831f190f695bdcf643042727cfc7)
|
1147
|
-
- Update INSTALL.txt [`9cd6542`](https://github.com/craigerl/aprsd/commit/9cd65424f85b01eefcee5abb95b683a4ad7a555b)
|
1148
|
-
- Update INSTALL.txt [`ef132d8`](https://github.com/craigerl/aprsd/commit/ef132d8037087c647d35e1f39d7cd44a5b924c54)
|
1173
|
+
- some failed attempts at getting the first txt or html from a multipart message, currently sends the last [`90fcb99`](https://github.com/craigerl/aprsd/commit/90fcb9973bcc29eb4f1838bd11f6ae2e7cdced32)
|
1149
1174
|
- found another .decode that didn't include errors='ignore' [`f69f9a2`](https://github.com/craigerl/aprsd/commit/f69f9a2027f393cfce19336e3bfbb7e17337d387)
|
1150
|
-
-
|
1151
|
-
-
|
1152
|
-
-
|
1153
|
-
- update
|
1154
|
-
-
|
1155
|
-
-
|
1156
|
-
-
|
1157
|
-
- drop virtenv on first line [`f3e386c`](https://github.com/craigerl/aprsd/commit/f3e386c485fd45cc4c6e371a5222134eb87de516)
|
1158
|
-
- sanitize readme a bit more [`19e747d`](https://github.com/craigerl/aprsd/commit/19e747d3dce0f5c291795ebfc950928dcfea2090)
|
1159
|
-
- sanitize readme [`de6ca53`](https://github.com/craigerl/aprsd/commit/de6ca53fc8887248d936eb45f2a4a126bdac6876)
|
1160
|
-
- added weather and location 3 [`f1d25c0`](https://github.com/craigerl/aprsd/commit/f1d25c06aafc08f87c1618b71260dd12545e8e70)
|
1161
|
-
- mapme [`48036f9`](https://github.com/craigerl/aprsd/commit/48036f9ffdabce9be1b9faa4e4db37c6a0c57486)
|
1162
|
-
- de-localize [`149580e`](https://github.com/craigerl/aprsd/commit/149580e8c434bf7b7beaef88723e73995cb7b8b2)
|
1163
|
-
- Update README.md [`aa184a3`](https://github.com/craigerl/aprsd/commit/aa184a34ac94f17810f5059d144bdf0d427df752)
|
1164
|
-
- Update README.md [`134a555`](https://github.com/craigerl/aprsd/commit/134a5558d4332e92241c4013fcef7e9f173cd609)
|
1165
|
-
- Update README.md [`d31d3bd`](https://github.com/craigerl/aprsd/commit/d31d3bdf0d192c63dc22c0256d6ee14d738e6007)
|
1166
|
-
- Update README.md [`66f8f82`](https://github.com/craigerl/aprsd/commit/66f8f8269a9e466618ea48ce30f0a9adafb0fd36)
|
1167
|
-
- Initial commit [`8cea620`](https://github.com/craigerl/aprsd/commit/8cea620fcc738e1f6e00cf79ed204ea58ea3ae0c)
|
1175
|
+
- Initial conversion to click [`50fb090`](https://github.com/craigerl/aprsd/commit/50fb0905578171485c6cc69c3f60bc9f4eb3dd91)
|
1176
|
+
- Update INSTALL.txt [`9cd6542`](https://github.com/craigerl/aprsd/commit/9cd65424f85b01eefcee5abb95b683a4ad7a555b)
|
1177
|
+
- imap tags are unicode in py3. .decode tags [`4b09fad`](https://github.com/craigerl/aprsd/commit/4b09fad8767c8bdb7ddcab2dc4b04a0863d6cdfe)
|
1178
|
+
- switch from urlib to requests for weather, tested in py3 and py2. still need to update locate, and all other http calls [`00432cf`](https://github.com/craigerl/aprsd/commit/00432cf5bbdfb59bc89d721874d692b79a90d6be)
|
1179
|
+
- cleaned up weather code after switch to requests ... from urllib. works on py2 and py3 [`ad0f96d`](https://github.com/craigerl/aprsd/commit/ad0f96d1aafef080dfaa6f9d5587c965f9115bd2)
|
1180
|
+
- add urllib import back until i replace all calls with requests [`b38f561`](https://github.com/craigerl/aprsd/commit/b38f561b843b831f190f695bdcf643042727cfc7)
|
1181
|
+
- completely off urllib now, tested locate/weather in py2 and py3 [`86bf428`](https://github.com/craigerl/aprsd/commit/86bf42802c36a1415481cb5fe974844f850a1d08)
|
1168
1182
|
- lose some logging statements [`c5517a7`](https://github.com/craigerl/aprsd/commit/c5517a7cb5ec005bbf843838614aeeda84530068)
|
1169
|
-
-
|
1170
|
-
-
|
1171
|
-
-
|
1183
|
+
- fixed fortune. yet another unicode issue, tested in py3 and py2 [`2bebd83`](https://github.com/craigerl/aprsd/commit/2bebd8344985d49eda197d87674ddb4107824abd)
|
1184
|
+
- reset default email check delay to 60, fix a few comments [`d3bb44f`](https://github.com/craigerl/aprsd/commit/d3bb44feeca74f37df3a95ab51f308823e2214a7)
|
1185
|
+
- yet another unicode problem, in resend_email fixed [`bb1a2ee`](https://github.com/craigerl/aprsd/commit/bb1a2ee61a7bf7b95821c46d8094a0814512ac7a)
|
1186
|
+
- get rid of some debug statements [`43509ea`](https://github.com/craigerl/aprsd/commit/43509ea9e68bed3923e4d31d1b6854bab48a5d6f)
|
1187
|
+
- Rewrote the README.md to README.rst [`e1edbe6`](https://github.com/craigerl/aprsd/commit/e1edbe6c6287791f6ced2d243c073dbd65c648ea)
|