owntrack-rs

0.8.0 - 2025-06-19

v0.8.0 Jun 19 2025 at 21:34 UTC
  • BREAKING: Rename table gpslog to positions
  • Track export menu
  • Show pulsating dot for moving devices

Migration:

  • SQLite: remove exisiting db file and restart
  • PostgreSQL:
    • DB=mydb
    • psql $DB -c "ALTER TABLE gpslog RENAME TO positions; ALTER SEQUENCE gpslog_id_seq RENAME TO positions_id_seq; ALTER TABLE positions DROP COLUMN tid;"
    • pg_dump --data-only -Fc $DB -f ot.dump
    • Recreate database, restart and stop application
    • psql $DB -c "DELETE FROM positions; DELETE FROM devices;"
    • pg_restore --table devices --table devices_id_seq --table positions --table positions_id_seq -d $DB ot.dump