From f99a0d1b163b7446b3f1acd110ae61067588f403 Mon Sep 17 00:00:00 2001 From: rdlrt <3169068+rdlrt@users.noreply.github.com> Date: Tue, 24 Sep 2024 12:54:24 +1000 Subject: [PATCH] CNTools 13.2.2 --- docs/Scripts/cntools-changelog.md | 4 ++++ scripts/cnode-helper-scripts/cntools.library | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/Scripts/cntools-changelog.md b/docs/Scripts/cntools-changelog.md index 5684a7b42..4931ebd1a 100644 --- a/docs/Scripts/cntools-changelog.md +++ b/docs/Scripts/cntools-changelog.md @@ -6,6 +6,10 @@ All notable changes to this tool will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [13.2.2] - 2024-09-23 +#### Fixed +- URL for share.koios.rest to download catalyst-toolbox + ## [13.2.1] - 2024-09-10 #### Added - Added gov vote validation for role and type diff --git a/scripts/cnode-helper-scripts/cntools.library b/scripts/cnode-helper-scripts/cntools.library index 8b9efe415..e77ef0011 100644 --- a/scripts/cnode-helper-scripts/cntools.library +++ b/scripts/cnode-helper-scripts/cntools.library @@ -15,7 +15,7 @@ CNTOOLS_MAJOR_VERSION=13 # Minor: Changes and features of minor character that can be applied without breaking existing functionality or workflow CNTOOLS_MINOR_VERSION=2 # Patch: Backwards compatible bug fixes. No additional functionality or major changes -CNTOOLS_PATCH_VERSION=1 +CNTOOLS_PATCH_VERSION=2 CNTOOLS_VERSION="${CNTOOLS_MAJOR_VERSION}.${CNTOOLS_MINOR_VERSION}.${CNTOOLS_PATCH_VERSION}" DUMMYFEE=20000 @@ -171,7 +171,7 @@ download_catalyst_toolbox() { fi rm -rf /tmp/catalyst-toolbox-bin && mkdir /tmp/catalyst-toolbox-bin pushd /tmp/catalyst-toolbox-bin >/dev/null || return 1 - if curl -sL -f -m ${CURL_TIMEOUT} -o "${HOME}"/.local/bin/catalyst-toolbox "https://share.koios.rest/api/public/dl/Q0m8-F2X%2Fbinaries%2Fcatalyst-toolbox-x86_64-gnu"; then + if curl -sL -f -m ${CURL_TIMEOUT} -o "${HOME}"/.local/bin/catalyst-toolbox "https://share.koios.rest/api/public/dl/xFdZDfM4%2Fbin%2Fcatalyst-toolbox"; then chmod +x "${HOME}"/.local/bin/catalyst-toolbox local catalyst_toolbox_version; catalyst_toolbox_version=$(catalyst-toolbox --full-version) println DEBUG " ${catalyst_toolbox_version%% - *} ${FG_GREEN}installed!${NC}"