v0.2.12-pre.008-fix.003

This commit is contained in:
2026-08-27 15:20:45 +02:00
parent f0493df09e
commit d363991f78
5 changed files with 14 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "ksp-app-wallet-desk",
"private": true,
"version": "0.2.12-pre.8.fix.2",
"version": "0.2.12-pre.8.fix.3",
"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.12-pre.8.fix.2",
"version": "0.2.12-pre.8.fix.3",
"identifier": "com.sasedev.ksp-app-wallet-desk",
"build": {
"beforeDevCommand": {

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-app-wallet-desk/tests/desktop_contract.rs
// version: 27
// version: 28
//! Desktop build, shell and Config-status contract audits for Wallet Desk.
@@ -493,7 +493,7 @@ fn pre_018_packaged_runtime_bundles_config_resources_and_keeps_wallet_desk_versi
let main = read_text(root.join("frontend/main.html").as_path());
let main_ts = read_text(root.join("frontend/ts/main.ts").as_path());
assert!(main.contains(r#"id="appVersionBadge""#));
assert!(main_ts.contains(r#"setText("#appVersionBadge", status.applicationVersion);"#));
assert!(main_ts.contains("setText(\"#appVersionBadge\", status.applicationVersion);"));
let tauri_source = read_text(root.join("src/tauri.rs").as_path());
assert!(tauri_source.contains("ksp_config_lib::prepare_packaged_runtime"));
assert!(tauri_source.contains("tauri::utils::platform::resource_dir"));