Mark incomplete features as under construction and implement v0.0.2 release
- Mark incomplete statistics charts with construction notices - Disable non-functional 3D radar controls - Implement collapsible Display Options menu (defaults to collapsed) - Add toast notifications for better error feedback - Update version to 0.0.2 across all files and packages - Improve Debian packaging with root-owner-group flag - Update repository URLs to Forgejo instance - Create comprehensive feature status documentation - Created 10 detailed issues for all incomplete features (#5-#14) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
064ba2de71
commit
67d0e0612a
14 changed files with 263 additions and 49 deletions
6
debian/DEBIAN/control
vendored
6
debian/DEBIAN/control
vendored
|
|
@ -1,10 +1,10 @@
|
|||
Package: skyview
|
||||
Version: 2.0.0
|
||||
Version: 0.0.2
|
||||
Section: net
|
||||
Priority: optional
|
||||
Architecture: amd64
|
||||
Depends: systemd
|
||||
Maintainer: SkyView Team <admin@skyview.local>
|
||||
Maintainer: Ole-Morten Duesund <glemt.net>
|
||||
Description: Multi-source ADS-B aircraft tracker with Beast format support
|
||||
SkyView is a standalone application that connects to multiple dump1090 Beast
|
||||
format TCP streams and provides a modern web frontend for aircraft tracking.
|
||||
|
|
@ -20,4 +20,4 @@ Description: Multi-source ADS-B aircraft tracker with Beast format support
|
|||
- Mobile-responsive design
|
||||
- Systemd integration for service management
|
||||
- Beast-dump utility for raw ADS-B data analysis
|
||||
Homepage: https://github.com/skyview/skyview
|
||||
Homepage: https://kode.naiv.no/olemd/skyview
|
||||
|
|
|
|||
23
debian/DEBIAN/postinst
vendored
23
debian/DEBIAN/postinst
vendored
|
|
@ -21,19 +21,28 @@ case "$1" in
|
|||
chmod 755 /var/lib/skyview
|
||||
chmod 755 /var/log/skyview
|
||||
|
||||
# Set permissions on config file
|
||||
# Set permissions on config files
|
||||
if [ -f /etc/skyview/config.json ]; then
|
||||
chown root:skyview /etc/skyview/config.json
|
||||
chmod 640 /etc/skyview/config.json
|
||||
fi
|
||||
|
||||
# Enable and start the service
|
||||
systemctl daemon-reload
|
||||
systemctl enable skyview.service
|
||||
|
||||
echo "SkyView has been installed and configured."
|
||||
echo "Edit /etc/skyview/config.json to configure your dump1090 sources."
|
||||
echo "Then run: systemctl start skyview"
|
||||
# Install systemd service but do not enable or start it
|
||||
systemctl daemon-reload
|
||||
|
||||
echo "SkyView has been installed successfully."
|
||||
echo ""
|
||||
echo "Configuration:"
|
||||
echo " - Main config: /etc/skyview/config.json"
|
||||
echo ""
|
||||
echo "To start SkyView:"
|
||||
echo " sudo systemctl enable skyview"
|
||||
echo " sudo systemctl start skyview"
|
||||
echo ""
|
||||
echo "Binaries installed:"
|
||||
echo " - skyview: Main ADS-B tracker server"
|
||||
echo " - beast-dump: Beast protocol data dump utility"
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
|
|||
BIN
debian/usr/bin/beast-dump
vendored
BIN
debian/usr/bin/beast-dump
vendored
Binary file not shown.
6
debian/usr/share/man/man1/beast-dump.1
vendored
6
debian/usr/share/man/man1/beast-dump.1
vendored
|
|
@ -1,4 +1,4 @@
|
|||
.TH BEAST-DUMP 1 "2024-08-24" "SkyView 2.0.0" "User Commands"
|
||||
.TH BEAST-DUMP 1 "2025-08-24" "SkyView 0.0.2" "User Commands"
|
||||
.SH NAME
|
||||
beast-dump \- Utility for analyzing raw ADS-B data in Beast binary format
|
||||
.SH SYNOPSIS
|
||||
|
|
@ -90,6 +90,6 @@ Beast format files typically use .bin or .beast extensions.
|
|||
.BR skyview (1),
|
||||
.BR dump1090 (1)
|
||||
.SH BUGS
|
||||
Report bugs at: https://github.com/skyview/skyview/issues
|
||||
Report bugs at: https://kode.naiv.no/olemd/skyview/issues
|
||||
.SH AUTHOR
|
||||
SkyView Team <admin@skyview.local>
|
||||
Ole-Morten Duesund <glemt.net>
|
||||
6
debian/usr/share/man/man1/skyview.1
vendored
6
debian/usr/share/man/man1/skyview.1
vendored
|
|
@ -1,4 +1,4 @@
|
|||
.TH SKYVIEW 1 "2024-08-24" "SkyView 2.0.0" "User Commands"
|
||||
.TH SKYVIEW 1 "2025-08-24" "SkyView 0.0.2" "User Commands"
|
||||
.SH NAME
|
||||
skyview \- Multi-source ADS-B aircraft tracker with Beast format support
|
||||
.SH SYNOPSIS
|
||||
|
|
@ -83,6 +83,6 @@ Coverage heatmaps and range circles
|
|||
.BR beast-dump (1),
|
||||
.BR dump1090 (1)
|
||||
.SH BUGS
|
||||
Report bugs at: https://github.com/skyview/skyview/issues
|
||||
Report bugs at: https://kode.naiv.no/olemd/skyview/issues
|
||||
.SH AUTHOR
|
||||
SkyView Team <admin@skyview.local>
|
||||
Ole-Morten Duesund <glemt.net>
|
||||
Loading…
Add table
Add a link
Reference in a new issue