diff --git a/CHANGELOG.md b/CHANGELOG.md index 862a583..f38f764 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # CHANGELOG +## v0.5.5 + +* Added comprehensive helper unit tests by @l5yth in +* Added reaction-aware handling by @l5yth in +* Env: add map zoom by @l5yth in +* Charts: render aggregated telemetry charts for all nodes by @l5yth in +* Nodes: render charts detail pages as overlay by @l5yth in +* Fix telemetry parsing for charts by @l5yth in +* Nodes: improve charts on detail pages by @l5yth in +* Nodes: add charts to detail pages by @l5yth in +* Aggregate frontend snapshots across views by @l5yth in +* Remove added 1 if reply with emoji by @Alexkurd in +* Refine node detail view layout by @l5yth in +* Enable map centering from node table coordinates by @l5yth in +* Add node detail route and page by @l5yth in +* Ensure Meshtastic nodeinfo patch runs before importing interfaces by @l5yth in +* Filter zero-valued fields from API responses by @l5yth in +* Add debug payload tracing and ignored packet logging by @l5yth in +* Tighten map auto-fit behaviour by @l5yth in +* Fetch encrypted chat log entries for log tab by @l5yth in +* Add encrypted filter to messages API by @l5yth in +* Guard NodeInfo handler against missing IDs by @l5yth in +* Add standalone full-screen map, chat, and nodes views by @l5yth in +* Ensure chat history fetches full message limit by @l5yth in +* Fix ingestion of nodeinfo packets missing ids (#426) by @l5yth in +* Chore: update license headers by @l5yth in +* Chore: bump version to 0.5.5 by @l5yth in + ## v0.5.4 * Handle naming when primary channel has a name by @l5yth in diff --git a/data/__init__.py b/data/__init__.py index f41d18d..fbaa873 100644 --- a/data/__init__.py +++ b/data/__init__.py @@ -18,7 +18,7 @@ The ``data.mesh`` module exposes helpers for reading Meshtastic node and message information before forwarding it to the accompanying web application. """ -VERSION = "0.5.5" +VERSION = "0.5.6" """Semantic version identifier shared with the dashboard and front-end.""" __version__ = VERSION diff --git a/scrot-0.5.png b/scrot-0.5.png new file mode 100644 index 0000000..e8248c3 Binary files /dev/null and b/scrot-0.5.png differ diff --git a/web/lib/potato_mesh/config.rb b/web/lib/potato_mesh/config.rb index d04a44d..558f901 100644 --- a/web/lib/potato_mesh/config.rb +++ b/web/lib/potato_mesh/config.rb @@ -175,7 +175,7 @@ module PotatoMesh # # @return [String] semantic version identifier. def version_fallback - "0.5.5" + "0.5.6" end # Default refresh interval for frontend polling routines. diff --git a/web/package-lock.json b/web/package-lock.json index e5a656a..281421f 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "potato-mesh", - "version": "0.5.5", + "version": "0.5.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "potato-mesh", - "version": "0.5.5", + "version": "0.5.6", "devDependencies": { "istanbul-lib-coverage": "^3.2.2", "istanbul-lib-report": "^3.0.1", diff --git a/web/package.json b/web/package.json index 3151e1f..1540e04 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "potato-mesh", - "version": "0.5.5", + "version": "0.5.6", "type": "module", "private": true, "scripts": {