diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 58f4ef7..5b0dc5b 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +# 0.3.0 + +- Rusty Kaspa 0.15.1 +- Add `Settings > ... > Local p2p Node .. > Public wRPC (Borsh)` to allow for external wRPC connections. +- New Priority Fee estimation algorithm based on the network load (Send panel). +- Add support for legacy wallets created with [KDX](https://kdx.app) and Web Wallet at [https://wallet.kaspanet.io](https://wallet.kaspanet.io). +- Ability to choose a custom PNN (Public Node Network) node is no longer available. +- Kaspa NG has been updated to EGUI 0.28.0, which includes various improvements and bug fixes. +- Display addresses in the transaction history panel. +- Transaction history elements are now clickable leading to the Kaspa Explorer. + # 0.2.7 - Pagination in transaction history panel diff --git a/core/resources/i18n/i18n.json b/core/resources/i18n/i18n.json index 2ef7372..108e09c 100644 --- a/core/resources/i18n/i18n.json +++ b/core/resources/i18n/i18n.json @@ -3104,6 +3104,7 @@ "Allows you to take screenshots from within the application": "Allows you to take screenshots from within the application", "Application must be restarted for this setting to take effect.": "Application must be restarted for this setting to take effect.", "Apply": "Apply", + "Are you sure you want to reset all settings?": "Are you sure you want to reset all settings?", "Balance: N/A": "Balance: N/A", "Bandwidth": "Bandwidth", "Because of its focus on security and performance, this software is entirely developed in Rust, demanding significantly more time and effort compared to other traditional modern web-driven software.": "Because of its focus on security and performance, this software is entirely developed in Rust, demanding significantly more time and effort compared to other traditional modern web-driven software.", diff --git a/core/src/modules/settings/mod.rs b/core/src/modules/settings/mod.rs index 5c30354..9632070 100644 --- a/core/src/modules/settings/mod.rs +++ b/core/src/modules/settings/mod.rs @@ -351,7 +351,7 @@ impl Settings { .show(ui, |ui| { ui.vertical(|ui|{ - ui.checkbox(&mut self.settings.node.enable_wrpc_borsh, i18n("Enable Public wRPC Borsh")); + ui.checkbox(&mut self.settings.node.enable_wrpc_borsh, i18n("Public wRPC (Borsh)")); // ui.checkbox(&mut self.settings.node.enable_wrpc_json, i18n("Enable wRPC JSON")); // if self.settings.node.enable_wrpc_json {