From 7be5b21ce5e665a9e7d677ef4e3406446d30caa4 Mon Sep 17 00:00:00 2001 From: Benjamin Kuperman Date: Tue, 1 Dec 2020 21:20:36 -0800 Subject: [PATCH 01/42] Add support for Home SSID with spaces in name --- build-a-pi | 3 +-- update | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/build-a-pi b/build-a-pi index dba8734..285866b 100755 --- a/build-a-pi +++ b/build-a-pi @@ -210,8 +210,7 @@ sudo rfkill unblock all > /dev/null 2>&1 sudo ifconfig wlan0 up #LIST=$(sudo iw dev "wlan0" scan ap-force | egrep "^BSS|SSID:" | grep SSID: | sed 's/SSID://' | awk '{ print $1 }') #LIST=$(echo $LIST | sed 's/ /|/g') -LIST=$(sudo iw dev "wlan0" scan ap-force | grep "SSID:" | awk '{print $2}') -LIST=$(echo "$LIST" | tr '\n' '|') +LIST=$(sudo iw dev "wlan0" scan ap-force | sed -ne 's/^.*SSID: \(..*\)/\1/p' | sort | uniq | paste -sd '|') HSINFO=$(yad --center --form --width=400 --height=400 --separator="|" --item-separator="|" \ diff --git a/update b/update index c707aee..a5ccf3e 100755 --- a/update +++ b/update @@ -795,8 +795,7 @@ HSINFO(){ sudo rfkill unblock all > /dev/null 2>&1 #bring wifi up sudo ifconfig wlan0 up -LIST=$(sudo iw dev "wlan0" scan ap-force | egrep "^BSS|SSID:" | grep SSID: | sed 's/SSID://' | awk '{ print $1 }') -LIST=$(echo $LIST | sed 's/ /|/g') +LIST=$(sudo iw dev "wlan0" scan ap-force | sed -ne 's/^.*SSID: \(..*\)/\1/p' | sort | uniq | paste -sd '|') HSINFO=$(yad --center --form --width=400 --height=400 --separator="|" --item-separator="|" \ --image $LOGO --column=Check --column=App --column=Description \ From 821800170176a2a175546a80e82dae91b43abc73 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sat, 9 Jan 2021 10:28:15 -0600 Subject: [PATCH 02/42] fix #186 --- build-a-pi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-a-pi b/build-a-pi index dba8734..f8b5ba7 100755 --- a/build-a-pi +++ b/build-a-pi @@ -183,7 +183,7 @@ false "ARDOPGUI" "GUI for ARDOP" \ false "HAMLIB" "Needed for Rig Control" \ false "DIREWOLF" "Software TNC" \ false "AX25" "Data Link Layer Protocol" \ -false "PULSE" "Sound Server" \ +false "PULSE" "Pulse Audio Control Interface" \ --button="Exit":1 \ --button="Check All and Continue":3 \ --button="Next":2 > $BASE From 7ba0ef962a6dd44615716ee9a76f00493fc1d530 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sat, 9 Jan 2021 10:28:41 -0600 Subject: [PATCH 03/42] fix #186 --- functions/base.function | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/functions/base.function b/functions/base.function index 32da435..95d921d 100644 --- a/functions/base.function +++ b/functions/base.function @@ -152,10 +152,9 @@ sudo apt-get install -y ax25-apps } ################################ -# PULSE AUDIO +# PULSE AUDIO Control ################################ PULSE(){ -sudo apt-get install -y pulseaudio sudo apt-get install -y pavucontrol } From ed333a8c600481c9989cbb913eab61af368bc643 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sat, 9 Jan 2021 10:28:51 -0600 Subject: [PATCH 04/42] fix #186 --- update | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update b/update index c707aee..00473e9 100755 --- a/update +++ b/update @@ -156,7 +156,7 @@ fi #----------------------------------------------------# # PULSE #----------------------------------------------------# -if ! hash pulseaudio 2>/dev/null; then +if ! hash pavucontrol 2>/dev/null; then PULSE="Not Installed" else PULSE="Installed" @@ -777,7 +777,7 @@ false "ARDOP" "$ARDOP" "Mode for HF" \ false "ARDOPGUI" "$ARDOPGUI" "GUI for ARDOP" \ false "DIREWOLF" "$DIRE" "Software TNC" \ false "AX25" "$AX25" "Data Link Layer Protocol" \ -false "PULSE" "$PULSE" "Sound server" \ +false "PULSE" "$PULSE" "Pulse Audio Control Interface" \ --button="Exit":1 \ --button="Next":2 > $BASE BUT=$? From 823b497d55bcad1d4aa61063d1afbebbcf28353c Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sat, 9 Jan 2021 10:31:11 -0600 Subject: [PATCH 05/42] update --- changelog | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog b/changelog index 035962b..2862ac4 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,7 @@ -version=3.0.5 +version=3.0.6 + +3.0.6 Fix https://github.com/km4ack/pi-build/issues/186 (pulse) + 3.0.5 Fix RTC https://github.com/km4ack/pi-build/issues/139 Add Telnet https://github.com/km4ack/pi-build/issues/129 From dd1df75ca21ee49bf09b566eb1339b5843988023 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 10 Jan 2021 11:18:57 -0600 Subject: [PATCH 06/42] initial work on #198 --- functions/additional.function | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions/additional.function b/functions/additional.function index bdd6655..bc09c32 100644 --- a/functions/additional.function +++ b/functions/additional.function @@ -130,7 +130,8 @@ mkdir -p $HOME/bin/conky cp $MYPATH/conky/* $HOME/bin/conky/ chmod +x $HOME/bin/conky/get-grid $HOME/bin/conky/temp-conv $HOME/bin/conky/get-freq $HOME/bin/conky/grid sed -i "s/N0CALL/$CALL/" $HOME/.conkyrc -#echo "@reboot sleep 20 && export DISPLAY=:0 && /usr/bin/conky" >> $TEMPCRON +#Line below is for https://github.com/km4ack/pi-build/issues/198 +#echo "*/5 * * * * home/pi/bin/conky/grid > /home/pi/bin/conky/gridsquare.txt" >> $TEMPCRON #Create files needed for autostart at login #Fix issue https://github.com/km4ack/pi-build/issues/83 From 1a279b69d0ff05a1ca1acfbca4b9e199b672787a Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 10 Jan 2021 11:20:15 -0600 Subject: [PATCH 07/42] fix note --- functions/utility.function | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/utility.function b/functions/utility.function index d3349a2..5731fb2 100644 --- a/functions/utility.function +++ b/functions/utility.function @@ -362,7 +362,7 @@ touch $FILE cat << EOF > $FILE LinBPQ was installed during the build. You will find the config file generator -under utilities in the main pi menu. +under accessories in the main pi menu. NO CONFIGURATION was done for LinBPQ during the build. Each individual operator is responsible for configuring From aadaab142ecc2b737948060ff4fea0366c5fed52 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 10 Jan 2021 11:32:09 -0600 Subject: [PATCH 08/42] update --- changelog | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/changelog b/changelog index 2862ac4..ef67a0c 100644 --- a/changelog +++ b/changelog @@ -1,6 +1,8 @@ version=3.0.6 -3.0.6 Fix https://github.com/km4ack/pi-build/issues/186 (pulse) +3.0.6 Remove Pulse audio install https://github.com/km4ack/pi-build/issues/186 + Add Support for SSID with spaces Merge https://github.com/km4ack/pi-build/pull/184 + Fix BPQ desktop note to indicate where config generator is located 3.0.5 Fix RTC https://github.com/km4ack/pi-build/issues/139 From cf832117aaa3c05d7cd025399ea4fd42fc24bbd8 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 10 Jan 2021 11:41:54 -0600 Subject: [PATCH 09/42] fix #181 --- update | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/update b/update index 7749cf1..be10b20 100755 --- a/update +++ b/update @@ -83,6 +83,11 @@ echo $BUT if [ $BUT = 252 ]; then exit elif [ $BUT = 2 ]; then + wget -q --tries=5 --timeout=10 --spider http://google.com #| yad --center --progress --pulsate --timeout-indicator=top --auto-close --no-buttons --text="Checking internet connection" + if [[ $? -eq 1 ]]; then +yad --center --timeout=3 --timeout-indicator=top --no-buttons --text="You are not connected to the internet" + exit + fi echo "Updating Build a Pi to $LATEST" mv $MYPATH/config $HOME/Documents/config.bap rm -rf $MYPATH @@ -156,7 +161,7 @@ fi #----------------------------------------------------# # PULSE #----------------------------------------------------# -if ! hash pavucontrol 2>/dev/null; then +if ! hash pulseaudio 2>/dev/null; then PULSE="Not Installed" else PULSE="Installed" @@ -777,7 +782,7 @@ false "ARDOP" "$ARDOP" "Mode for HF" \ false "ARDOPGUI" "$ARDOPGUI" "GUI for ARDOP" \ false "DIREWOLF" "$DIRE" "Software TNC" \ false "AX25" "$AX25" "Data Link Layer Protocol" \ -false "PULSE" "$PULSE" "Pulse Audio Control Interface" \ +false "PULSE" "$PULSE" "Sound server" \ --button="Exit":1 \ --button="Next":2 > $BASE BUT=$? @@ -795,7 +800,8 @@ HSINFO(){ sudo rfkill unblock all > /dev/null 2>&1 #bring wifi up sudo ifconfig wlan0 up -LIST=$(sudo iw dev "wlan0" scan ap-force | sed -ne 's/^.*SSID: \(..*\)/\1/p' | sort | uniq | paste -sd '|') +LIST=$(sudo iw dev "wlan0" scan ap-force | egrep "^BSS|SSID:" | grep SSID: | sed 's/SSID://' | awk '{ print $1 }') +LIST=$(echo $LIST | sed 's/ /|/g') HSINFO=$(yad --center --form --width=400 --height=400 --separator="|" --item-separator="|" \ --image $LOGO --column=Check --column=App --column=Description \ From b82e27be81daee818f068a3cab851639a36274d5 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 10 Jan 2021 11:54:13 -0600 Subject: [PATCH 10/42] fix xastir permissions --- functions/additional.function | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions/additional.function b/functions/additional.function index bc09c32..cadd74c 100644 --- a/functions/additional.function +++ b/functions/additional.function @@ -352,7 +352,8 @@ unzip $DIR/YAAC.zip ################################## XASTIR(){ sudo apt-get install -y xastir -sudo sed -i 's/Exec=xastir/Exec=sudo xastir/' /usr/share/applications/xastir.desktop +sudo chmod +x /usr/bin/xastir +#sudo sed -i 's/Exec=xastir/Exec=sudo xastir/' /usr/share/applications/xastir.desktop } ################################## From 34412481eaef81a7972f6d465d8421b17128fb16 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 10 Jan 2021 11:56:17 -0600 Subject: [PATCH 11/42] fix 193 --- build-a-pi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-a-pi b/build-a-pi index 5b9a5fa..72e324b 100755 --- a/build-a-pi +++ b/build-a-pi @@ -446,7 +446,8 @@ sudo apt-get -y upgrade sudo apt -y full-upgrade #set wallpaper -pcmanfm --set-wallpaper $MYPATH/bap-wallpaper.jpg +sudo cp bap-wallpaper.jpg /usr/share/rpd-wallpaper/ +pcmanfm --set-wallpaper /usr/share/rpd-wallpaper/bap-wallpaper.jpg mkdir -p $DIR 2> /dev/null From 5c7183124e0abd9d122cff06a5a520d8f5dce595 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 10 Jan 2021 11:58:05 -0600 Subject: [PATCH 12/42] fix #193 --- build-a-pi | 1 + 1 file changed, 1 insertion(+) diff --git a/build-a-pi b/build-a-pi index 72e324b..0065c00 100755 --- a/build-a-pi +++ b/build-a-pi @@ -446,6 +446,7 @@ sudo apt-get -y upgrade sudo apt -y full-upgrade #set wallpaper +#fix issue 193 sudo cp bap-wallpaper.jpg /usr/share/rpd-wallpaper/ pcmanfm --set-wallpaper /usr/share/rpd-wallpaper/bap-wallpaper.jpg From ffde690d125ed92c9e357bed52e630f972264e97 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 10 Jan 2021 18:09:35 -0600 Subject: [PATCH 13/42] fix wifi name with spaces --- update | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/update b/update index be10b20..693214f 100755 --- a/update +++ b/update @@ -800,8 +800,9 @@ HSINFO(){ sudo rfkill unblock all > /dev/null 2>&1 #bring wifi up sudo ifconfig wlan0 up -LIST=$(sudo iw dev "wlan0" scan ap-force | egrep "^BSS|SSID:" | grep SSID: | sed 's/SSID://' | awk '{ print $1 }') -LIST=$(echo $LIST | sed 's/ /|/g') +#LIST=$(sudo iw dev "wlan0" scan ap-force | egrep "^BSS|SSID:" | grep SSID: | sed 's/SSID://' | awk '{ print $1 }') +#LIST=$(echo $LIST | sed 's/ /|/g') +LIST=$(sudo iw dev "wlan0" scan ap-force | sed -ne 's/^.*SSID: \(..*\)/\1/p' | sort | uniq | paste -sd '|') HSINFO=$(yad --center --form --width=400 --height=400 --separator="|" --item-separator="|" \ --image $LOGO --column=Check --column=App --column=Description \ From 904ce8bf59a9d5570fee41ca713941942250a86b Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Sun, 10 Jan 2021 18:11:36 -0600 Subject: [PATCH 14/42] add credit to kuperman --- update | 1 + 1 file changed, 1 insertion(+) diff --git a/update b/update index 693214f..f8f834a 100755 --- a/update +++ b/update @@ -802,6 +802,7 @@ sudo rfkill unblock all > /dev/null 2>&1 sudo ifconfig wlan0 up #LIST=$(sudo iw dev "wlan0" scan ap-force | egrep "^BSS|SSID:" | grep SSID: | sed 's/SSID://' | awk '{ print $1 }') #LIST=$(echo $LIST | sed 's/ /|/g') +#Thanks to https://github.com/kuperman for fixing wifi space issue with line below. LIST=$(sudo iw dev "wlan0" scan ap-force | sed -ne 's/^.*SSID: \(..*\)/\1/p' | sort | uniq | paste -sd '|') HSINFO=$(yad --center --form --width=400 --height=400 --separator="|" --item-separator="|" \ From bb268718f0f46e1f34cac79d392f2574a0e28019 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Mon, 11 Jan 2021 10:48:23 -0600 Subject: [PATCH 15/42] fix #143 --- update | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/update b/update index f8f834a..34c8aa3 100755 --- a/update +++ b/update @@ -472,7 +472,16 @@ YAAC="$HOME/YAAC" if [ ! -d "$YAAC" ]; then YAAC="Not Installed" else -YAAC="Installed" +echo "Checking YAAC for updates" +CURYAAC=$(java -jar $HOME/YAAC/YAAC.jar -version | grep core | awk '{print $7}' | sed 's/(.*//;s/1.0-beta//') +wget -q https://sourceforge.net/projects/yetanotheraprsc/files/YAACBuildLabel.txt -O /run/user/$UID/latestyaac.txt +LATESTYAAC=$(cat /run/user/$UID/latestyaac.txt | sed 's/1.0-beta//;s/(.*//') + if (( $(echo "$LATESTYAAC $CURYAAC" | awk '{print ($1 > $2)}') )) + then + YAAC=NEEDS-UPDATE + else + YAAC="is_latest_version" + fi fi #----------------------------------------------------# From 6d635daa1f4b481b8e3bfa81eb5c9c0283d8bc6d Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Mon, 11 Jan 2021 11:04:44 -0600 Subject: [PATCH 16/42] add zygrib check --- update | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/update b/update index 34c8aa3..7c1cadd 100755 --- a/update +++ b/update @@ -161,7 +161,7 @@ fi #----------------------------------------------------# # PULSE #----------------------------------------------------# -if ! hash pulseaudio 2>/dev/null; then +if ! hash pavucontrol 2>/dev/null; then PULSE="Not Installed" else PULSE="Installed" @@ -733,6 +733,15 @@ else VNC="Installed" fi +#----------------------------------------------------# +# ZYGRIB Viewer +#----------------------------------------------------# +if [ -f /usr/share/zygrib ]; then +ZYGRIB=Installed +else +ZYGRIB="Not Installed" +fi + CHECK #################################################################### #################################################################### From 1f4140208c5525cb3873bfc33943b4057b6d550d Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Mon, 11 Jan 2021 11:06:24 -0600 Subject: [PATCH 17/42] add zygrib --- functions/utility.function | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/functions/utility.function b/functions/utility.function index 5731fb2..9ebe93a 100644 --- a/functions/utility.function +++ b/functions/utility.function @@ -421,7 +421,13 @@ sudo dpkg -i $PACKAGE rm $PACKAGE } - +################################## +# ZYGRIB Viewer +################################## +ZYGRIB(){ +sudo apt install -y zygrib +sudo apt install -y zygrib-maps +} From fee16b9774466438b3992a8fc8be6e1be65a7003 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Mon, 11 Jan 2021 11:08:16 -0600 Subject: [PATCH 18/42] add zygrib #190 --- build-a-pi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-a-pi b/build-a-pi index 0065c00..edc205b 100755 --- a/build-a-pi +++ b/build-a-pi @@ -421,6 +421,7 @@ false "YGATE" "Yaesu APRS Software" \ false "BPQ" "LinBPQ Software" \ false "BATT" "Battery Test Script" \ false "VNC" "VNC Client Application" \ +false "ZYGRIB" "Grib File Viewer" \ --button="Exit":1 \ --button="Check All and Continue":3 \ --button="Install Selected":2 > $UTILITY @@ -430,7 +431,7 @@ exit fi if [ $BUT = 3 ]; then -UTILAPPS=(DIPOLE CALLSIGN TEMPCONVERT GPARTED SHOWLOG PISTATS TELNET PITERM SECURITY YGATE BPQ BATT VNC) +UTILAPPS=(DIPOLE CALLSIGN TEMPCONVERT GPARTED SHOWLOG PISTATS TELNET PITERM SECURITY YGATE BPQ BATT VNC ZYGRIB) for i in "${UTILAPPS[@]}" do echo "$i" >> $UTILITY From 592640c127e69f71275484ded03441f5901afd38 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Mon, 11 Jan 2021 11:11:29 -0600 Subject: [PATCH 19/42] add zygrib --- update | 1 + 1 file changed, 1 insertion(+) diff --git a/update b/update index 7c1cadd..5498349 100755 --- a/update +++ b/update @@ -1015,6 +1015,7 @@ false "YGATE" "$YGATE" "Yaesu APRS Software" \ false "BPQ" "$BPQ" "LinBPQ Software" \ false "BATT" "$BATT" "Battery Test Script" \ false "VNC" "$VNC" "VNC Viewer Application" \ +false "ZYGRIB" "$ZYGRIB" "Grib File Viewer" \ --button="Exit":1 \ --button="Install/Update Selected":2 > $UTILITY BUT=$? From e8bfdfe7e08da647a8e9d099c1891dbb0ef2793f Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Mon, 11 Jan 2021 13:07:26 -0600 Subject: [PATCH 20/42] build cqrlog from source --- functions/additional.function | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/functions/additional.function b/functions/additional.function index cadd74c..31337da 100644 --- a/functions/additional.function +++ b/functions/additional.function @@ -207,7 +207,40 @@ sudo apt-get install -y pyqso # CQRLOG ################################## CQRLOG(){ -sudo apt-get install -y cqrlog +#sudo apt-get install -y cqrlog +sudo apt-get install -y lcl-2.0 lazarus-2.0 fp-compiler-3.0.4 fpc-3.0.4 libssl-dev git build-essential \ +libmariadbclient-dev lazarus-ide lcl lcl-gtk2 lcl-nogui lcl-units lcl-utils lazarus lazarus-doc lazarus-src \ +fp-units-misc fp-units-rtl fp-utils fpc fpc-source libssl-dev default-mysql-client-core default-mysql-server \ +default-mysql-server-core galera-3 gawk libcgi-fast-perl libcgi-pm-perl libconfig-inifiles-perl libdbd-mysql-perl \ +libdbi-perl libencode-locale-perl libfcgi-perl libhamlib-utils libhamlib2 libhtml-parser-perl libhtml-tagset-perl \ +libhtml-template-perl libhttp-date-perl libhttp-message-perl libio-html-perl liblwp-mediatypes-perl \ +libmariadb-dev-compat libnetpbm10 libreadline5 libterm-readkey-perl libtimedate-perl liburi-perl \ +mariadb-client-10.3 mariadb-client-core-10.3 mariadb-server-10.3 mariadb-server-core-10.3 socat xplanet xplanet-images + +sudo ln -s /usr/lib/arm-linux-gnueabihf/libmariadbclient.so /usr/lib/libmysqlclient.so + +cd +git clone https://github.com/ok2cqr/cqrlog.git +cd cqrlog +make +sudo make install +cd .. +rm -rf cqrlog + +cat > cqrlog.desktop < Date: Fri, 29 Jan 2021 11:13:56 -0600 Subject: [PATCH 21/42] build xastir from source --- functions/additional.function | 37 +++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/functions/additional.function b/functions/additional.function index 31337da..c2041e0 100644 --- a/functions/additional.function +++ b/functions/additional.function @@ -384,9 +384,42 @@ unzip $DIR/YAAC.zip # XASTIR ################################## XASTIR(){ -sudo apt-get install -y xastir -sudo chmod +x /usr/bin/xastir +###OLD CODE +#sudo apt-get install -y xastir +#sudo chmod +x /usr/bin/xastir #sudo sed -i 's/Exec=xastir/Exec=sudo xastir/' /usr/share/applications/xastir.desktop + +###NEW CODE 29JAN2021 Builds from source +sudo apt-get -y install build-essential automake git xorg-dev libmotif-dev graphicsmagick \ +gv libcurl4-openssl-dev shapelib libshp-dev libpcre3-dev libproj-dev libdb-dev python-dev \ +libax25-dev libwebp-dev libwebp-dev libgraphicsmagick1-dev festival festival-dev + + +cd +git clone https://github.com/Xastir/Xastir.git +cd Xastir +./bootstrap.sh +mkdir build; cd build +../configure +make +sudo make install +cd +rm -rf Xastir + +cat > xastir.desktop < Date: Fri, 29 Jan 2021 11:43:06 -0600 Subject: [PATCH 22/42] update xastir version check --- update | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/update b/update index 5498349..d62a494 100755 --- a/update +++ b/update @@ -458,12 +458,17 @@ fi #----------------------------------------------------# # XASTIR #----------------------------------------------------# -XA="/usr/bin/xastir" -if [ ! -f "$XA" ]; then -XASTIR="Not Installed" -else -XASTIR="Installed" -fi +LATESTXAS=$(curl -s https://github.com/Xastir/Xastir | grep Release- | head -1 | sed 's/.*Release-//;s/">//') +CURRENTXAS=$(xastir -V | sed 's/Xastir V//;s/(.*//;/^\s*$/d') + + if (( $(echo "$LATESTXAS $CURRENTXAS" | awk '{print ($1 > $2)}') )) + then + XASTIR=NEEDS-UPDATE + else + XASTIR="is_latest_version" + fi + +echo $XASTIR #----------------------------------------------------# # YAAC From d461036be73494def2bcc338f2d129a338b3d94b Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Tue, 2 Feb 2021 13:50:53 -0600 Subject: [PATCH 23/42] fix #209 wsjtx 2.3.0 install --- functions/additional.function | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/functions/additional.function b/functions/additional.function index c2041e0..f2bba18 100644 --- a/functions/additional.function +++ b/functions/additional.function @@ -97,6 +97,10 @@ WSJTXSUCCESS=$? sudo dpkg -i $WSPKG sudo apt-get --fix-broken -y install sudo dpkg -i $WSPKG +#added to fix WSJTX 2.3.0 +sudo sed -i "s/# en_US.UTF-8/en_US.UTF-8/g" /etc/locale.gen +sudo locale-gen +#end edit for WSJTX 2.3.0 #try sourcegorge if princeton.edu fails WSJTX2(){ if [ "$WSJTXSUCCESS" ! = 0 ]; then From 9baf605378ebfb50a30dfc274d868a167d646fe7 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 12:10:04 -0600 Subject: [PATCH 24/42] add gps update tool --- functions/utility.function | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/functions/utility.function b/functions/utility.function index 9ebe93a..45e8dfb 100644 --- a/functions/utility.function +++ b/functions/utility.function @@ -429,7 +429,27 @@ sudo apt install -y zygrib sudo apt install -y zygrib-maps } - +################################## +# GPS update tool +################################## +GPSUPDATE(){ +cd $HOME/bin +wget https://raw.githubusercontent.com/km4ack/pi-scripts/master/gpsupdate +chmod +x gpsupdate + +cat > gpsupdate.desktop < Date: Thu, 4 Feb 2021 12:13:13 -0600 Subject: [PATCH 25/42] add gps update tool --- build-a-pi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-a-pi b/build-a-pi index edc205b..2de368c 100755 --- a/build-a-pi +++ b/build-a-pi @@ -422,6 +422,7 @@ false "BPQ" "LinBPQ Software" \ false "BATT" "Battery Test Script" \ false "VNC" "VNC Client Application" \ false "ZYGRIB" "Grib File Viewer" \ +false "GPSUPDATE" "Tool to Manage GPS Devices" \ --button="Exit":1 \ --button="Check All and Continue":3 \ --button="Install Selected":2 > $UTILITY @@ -431,7 +432,7 @@ exit fi if [ $BUT = 3 ]; then -UTILAPPS=(DIPOLE CALLSIGN TEMPCONVERT GPARTED SHOWLOG PISTATS TELNET PITERM SECURITY YGATE BPQ BATT VNC ZYGRIB) +UTILAPPS=(DIPOLE CALLSIGN TEMPCONVERT GPARTED SHOWLOG PISTATS TELNET PITERM SECURITY YGATE BPQ BATT VNC ZYGRIB GPSUPDATE) for i in "${UTILAPPS[@]}" do echo "$i" >> $UTILITY From 61edb22b4c88924fb39b8886f0761de223799d07 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 12:21:17 -0600 Subject: [PATCH 26/42] add gps update tool --- update | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/update b/update index d62a494..747f5fd 100755 --- a/update +++ b/update @@ -747,6 +747,23 @@ else ZYGRIB="Not Installed" fi +#----------------------------------------------------# +# GPS UPDATE TOOL +#----------------------------------------------------# +echo "Checking GPS Update Tool" +if [ ! -f $HOME/bin/gpsupdate ]; then +GPAUPDATE="Not_Installed" +else +GPSUPDATE=$(grep VERSION= $HOME/bin/gpsupdate | sed 's/VERSION=//') +NEWGPSUPDATE=$(curl -s https://raw.githubusercontent.com/km4ack/pi-scripts/master/gpsupdate | grep VERSION= | sed 's/VERSION=//') + if (( $(echo "$NEWGPSUPDATE $GPSUPDATE" | awk '{print ($1 > $2)}') )) + then + GPSUPDATE=NEEDS-UPDATE + else + GPSUPDATE="is_latest_version" + fi +fi + CHECK #################################################################### #################################################################### @@ -1021,6 +1038,7 @@ false "BPQ" "$BPQ" "LinBPQ Software" \ false "BATT" "$BATT" "Battery Test Script" \ false "VNC" "$VNC" "VNC Viewer Application" \ false "ZYGRIB" "$ZYGRIB" "Grib File Viewer" \ +false "GPSUPDATE" "$GPSUPDATE" "Tool to Manage GPS Devices" \ --button="Exit":1 \ --button="Install/Update Selected":2 > $UTILITY BUT=$? From 103dd81461ec7e480dbb65a5b45fc7579323e2bc Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 12:31:45 -0600 Subject: [PATCH 27/42] fix typo --- update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update b/update index 747f5fd..797b9bf 100755 --- a/update +++ b/update @@ -752,7 +752,7 @@ fi #----------------------------------------------------# echo "Checking GPS Update Tool" if [ ! -f $HOME/bin/gpsupdate ]; then -GPAUPDATE="Not_Installed" +GPSUPDATE="Not_Installed" else GPSUPDATE=$(grep VERSION= $HOME/bin/gpsupdate | sed 's/VERSION=//') NEWGPSUPDATE=$(curl -s https://raw.githubusercontent.com/km4ack/pi-scripts/master/gpsupdate | grep VERSION= | sed 's/VERSION=//') From 69a4b3da31887d59fc8e6c281517eb1c559bdead Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 12:39:29 -0600 Subject: [PATCH 28/42] remove echo --- update | 2 -- 1 file changed, 2 deletions(-) diff --git a/update b/update index 797b9bf..aa56384 100755 --- a/update +++ b/update @@ -468,8 +468,6 @@ CURRENTXAS=$(xastir -V | sed 's/Xastir V//;s/(.*//;/^\s*$/d') XASTIR="is_latest_version" fi -echo $XASTIR - #----------------------------------------------------# # YAAC #----------------------------------------------------# From 16b0ee53dff0efbc2db428bd9132c4220421bb6f Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 12:52:50 -0600 Subject: [PATCH 29/42] change gps for conky --- functions/additional.function | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions/additional.function b/functions/additional.function index f2bba18..9b1f8cd 100644 --- a/functions/additional.function +++ b/functions/additional.function @@ -135,7 +135,8 @@ cp $MYPATH/conky/* $HOME/bin/conky/ chmod +x $HOME/bin/conky/get-grid $HOME/bin/conky/temp-conv $HOME/bin/conky/get-freq $HOME/bin/conky/grid sed -i "s/N0CALL/$CALL/" $HOME/.conkyrc #Line below is for https://github.com/km4ack/pi-build/issues/198 -#echo "*/5 * * * * home/pi/bin/conky/grid > /home/pi/bin/conky/gridsquare.txt" >> $TEMPCRON +echo "#Update GPS maidenhead for conky" >> $TEMPCRON +echo "*/5 * * * * home/pi/bin/conky/grid > /home/pi/bin/conky/gridsquare.txt" >> $TEMPCRON #Create files needed for autostart at login #Fix issue https://github.com/km4ack/pi-build/issues/83 From 0b7a0e0f5acd785fc6d83b0058996bd94bef365f Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 13:00:04 -0600 Subject: [PATCH 30/42] change conky cron job --- functions/additional.function | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/additional.function b/functions/additional.function index 9b1f8cd..8da850c 100644 --- a/functions/additional.function +++ b/functions/additional.function @@ -136,7 +136,7 @@ chmod +x $HOME/bin/conky/get-grid $HOME/bin/conky/temp-conv $HOME/bin/conky/get- sed -i "s/N0CALL/$CALL/" $HOME/.conkyrc #Line below is for https://github.com/km4ack/pi-build/issues/198 echo "#Update GPS maidenhead for conky" >> $TEMPCRON -echo "*/5 * * * * home/pi/bin/conky/grid > /home/pi/bin/conky/gridsquare.txt" >> $TEMPCRON +echo "*/1 * * * * home/pi/bin/conky/grid" >> $TEMPCRON #Create files needed for autostart at login #Fix issue https://github.com/km4ack/pi-build/issues/83 From 190cc16ee10806c8e23038bfb72bfa07afee26fa Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 13:02:54 -0600 Subject: [PATCH 31/42] change to new format --- conky/grid | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/conky/grid b/conky/grid index 3071683..5cb0de8 100644 --- a/conky/grid +++ b/conky/grid @@ -1,11 +1,16 @@ #!/bin/bash +#script get maidenhead from GPS for display in conky +#called by cronjob +#04FEB2021 KM4ACK + GRID=$($HOME/bin/conky/get-grid) GRIDCH=$(echo $GRID | grep -i JJ00) +FILE=/run/user/$UID/gridinfo.txt if [ -z "$GRIDCH" ] then -echo $GRID +echo $GRID > $FILE else -echo "NO GPS" -fi +echo "NO GPS" > $FILE +fi \ No newline at end of file From eaf81c6bcd5c758807a2cb04423fc019b444ad22 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 13:05:57 -0600 Subject: [PATCH 32/42] update GPS display --- conky/conky-7inch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conky/conky-7inch b/conky/conky-7inch index 7f71880..a61d6a7 100644 --- a/conky/conky-7inch +++ b/conky/conky-7inch @@ -31,7 +31,7 @@ TEXT ${font Arial:size=12}${color Yellow}${alignc}N0CALL ${voffset -30} -${font Arial:bold:size=08}${color White}Gridsquare ${alignr}${color Yellow}${execi 25 $HOME/bin/conky/grid | cut -c1-8} +${font Arial:bold:size=08}${color White}Gridsquare ${alignr}${color Yellow}${execi 60 cat /run/user/1000/gridinfo.txt | cut -c1-8} #${font Arial:bold:size=12}${color White}Radio Freq ${alignr}${color Yellow}${execi 5 $HOME/bin/conky/get-freq | cut -c1-6} ${color Yellow}LOCAL${alignr}ZULU ${voffset -20} From ccfd68accc11d36f238cc7c71ff830bead80e64c Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 13:06:11 -0600 Subject: [PATCH 33/42] update GPS display --- conky/conky-large | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conky/conky-large b/conky/conky-large index 2ab645d..a51f840 100644 --- a/conky/conky-large +++ b/conky/conky-large @@ -35,7 +35,7 @@ conky.text = [[ ${voffset 15} ${font Arial:size=30}${color Yellow}${alignc}N0CALL ${voffset -45} -${font Arial:bold:size=18}${color White}Gridsquare ${alignr}${color Yellow}${execi 25 $HOME/bin/conky/grid | cut -c1-8} +${font Arial:bold:size=18}${color White}Gridsquare ${alignr}${color Yellow}${execi 60 cat /run/user/1000/gridinfo.txt | cut -c1-8} #${font Arial:bold:size=18}${color White}Radio Freq ${alignr}${color Yellow}${execi 5 $HOME/bin/conky/get-freq | cut -c1-6} #${font Arial:bold:size=18}${color White}Radio Freq A ${if_match "VFOA" == "${execi 5 $HOME/bin/conky/get-vfo}"}*$endif\ #${alignr}${color Yellow}${execi 5 $HOME/bin/conky/get-freq VFOA | cut -c1-7} From fd8d7c62c67d7639f6afa16b406cd506c9868d1f Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 13:06:21 -0600 Subject: [PATCH 34/42] update GPS display --- conky/conky-medium | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conky/conky-medium b/conky/conky-medium index 7b2327e..ab24ac9 100644 --- a/conky/conky-medium +++ b/conky/conky-medium @@ -34,7 +34,7 @@ conky.text = [[ ${font Arial:size=18}${color Yellow}${alignc}N0CALL ${voffset -25} -${font Arial:bold:size=12}${color White}Gridsquare ${alignr}${color Yellow}${execi 25 $HOME/bin/conky/grid | cut -c1-8} +${font Arial:bold:size=12}${color White}Gridsquare ${alignr}${color Yellow}${execi 60 cat /run/user/1000/gridinfo.txt | cut -c1-8} #${font Arial:bold:size=12}${color White}Radio Freq ${alignr}${color Yellow}${execi 5 $HOME/bin/conky/get-freq | cut -c1-6} #${font Arial:bold:size=12}${color White}Radio Freq A ${if_match "VFOA" == "${execi 5 $HOME/bin/conky/get-vfo}"}*$endif\ #${alignr}${color Yellow}${execi 5 $HOME/bin/conky/get-freq VFOA | cut -c1-7} From b89e639da0107e25e029055d2e4338ba99635fc0 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 13:06:31 -0600 Subject: [PATCH 35/42] update GPS display --- conky/conky-small | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conky/conky-small b/conky/conky-small index b6ce8dc..716827f 100644 --- a/conky/conky-small +++ b/conky/conky-small @@ -34,7 +34,7 @@ conky.text = [[ ${font Arial:size=12}${color Yellow}${alignc}N0CALL ${voffset -20} -${font Arial:bold:size=08}${color White}Gridsquare ${alignr}${color Yellow}${execi 25 $HOME/bin/conky/grid | cut -c1-8} +${font Arial:bold:size=08}${color White}Gridsquare ${alignr}${color Yellow}${execi 60 cat /run/user/1000/gridinfo.txt | cut -c1-8} #${font Arial:bold:size=12}${color White}Radio Freq ${alignr}${color Yellow}${execi 5 $HOME/bin/conky/get-freq | cut -c1-6} #${font Arial:bold:size=12}${color White}Radio Freq A ${if_match "VFOA" == "${execi 5 $HOME/bin/conky/get-vfo}"}*$endif\ #${alignr}${color Yellow}${execi 5 $HOME/bin/conky/get-freq VFOA | cut -c1-7} From 01a02feb36fdb1f975ac6f22bf9bc3620c8448be Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 16:36:22 -0600 Subject: [PATCH 36/42] update GPS display --- conky/.conkyrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conky/.conkyrc b/conky/.conkyrc index b9149f5..a303d10 100644 --- a/conky/.conkyrc +++ b/conky/.conkyrc @@ -35,7 +35,7 @@ conky.text = [[ ${voffset 15} ${font Arial:size=30}${color Yellow}${alignc}N0CALL ${voffset -45} -${font Arial:bold:size=18}${color White}Gridsquare ${alignr}${color Yellow}${execi 25 $HOME/bin/conky/grid | cut -c1-8} +${font Arial:bold:size=18}${color White}Gridsquare ${alignr}${color Yellow}${execi 60 cat /run/user/1000/gridinfo.txt | cut -c1-8} #${font Arial:bold:size=18}${color White}Radio Freq ${alignr}${color Yellow}${execi 5 $HOME/bin/conky/get-freq | cut -c1-6} #${font Arial:bold:size=18}${color White}Radio Freq A ${if_match "VFOA" == "${execi 5 $HOME/bin/conky/get-vfo}"}*$endif\ #${alignr}${color Yellow}${execi 5 $HOME/bin/conky/get-freq VFOA | cut -c1-7} From 206e26d7929448c3c9855bd7923694f358a3301c Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 16:57:12 -0600 Subject: [PATCH 37/42] fix path --- functions/additional.function | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/additional.function b/functions/additional.function index 8da850c..72f0a5b 100644 --- a/functions/additional.function +++ b/functions/additional.function @@ -136,7 +136,7 @@ chmod +x $HOME/bin/conky/get-grid $HOME/bin/conky/temp-conv $HOME/bin/conky/get- sed -i "s/N0CALL/$CALL/" $HOME/.conkyrc #Line below is for https://github.com/km4ack/pi-build/issues/198 echo "#Update GPS maidenhead for conky" >> $TEMPCRON -echo "*/1 * * * * home/pi/bin/conky/grid" >> $TEMPCRON +echo "*/1 * * * * /home/pi/bin/conky/grid" >> $TEMPCRON #Create files needed for autostart at login #Fix issue https://github.com/km4ack/pi-build/issues/83 From 00f9ba82000d96724e7ea937b2a8dbe4906144b5 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 18:09:20 -0600 Subject: [PATCH 38/42] add gpsd check --- conky/grid | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/conky/grid b/conky/grid index 5cb0de8..a745ce4 100644 --- a/conky/grid +++ b/conky/grid @@ -8,6 +8,12 @@ GRID=$($HOME/bin/conky/get-grid) GRIDCH=$(echo $GRID | grep -i JJ00) FILE=/run/user/$UID/gridinfo.txt +#check if GPS software installed +if ! hash gpsd>/dev/null; then +echo "GPSD-Err" > $FILE +exit 1 +fi + if [ -z "$GRIDCH" ] then echo $GRID > $FILE From 78edbfbc599834dd974d618aef26b74b01673e94 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 4 Feb 2021 18:38:46 -0600 Subject: [PATCH 39/42] remove gpsd check --- conky/grid | 6 ------ 1 file changed, 6 deletions(-) diff --git a/conky/grid b/conky/grid index a745ce4..5cb0de8 100644 --- a/conky/grid +++ b/conky/grid @@ -8,12 +8,6 @@ GRID=$($HOME/bin/conky/get-grid) GRIDCH=$(echo $GRID | grep -i JJ00) FILE=/run/user/$UID/gridinfo.txt -#check if GPS software installed -if ! hash gpsd>/dev/null; then -echo "GPSD-Err" > $FILE -exit 1 -fi - if [ -z "$GRIDCH" ] then echo $GRID > $FILE From 352cddd397555f318d0f64721345e904749c2b39 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Fri, 5 Feb 2021 08:49:58 -0600 Subject: [PATCH 40/42] change hamlib to dynamic download --- functions/base.function | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/functions/base.function b/functions/base.function index 95d921d..c011982 100644 --- a/functions/base.function +++ b/functions/base.function @@ -113,10 +113,19 @@ echo "Port=8515" >> $FILE ################################ HAMLIB(){ cd $DIR -wget --tries 2 --connect-timeout=60 https://sourceforge.net/projects/hamlib/files/hamlib/3.3/hamlib-3.3.tar.gz -tar -xzf $DIR/hamlib-3.3.tar.gz -rm $DIR/hamlib-3.3.tar.gz -cd $DIR/hamlib-3.3 +NEWRIG=$(curl -s https://sourceforge.net/projects/hamlib/files/latest/download | \ +grep -o https://downloads.sourceforge.net/project/hamlib/hamlib/[0-9].[0-9] | \ +head -n 1 | awk -F "/" '{print $7}') +HAMLIBLINK=https://sourceforge.net/projects/hamlib/files/hamlib/$NEWRIG/hamlib-$NEWRIG.tar.gz +cd $HOME/Downloads +echo "###################################" +echo "# Installing Hamlib " +echo "###################################" +wget --tries 2 --connect-timeout=60 $HAMLIBLINK + +tar -xzf hamlib-$NEWRIG.tar.gz +rm hamlib-$NEWRIG.tar.gz +cd hamlib-$NEWRIG ./configure make sudo make install From 0652b3a40cd2eaeede731e578f63d866f850201a Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Fri, 5 Feb 2021 08:50:10 -0600 Subject: [PATCH 41/42] update --- changelog | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/changelog b/changelog index ef67a0c..d27b956 100644 --- a/changelog +++ b/changelog @@ -2,8 +2,17 @@ version=3.0.6 3.0.6 Remove Pulse audio install https://github.com/km4ack/pi-build/issues/186 Add Support for SSID with spaces Merge https://github.com/km4ack/pi-build/pull/184 - Fix BPQ desktop note to indicate where config generator is located - + Fix BPQ desktop note to correctly indicate where config generator is located + Fix wifi names with spaces issue (Thanks Kuperman!) https://github.com/km4ack/pi-build/pull/182 + Build CQRLOG from source https://github.com/km4ack/pi-build/issues/102 (Thanks Rico!) + Moved BAP wallpaper to /usr/share/rpd-wallpaper + Add zygrib https://github.com/km4ack/pi-build/issues/190 + Build xastir from source + update xastir version check in update script + fix wsjtx 2.3.0 install issue https://github.com/km4ack/pi-build/issues/209 + add new GPS update tool + update conky for better GPS support + change hamlib download to dynamic / upgrade to 4.0 3.0.5 Fix RTC https://github.com/km4ack/pi-build/issues/139 Add Telnet https://github.com/km4ack/pi-build/issues/129 From 1bc2c071267ba90f680c7e0b1d5c10bbf7d09989 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Fri, 5 Feb 2021 08:55:56 -0600 Subject: [PATCH 42/42] update --- changelog | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/changelog b/changelog index d27b956..435011c 100644 --- a/changelog +++ b/changelog @@ -5,7 +5,7 @@ version=3.0.6 Fix BPQ desktop note to correctly indicate where config generator is located Fix wifi names with spaces issue (Thanks Kuperman!) https://github.com/km4ack/pi-build/pull/182 Build CQRLOG from source https://github.com/km4ack/pi-build/issues/102 (Thanks Rico!) - Moved BAP wallpaper to /usr/share/rpd-wallpaper + Moved BAP wallpaper to /usr/share/rpd-wallpaper https://github.com/km4ack/pi-build/issues/193 Add zygrib https://github.com/km4ack/pi-build/issues/190 Build xastir from source update xastir version check in update script @@ -13,6 +13,8 @@ version=3.0.6 add new GPS update tool update conky for better GPS support change hamlib download to dynamic / upgrade to 4.0 + fix YAAC not updating + fix issue #181 https://github.com/km4ack/pi-build/issues/181 3.0.5 Fix RTC https://github.com/km4ack/pi-build/issues/139 Add Telnet https://github.com/km4ack/pi-build/issues/129