diff --git a/CHANGELOG.md b/CHANGELOG.md index b53d8ea..91d70a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +This release is not intended for use with mainnet funds at this time. + +# 0.2.1 - 2024-01-22 +- User Interface scale in Display settings (in addition to `Ctrl`+`+` and `Ctrl`+`-` shortcuts, `⌘` on MacOS) +- Offer alternate public node in case of random node connection failure +- Prevent saving settings when no public node is selected +- Data folder size display in Overview and management in Settings > Storage +- Fix edge conditions in the wallet when changing networks +- Support for cache management `ram-scale` option in the node configuration +- Add `--version` command line argument + +# 0.2.0 - 2024-01-14 +- Dedicated persistent popup notification panel for error, warning and info messages +- Various improvements to CI processes and binary redistributables generation +- Linux DEB package generation +- Custom window frame and caption bar in desktop environments +- Network load detection and automatic transaction priority fee prompt in Wallet > Send +- Random server option in connection settings +- Network and public node selection in the status bar +- Visualizer settings presets and automatic load based on the network selection + # 0.1.0 - 2023-12-27 -This is an initial _alpha release_ intended as a technology preview and for testing with the upcoming Testnet 11. -This release is not intended for production use at this time. +Initial technology preview alpha release for testing with the upcoming Testnet 11. diff --git a/Cargo.toml b/Cargo.toml index 086f9cc..85da4ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ default-members = ["app"] [workspace.package] -version = "0.2.0" +version = "0.2.1" authors = ["ASPECTRON Inc."] license = "PROPRIETARY" edition = "2021" diff --git a/README.md b/README.md index 9904205..40fa055 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,6 @@
RUSTY KASPA P2P NODE • KASPA WALLET • BLOCKDAG VISUALIZER
• ALPHA RELEASE •
diff --git a/core/src/modules/overview.rs b/core/src/modules/overview.rs index fef710d..0f3d463 100644 --- a/core/src/modules/overview.rs +++ b/core/src/modules/overview.rs @@ -239,7 +239,10 @@ impl Overview { CollapsingHeader::new(i18n("Build")) .default_open(true) .show(ui, |ui| { - ui.label(format!("Kaspa NG v{}-{} + Rusty Kaspa v{}", env!("CARGO_PKG_VERSION"),crate::app::GIT_DESCRIBE, kaspa_wallet_core::version())); + ui.add(Label::new(format!("Kaspa NG v{}-{} + Rusty Kaspa v{}", env!("CARGO_PKG_VERSION"),crate::app::GIT_DESCRIBE, kaspa_wallet_core::version()))); + // if ui.add(Label::new(format!("Kaspa NG v{}-{} + Rusty Kaspa v{}", env!("CARGO_PKG_VERSION"),crate::app::GIT_DESCRIBE, kaspa_wallet_core::version())).sense(Sense::click())).clicked() { + // core.select::