diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 916b657..d0d3b95 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -6,6 +6,7 @@ [Quick Start](./quickstart.md) - [rsadsb Release Notes](./rsadsb_releases.md) + - [2024.09.02](./2024.09.02.md) - [2023.11.22](./2023.11.22.md) - [2022.12.29](./2022.12.29.md) - [v0.6.1](./v0.6.1.md) diff --git a/src/home.md b/src/home.md index feb0a2a..72d3bef 100644 --- a/src/home.md +++ b/src/home.md @@ -9,7 +9,7 @@ A Rust software suite for ADS-B demodulation, decoding, and processing. ## Features * **Easy Install** - binaries are provided for multiple platforms within the github releases. -* **Beautiful Applications** - the **radar** application uses [tui](https://github.com/fdehau/tui-rs) to create elegant terminal applications. +* **Beautiful Applications** - the **radar** application uses [ratatui](https://github.com/ratatui/ratatui) to create elegant terminal applications. * **Correct Decoding** - **rsadsb** uses state of the art libraries such as [deku](https://github.com/sharksforarms/deku) to closely and correctly parse the ADS-B protocol. * **Touchscreen Enabled** - **radar** is designed to use with both just a keyboard, or a touchscreen. * **Extendable Hackable source code** - all source code is open-source and is easily modified. @@ -20,7 +20,7 @@ See [quickstart](quickstart.md) for the easy installation process. ## Latest Release ### Major -[2023-11-22](2023.11.22.md) +[2024-09-02](2024.09.02.md) ### Minor N/A diff --git a/src/quickstart.md b/src/quickstart.md index 9ff62f3..c571605 100644 --- a/src/quickstart.md +++ b/src/quickstart.md @@ -1,5 +1,5 @@ # ADS-B Quick Start Installation Guide -_last edited: 2023/11/22_ +_last edited: 2024/09/02_ This guide will give you a quick and easy to setup system to demodulate and decode ADS-B messages using this Rust software! For a good technical intro into what ADS-B is and how it is decoded, see the following [guide](https://mode-s.org/decode/). @@ -44,17 +44,17 @@ Binaries can be downloaded from the latest releases of our software on github. The following is an example for `x86_64`. ``` # download dump1090_rs -> wget https://github.com/rsadsb/dump1090_rs/releases/download/v0.7.1/dump1090_rs-v0.7.1-aarch64-unknown-linux-gnu.tar.gz -> tar -xf dump1090_rs-v0.7.1-aarch64-unknown-linux-gnu.tar.gz +> wget https://github.com/rsadsb/dump1090_rs/releases/download/v0.8.0/dump1090_rs-x86_64-unknown-linux-gnu.tar.gz +> tar -xf dump1090_rs-x86_64-unknown-linux-gnu.tar.gz # download radar -> wget https://github.com/rsadsb/adsb_deku/releases/download/v2023.11.22/radar-x86_64-unknown-linux-gnu.tar.gz +> wget https://github.com/rsadsb/adsb_deku/releases/download/v2024.09.02/radar-x86_64-unknown-linux-gnu.tar.gz > tar -xf radar-x86_64-unknown-linux-gnu.tar.gz ``` `ARM` releases are also available: -- [dump1090_rs](https://github.com/rsadsb/dump1090_rs/releases/tag/v0.7.1) -- [radar](https://github.com/rsadsb/adsb_deku/releases/tag/v2023.11.22) +- [dump1090_rs](https://github.com/rsadsb/dump1090_rs/releases/tag/v0.8.0) +- [radar](https://github.com/rsadsb/adsb_deku/releases/tag/v2024.09.02) ## (Optional) Install from source for max performance diff --git a/src/rsadsb_releases.md b/src/rsadsb_releases.md index dbaba5d..f36f9ae 100644 --- a/src/rsadsb_releases.md +++ b/src/rsadsb_releases.md @@ -3,6 +3,7 @@ +- [2024-09-02](2024.09.02.md) - [2023-11-22](2023.11.22.md) - [2022-12-29](2022.12.29.md) - [v0.6.1](v0.6.1.md)