v0.1.0-pre.077

This commit is contained in:
2026-08-01 19:44:13 +02:00
parent d7284ab71e
commit e91d0aa2cb
17 changed files with 32 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
<!-- file: kb_app_demo/frontend/demo_decode_replay.html -->
<!-- version: 7 -->
<!-- file: kb-app-demo-desktop/frontend/demo_decode_replay.html -->
<!-- version: 8 -->
<!DOCTYPE html>
<html lang="fr">

View File

@@ -1,5 +1,5 @@
<!-- file: kb_app_demo/frontend/demo_sql_diag.html -->
<!-- version: 4 -->
<!-- file: kb-app-demo-desktop/frontend/demo_sql_diag.html -->
<!-- version: 5 -->
<!DOCTYPE html>
<html lang="fr">

View File

@@ -1,5 +1,5 @@
<!-- file: kb_app_demo/frontend/demo_sql_pg_core.html -->
<!-- version: 5 -->
<!-- file: kb-app-demo-desktop/frontend/demo_sql_pg_core.html -->
<!-- version: 6 -->
<!DOCTYPE html>
<html lang="fr">

View File

@@ -1,5 +1,5 @@
<!-- file: kb_app_demo/frontend/demo_sql_pg_raw.html -->
<!-- version: 6 -->
<!-- file: kb-app-demo-desktop/frontend/demo_sql_pg_raw.html -->
<!-- version: 7 -->
<!DOCTYPE html>
<html lang="fr">

View File

@@ -1,5 +1,5 @@
<!-- file: kb_app_demo/frontend/demo_sql_replay_candidates.html -->
<!-- version: 9 -->
<!-- file: kb-app-demo-desktop/frontend/demo_sql_replay_candidates.html -->
<!-- version: 10 -->
<!DOCTYPE html>
<html lang="fr">

View File

@@ -1,5 +1,5 @@
// file: kb_app_demo/frontend/ts/demo_config.ts
// version: 5
// file: kb-app-demo-desktop/frontend/ts/demo_config.ts
// version: 6
import * as bootstrap from "bootstrap";
import "simplebar";

View File

@@ -8,12 +8,13 @@ use tauri::Manager; // rust-rules: trait-import
/// Runs the desktop demo application.
#[cfg_attr(mobile, tauri::mobile_entry_point)]
#[allow(clippy::question_mark_used)]
#[allow(clippy::question_mark)]
pub fn run() -> kb_core::Result<()> {
let rustls_result = install_default_rustls_provider();
if let std::result::Result::Err(error) = rustls_result {
return std::result::Result::Err(error);
}
let app_state = match crate::AppState::initialize() {
let app_state: crate::AppState = match crate::AppState::initialize() {
std::result::Result::Ok(state) => state,
std::result::Result::Err(error) => return std::result::Result::Err(error),
};