diff --git a/CHANGELOG.md b/CHANGELOG.md index e97ba34403..dc66778ae8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 *When editing this file, please respect a line length of 100.* +## 2024-11-07 + +### Launchpad + +#### Added + +- You can select a node. Pressing L will show its logs. +- The upgrade screen has an estimated time. + +#### Changed + +- Launchpad now uses multiple threads. This allows the UI to be functional while nodes are being + started, upgraded, and so on. +- Mbps vs Mb units on status screen. + +#### Fixed + +- Spinners now move when updating. + ## 2024-11-06 ### Network diff --git a/Cargo.lock b/Cargo.lock index c68d6a0a6e..d6bf9f17fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5891,7 +5891,7 @@ dependencies = [ [[package]] name = "node-launchpad" -version = "0.4.3" +version = "0.4.4" dependencies = [ "arboard", "atty", diff --git a/node-launchpad/Cargo.toml b/node-launchpad/Cargo.toml index 73cdcffb38..cc18203ccc 100644 --- a/node-launchpad/Cargo.toml +++ b/node-launchpad/Cargo.toml @@ -2,7 +2,7 @@ authors = ["MaidSafe Developers "] description = "Node Launchpad" name = "node-launchpad" -version = "0.4.3" +version = "0.4.4" edition = "2021" license = "GPL-3.0" homepage = "https://maidsafe.net" diff --git a/release-cycle-info b/release-cycle-info index 25eb9d78ce..b75976efb5 100644 --- a/release-cycle-info +++ b/release-cycle-info @@ -15,4 +15,4 @@ release-year: 2024 release-month: 10 release-cycle: 4 -release-cycle-counter: 5 +release-cycle-counter: 6 diff --git a/sn_build_info/src/release_info.rs b/sn_build_info/src/release_info.rs index c5d9ad7bfc..1f67bd7304 100644 --- a/sn_build_info/src/release_info.rs +++ b/sn_build_info/src/release_info.rs @@ -1,4 +1,4 @@ pub const RELEASE_YEAR: &str = "2024"; pub const RELEASE_MONTH: &str = "10"; pub const RELEASE_CYCLE: &str = "4"; -pub const RELEASE_CYCLE_COUNTER: &str = "5"; +pub const RELEASE_CYCLE_COUNTER: &str = "6";