Skip to content

Commit

Permalink
icons & settings
Browse files Browse the repository at this point in the history
  • Loading branch information
aspect committed Jan 24, 2024
1 parent 42fefe4 commit c33fe87
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 16 deletions.
46 changes: 31 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,21 +58,37 @@ egui-notify = "=0.11.0"
# | \ |__| ___] | | | \_ | | ___] | | |
# _______________________________________________________

kaspa-addresses = { path = "../rusty-kaspa/crypto/addresses" }
kaspa-alloc = { path = "../rusty-kaspa/utils/alloc" }
kaspa-bip32 = { path = "../rusty-kaspa/wallet/bip32" }
kaspa-cli = { path = "../rusty-kaspa/cli" }
kaspa-consensus-core = { path = "../rusty-kaspa/consensus/core" }
kaspa-core = { path = "../rusty-kaspa/core" }
kaspa-metrics-core = { path = "../rusty-kaspa/metrics/core" }
kaspa-notify = { path = "../rusty-kaspa/notify" }
kaspa-rpc-core = { path = "../rusty-kaspa/rpc/core" }
kaspa-rpc-service = { path = "../rusty-kaspa/rpc/service" }
kaspa-utils = { path = "../rusty-kaspa/utils" }
kaspa-wallet-core = { path = "../rusty-kaspa/wallet/core", features=["no-unsafe-eval"] }
kaspa-wrpc-client = { path = "../rusty-kaspa/rpc/wrpc/client", features=["no-unsafe-eval"] }
kaspa-wrpc-server = { path = "../rusty-kaspa/rpc/wrpc/server" }
kaspad = { path = "../rusty-kaspa/kaspad" }
kaspa-addresses = "0.13.4"
kaspa-alloc = "0.13.4"
kaspa-bip32 = "0.13.4"
kaspa-cli = "0.13.4"
kaspa-consensus-core = "0.13.4"
kaspa-core = "0.13.4"
kaspa-metrics-core = "0.13.4"
kaspa-notify = "0.13.4"
kaspa-rpc-core = "0.13.4"
kaspa-rpc-service = "0.13.4"
kaspa-utils = "0.13.4"
kaspa-wallet-core = "0.13.4"
kaspa-wrpc-client = "0.13.4"
kaspa-wrpc-server = "0.13.4"
kaspad = "0.13.4"

# kaspa-addresses = { path = "../rusty-kaspa/crypto/addresses" }
# kaspa-alloc = { path = "../rusty-kaspa/utils/alloc" }
# kaspa-bip32 = { path = "../rusty-kaspa/wallet/bip32" }
# kaspa-cli = { path = "../rusty-kaspa/cli" }
# kaspa-consensus-core = { path = "../rusty-kaspa/consensus/core" }
# kaspa-core = { path = "../rusty-kaspa/core" }
# kaspa-metrics-core = { path = "../rusty-kaspa/metrics/core" }
# kaspa-notify = { path = "../rusty-kaspa/notify" }
# kaspa-rpc-core = { path = "../rusty-kaspa/rpc/core" }
# kaspa-rpc-service = { path = "../rusty-kaspa/rpc/service" }
# kaspa-utils = { path = "../rusty-kaspa/utils" }
# kaspa-wallet-core = { path = "../rusty-kaspa/wallet/core", features=["no-unsafe-eval"] }
# kaspa-wrpc-client = { path = "../rusty-kaspa/rpc/wrpc/client", features=["no-unsafe-eval"] }
# kaspa-wrpc-server = { path = "../rusty-kaspa/rpc/wrpc/server" }
# kaspad = { path = "../rusty-kaspa/kaspad" }

# kaspa-addresses = { git = "https://github.com/kaspanet/rusty-kaspa.git", branch = "master" }
# kaspa-alloc = { git = "https://github.com/kaspanet/rusty-kaspa.git", branch = "master" }
Expand Down
4 changes: 3 additions & 1 deletion core/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use kaspa_utils::networking::ContextualNetAddress;
use kaspa_wallet_core::storage::local::storage::Storage;
use kaspa_wrpc_client::WrpcEncoding;

const SETTINGS_REVISION: &str = "0.0.6";
const SETTINGS_REVISION: &str = "0.0.0";

cfg_if! {
if #[cfg(not(target_arch = "wasm32"))] {
Expand Down Expand Up @@ -583,6 +583,7 @@ pub struct Settings {
pub initialized: bool,
pub splash_screen: bool,
pub version: String,
pub update: String,
pub developer: DeveloperSettings,
pub node: NodeSettings,
pub user_interface: UserInterfaceSettings,
Expand All @@ -599,6 +600,7 @@ impl Default for Settings {

splash_screen: true,
version: "0.0.0".to_string(),
update: crate::app::VERSION.to_string(),
developer: DeveloperSettings::default(),
node: NodeSettings::default(),
user_interface: UserInterfaceSettings::default(),
Expand Down
Binary file modified resources/icons/favicon.ico
Binary file not shown.
Binary file modified resources/icons/icon-1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/icons/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/icons/icon-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/icons/icon-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/icons/icon-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/icons/icon-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/icons/icon_ios_touch_192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/icons/maskable_icon_x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c33fe87

Please sign in to comment.