You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Convert to a fixed width string of 9 characters to display in the script
@@ -9132,7 +9132,7 @@ donation_qrcode() {
9132
9132
echo " requested to make a donation so that I can keep improving it."
9133
9133
echo " Thank you very much for your support, Olly"
9134
9134
echo ""
9135
-
echo -e " >> Find me on Bluesky \e]8;;http://bsky.app.com/profile/olly.st\a@olly.st\e]8;;\a. <<"
9135
+
echo -e " >> Find me on Bluesky \e]8;;http://bsky.app.com/profile/olly.st\a@olly.st\e]8;;\a. <<"
9136
9136
echo ""
9137
9137
echo " ▄▄▄▄▄▄▄ ▄ ▄ ▄▄▄▄▄ ▄▄▄▄▄▄▄"
9138
9138
echo " █ ▄▄▄ █ ▀█▄█▀▀██ █▄█ █ ▄▄▄ █"
@@ -12017,7 +12017,9 @@ check_digibyte_core() {
12017
12017
str="Checking for latest DigiByte Core pre-release..."
12018
12018
printf "%b %s" "${INFO}" "${str}"
12019
12019
12020
-
DGB_VER_PRERELEASE=$(jq -r 'map(select(.prerelease)) | first | .tag_name' <<< $(echo "$DGB_RELEASE_JSON") | sed 's/v//g')
12020
+
# if the most recent release is a pre-release then store the pre-release version number. if the newest release is a regular release then just return 'null'
12021
+
DGB_VER_PRERELEASE=$(echo "$DGB_RELEASE_JSON" | jq -r '.[0] | if .prerelease then .tag_name else "null" end' | sed 's/v//g')
dialog --no-shadow --keep-tite --colors --backtitle "DigiByte Core pre-release is unavailable!" --title "DigiByte Core pre-release is unavailable!" --msgbox "\n\Z1Warning: No DigiByte Core pre-release is currently available.\Z0\n\nYou requested to install a pre-release version of DigiByte Core using the --dgbpre flag but there is no pre-release version currently available. The current release will be installed instead." 11 ${c}
Copy file name to clipboardExpand all lines: docs/release_notes.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
## DigiNode Tools Release Notes
2
2
3
+
DigiNode Tools v0.10.10 - 2025-02-24
4
+
- Fix: The time online for the Testnet node in the Dashboard now displays in UTC instead of local time
5
+
- Fix: Fixed a showstopping bug that prevented DigiByte Core from being successfully upgraded from a pre-release to the latest release. Somehow I missed this till now. Apologies!
6
+
3
7
DigiNode Tools v0.10.9 - 2025-02-12
4
8
- New: Dashboard now displays the disk space used by the running blockchain
5
9
- New: DigiNode CLI and Dashboard now display the version number at launch
0 commit comments