Skip to content

Commit

Permalink
README + bump to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aspect committed Jan 22, 2024
1 parent 6e26d50 commit 76e782b
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
24 changes: 22 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<p align="center" style="margin:32px auto 0px auto;text-align:center;font-size:10px;color:#888;">
<img src="https://aspectron.com/images/projects/kaspa-ng-screen-01.png" style="display:block;max-height:320px;max-width:524px;width:524px;height:auto;object-fit:cover;margin: 0px auto 0px auto;"><br/><sup>RUSTY KASPA P2P NODE &bull; KASPA WALLET &bull; BLOCKDAG VISUALIZER</sup></p>


<p align="center" style="margin:4px 0px;text-align:center;font-size:10px;color:#800;">
&bull; ALPHA RELEASE &bull;
</p>
Expand Down
5 changes: 4 additions & 1 deletion core/src/modules/overview.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::<modules::Changelog>();
// }
ui.label(format!("Timestamp: {}", crate::app::BUILD_TIMESTAMP));
ui.label(format!("rustc {}-{} {} llvm {}",
crate::app::RUSTC_SEMVER,
Expand Down

0 comments on commit 76e782b

Please sign in to comment.