diff --git a/aprs_help.html b/aprs_help.html index 1ce10c1..be6d0b5 100644 --- a/aprs_help.html +++ b/aprs_help.html @@ -157,7 +157,7 @@ Default is disabled. If disabled, Direwolf APRS will not autostart when the Pi

IMPORTANT: If a piano script with the same name already exists, the old one will be renamed with a
.YYYYMMDD
extension appended to the file name.

-See Check Piano Script for details. +See Check Piano Script for details.

Top diff --git a/nexus-utilities.version b/nexus-utilities.version index 1e5a1e4..8154688 100644 --- a/nexus-utilities.version +++ b/nexus-utilities.version @@ -1 +1 @@ -VERSION="2.3.20" \ No newline at end of file +VERSION="2.3.21" \ No newline at end of file diff --git a/nexus-version.desktop b/nexus-version.desktop new file mode 100644 index 0000000..831b719 --- /dev/null +++ b/nexus-version.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Name=Nexus Release Info +GenericName=Nexus Release Info +Comment=Print Nexus release information +Exec=sh -c /usr/local/bin/nexus-version.sh +Icon=/usr/share/raspberrypi-artwork/raspitr.png +Terminal=false +Type=Application +Categories=HamRadio; +Comment[en_US]=Nexus Release Info diff --git a/nexus-version.sh b/nexus-version.sh new file mode 100644 index 0000000..c614fa1 --- /dev/null +++ b/nexus-version.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Script to print Nexus version and other info + +VERSION="1.1.0" + +[ -s /boot/nexus.txt ] || exit 0 + +source /boot/nexus.txt + +yad --center --title="Nexus Version - version $VERSION" --info --borders=30 --no-wrap \ + --text="Nexus Version $NEXUS_VERSION" --buttons-layout=center --button=Close:0 +exit 0