diff --git a/CHANGELOG.md b/CHANGELOG.md index d7a68163..5c8d0b1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [2.4.4] - 2024-10-? +## [2.4.4] - 2024-10-17 ### Added ### Changed ### Updated diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index b52df519..730b6c8d 100644 --- a/scripts/forks/chia_install.sh +++ b/scripts/forks/chia_install.sh @@ -27,10 +27,10 @@ else echo "Installing Chia CUDA binaries on ${arch_name}..." cd /tmp if [[ "${arch_name}" == "x86_64" ]]; then - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.4-rc2/chia-blockchain-cli_2.4.4-rc2-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.4/chia-blockchain-cli_2.4.4-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.4-rc2/chia-blockchain-cli_2.4.4-rc2-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.4/chia-blockchain-cli_2.4.4-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi diff --git a/scripts/pull_3rd_party_libs.sh b/scripts/pull_3rd_party_libs.sh index 96a7b883..d745d432 100755 --- a/scripts/pull_3rd_party_libs.sh +++ b/scripts/pull_3rd_party_libs.sh @@ -13,9 +13,9 @@ LEAFLET_VERSION=1.9.4 # List of other css/js links LIST=" -https://cdn.datatables.net/2.1.4/css/dataTables.bootstrap5.css -https://cdn.datatables.net/2.1.4/js/dataTables.bootstrap5.js -https://cdn.datatables.net/2.1.4/js/dataTables.min.js +https://cdn.datatables.net/2.1.8/css/dataTables.bootstrap5.css +https://cdn.datatables.net/2.1.8/js/dataTables.bootstrap5.js +https://cdn.datatables.net/2.1.8/js/dataTables.min.js https://cdn.jsdelivr.net/npm/chart.js@4.4.4/dist/chart.umd.js.map https://cdn.jsdelivr.net/npm/chart.js@4.4.4/dist/chart.umd.min.js https://cdn.jsdelivr.net/npm/chartjs-adapter-luxon@1.3.1/dist/chartjs-adapter-luxon.umd.min.js diff --git a/web/models/chia.py b/web/models/chia.py index 05616af7..fc996aae 100644 --- a/web/models/chia.py +++ b/web/models/chia.py @@ -775,7 +775,7 @@ def parse_chia(self, connection, blockchain, geoip_cache, lang): 'mib_up': float(vals[7].split('|')[0]), 'mib_down': float(vals[7].split('|')[1]) } - if len(vals) > 9: # HDDCoin keeps SBHeight and Hash on same line + if len(vals) > 9 and vals[8] != '-Trusted:': # HDDCoin keeps SBHeight and Hash on same line connection['height'] = vals[8] connection['hash'] = vals[9] try: