Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
aspect committed Sep 12, 2024
1 parent f064885 commit 4c05203
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions core/resources/i18n/i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion core/src/modules/settings/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 4c05203

Please sign in to comment.