diff --git a/Changelog b/Changelog index e62e4ae..20c5024 100644 --- a/Changelog +++ b/Changelog @@ -329,3 +329,16 @@ V.2.9 * API for info about items * Various fixes.. + +V.2.10 +------ +* Adaptations for DbSync - allow syncing user-db with DbSync (see Database plugin) +* REST client +* Allow HMAC based authentication in REST client and APIs (See Arctic Tracker and Database plugin) +* Use cuckoo filter for nonce duplicate checking... +* Own position and GPS work (tracking, smart beaconing, extra/redundant reports) +* Announce server using mDNS (Zeroconf) +* Tracker management fix +* Various fixes.. + + diff --git a/debian/changelog b/debian/changelog index 6d04870..ce6e08e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,15 @@ -polaric-aprsd (2.9+) UNRELEASED; urgency=medium - - * Hacking - - -- Oyvind Hanssen Sun, 20 Mar 2022 13:52:20 +0100 +polaric-aprsd (2.10) stable; urgency=medium + + * Adaptations for DbSync - allow syncing user-db with DbSync + * REST client + * Allow HMAC based authentication in REST client and API + * Use cuckoo filter for nonce duplicate checking... + * Own position and GPS work (tracking, smart beaconing, extra/redundant reports) + * Announce server using mDNS (Zeroconf) + * Tracker management fix + * Various fixes.. + + -- Oyvind Hanssen Tue, 06 Sep 2022 20:05:08 +0200 polaric-aprsd (2.9) stable; urgency=medium diff --git a/src/aprsd/Main.java b/src/aprsd/Main.java index 0797431..bdfc781 100644 --- a/src/aprsd/Main.java +++ b/src/aprsd/Main.java @@ -29,8 +29,8 @@ public class Main implements ServerAPI { - public static String version = "2.9+"; - public static String toaddr = "APPS29"; + public static String version = "2.10"; + public static String toaddr = "APPS2a"; private static StationDB db = null; private static AprsParser parser = null;