Porównaj commity

...

13 Commity

Autor SHA1 Wiadomość Data
KM4ACK fb897dc639 hide passwords 2022-10-20 06:06:58 -05:00
KM4ACK 8413db7493 update 2022-10-20 06:06:38 -05:00
KM4ACK fadb02738b hide passwords 2022-10-20 06:06:31 -05:00
KM4ACK 8714a42915 update 2022-10-20 05:54:54 -05:00
KM4ACK b6a29e6e4b fix vara check 2022-10-20 05:52:53 -05:00
KM4ACK 79f968c16b update 2022-10-20 05:47:39 -05:00
KM4ACK e4c60962d5
Merge pull request #464 from SpudGunMan/appcheck
bug fix on app.check script
2022-10-20 05:46:46 -05:00
SpudGunMan 4f51cd1d31 more fix on packetsearch 2022-10-19 11:59:34 -07:00
SpudGunMan c78247adba fix indent on packetsearch 2022-10-19 11:47:12 -07:00
SpudGunMan 791973dc13 remove the CHECK it appears unused? 2022-10-19 11:43:46 -07:00
SpudGunMan 86cb3a7dc6 indent fix 2022-10-19 11:29:11 -07:00
SpudGunMan 450926c884 fix issue with packetsearch logic 2022-10-19 11:23:57 -07:00
SpudGunMan 1a26b2defd cleanup strange issues
I am not sure what the CHECK is for and I extended the bracket to the EOF
2022-10-19 11:23:36 -07:00
4 zmienionych plików z 534 dodań i 535 usunięć

1058
app-check

Plik diff jest za duży Load Diff

Wyświetl plik

@ -295,7 +295,7 @@ for the Hot Spot\r</b>NOTE: The last field is the password for the hotspot. You
connect to your Pi when it is in hotspot mode <b>This password can only contain letters and numbers</b>" \
--title="Build-a-Pi" \
--field="Home Wifi SSID":CB "$LIST" \
--field="Home Wifi Password" \
--field="Home Wifi Password":H \
--field="Hot Spot Password" \
--button="Exit":1 \
--button="Continue":2 \
@ -462,7 +462,7 @@ if [ -n "$PATCHECK" ]; then
--image ${LOGO} --window-icon=${LOGO} --image-on-top --separator="|" --item-separator="|" \
--text="<b>version $VERSION</b>" \
--field="Six Character Grid Square" \
--field="Winlink Password" \
--field="Winlink Password":H \
--field="<b>Password is case sensitive</b>":LBL \
--button="Continue":2)
GRID=$(echo ${INFO} | awk -F "|" '{print $1}')

Wyświetl plik

@ -6,6 +6,9 @@ version=3.3.1
Fix Repeat Start App Check - https://github.com/km4ack/pi-build/issues/450
Add VARIM - https://github.com/km4ack/pi-build/pull/458
Add reference docs - https://github.com/km4ack/pi-build/pull/446
Cleanup app-check script
Fix VARA showing "not installed" when it was installed
Hide Passwords while typing. - Thanks Nullvibes!
3.3.0 Add VARA modem - https://github.com/km4ack/pi-build/issues/394
fix conky 7 inch config - https://github.com/km4ack/pi-build/issues/414
fix old ardop modem not removed - https://github.com/km4ack/pi-build/issues/413

4
update
Wyświetl plik

@ -356,7 +356,7 @@ for the Hot Spot\r</b>NOTE: The last field is the password for the hotspot. You
connect to your Pi when it is in hotspot mode <b>This password can only contain letters and numbers</b>" \
--title="Build-a-Pi" \
--field="Home Wifi SSID":CB "${LIST}" \
--field="Home Wifi Password" \
--field="Home Wifi Password":H \
--field="Hot Spot Password" \
--button="Exit":1 \
--button="Continue":2 \
@ -511,7 +511,7 @@ if [ -n "$PATCHECK" ]; then
--image ${LOGO} --window-icon=${LOGO} --image-on-top --separator="|" --item-separator="|" \
--text="<b>version $VERSION</b>" \
--field="Six Character Grid Square" "$GRID" \
--field="Winlink Password" \
--field="Winlink Password":H \
--field="<b>Password is case sensitive</b>":LBL \
--button="Continue":2)
GRID=$(echo $INFO | awk -F "|" '{print $1}')