v0.2.6-pre.007-fix.002

This commit is contained in:
2026-08-21 11:01:07 +02:00
parent 60b346c552
commit 787df2861f
8 changed files with 142 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "ksp-app-wallet-desk",
"private": true,
"version": "0.2.6-pre.7.fix.1",
"version": "0.2.6-pre.7.fix.2",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "KSP Wallet Desk",
"version": "0.2.6-pre.7.fix.1",
"version": "0.2.6-pre.7.fix.2",
"identifier": "com.sasedev.ksp-app-wallet-desk",
"build": {
"beforeDevCommand": "npm run dev",

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-app-wallet-desk/tests/config_composition.rs
// version: 6
// version: 7
//! Config composition contracts introduced for Wallet Desk pre.003.
@@ -147,7 +147,7 @@ fn wallet_desk_composite_transport_profile_builds_get_balance_pool() {
std::option::Option::None => return,
};
let environment = ksp_config_lib::ConfigEnvironment::load();
assert!(environment.is_ok(), "public Config environment snapshot should load: {environment:?}");
assert!(environment.is_ok(), "public Config environment snapshot should load");
let environment = match environment {
std::result::Result::Ok(value) => value,
std::result::Result::Err(_) => return,