From 967fb2cd6bd9ab7405040452600531d360bb10d4 Mon Sep 17 00:00:00 2001 From: mysticmomba Date: Wed, 17 Jun 2026 11:40:31 -0400 Subject: [PATCH] Updated URL in configuration to point directly to the HA portal instead of the dashboard --- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/src/lib.rs | 4 ++-- src-tauri/tauri.conf.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 955a8d1..c062a53 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "WVUMedicine_HelpAlert_WebClient" -version = "1.0.0" +version = "1.0.1" dependencies = [ "serde", "serde_json", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 6bd5a43..38899b4 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "WVUMedicine_HelpAlert_WebClient" -version = "1.0.0" +version = "1.0.1" description = "Help Alert Web Client" authors = ["James Brotosky )?; let quit = MenuItem::with_id(app, "quit", "Quit", true, None::<&str>)?; let menu = Menu::with_items(app, &[&show, &quit])?; - let url = WebviewUrl::External("https://helpalert.wvumedicine.org".parse().unwrap()); + let url = WebviewUrl::External("https://helpalert.wvumedicine.org/ha".parse().unwrap()); let w_handle = app.handle().clone(); WebviewWindowBuilder::new(app, "main", url) .title("WVU Medicine Help Alert") @@ -25,7 +25,7 @@ pub fn run() { let _ = w.eval( "document.documentElement.innerHTML = \ '' + \ - '';" + '';" ); } return false; diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index e64eb5c..50f7150 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "WVUMedicine Help Alert Web Client", - "version": "1.0.0", + "version": "1.0.1", "identifier": "org.wvumedicine.duress", "build": { "frontendDist": "../src"