diff --git a/Cargo.lock b/Cargo.lock index 95a844f6..e67293dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1786,7 +1786,7 @@ dependencies = [ [[package]] name = "webapp" -version = "0.7.28" +version = "0.7.32" dependencies = [ "webui", "yew", @@ -1794,8 +1794,8 @@ dependencies = [ [[package]] name = "webui" -version = "0.7.28" -source = "git+https://github.com/StoicDreams/RustWebUI?branch=main#96701835ad5313879f5c61ae1058661f5251b940" +version = "0.7.32" +source = "git+https://github.com/StoicDreams/RustWebUI?branch=main#64cde8c9d2bc5bbbac17544ce414a56bc455996f" dependencies = [ "async-std", "chrono", diff --git a/Docs/README.md b/Docs/README.md index 2064afec..4d8b70d6 100644 --- a/Docs/README.md +++ b/Docs/README.md @@ -1,6 +1,6 @@ # Task Story -[WebUI Version: 0.7.28](https://github.com/StoicDreams/RustWebUI) +[WebUI Version: 0.7.32](https://github.com/StoicDreams/RustWebUI) Simple task management tool focused around Continuous Agile Software Engineering practices and methodologies. diff --git a/webapp/Cargo.toml b/webapp/Cargo.toml index b505ebb1..7133cab0 100644 --- a/webapp/Cargo.toml +++ b/webapp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webapp" -version = "0.7.28" #syncwebui +version = "0.7.32" #syncwebui edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/webapp/root_files/service-worker.js b/webapp/root_files/service-worker.js index 7e3c9cec..c812402c 100644 --- a/webapp/root_files/service-worker.js +++ b/webapp/root_files/service-worker.js @@ -11,7 +11,7 @@ function get_uuid() { }); } } -const currentVersion = location.host.substring(0, 9) === 'localhost' ? `${get_uuid()}` : 'webui_0.7.28'; +const currentVersion = location.host.substring(0, 9) === 'localhost' ? `${get_uuid()}` : 'webui_0.7.32'; const cacheNamePrefix = 'offline-cache-'; const cacheName = `${cacheNamePrefix}${currentVersion}`; const offlineAssetsInclude = [/\.wasm/, /\.html/, /\.js$/, /\.json$/, /\.css$/, /\.woff$/, /\.png$/, /\.jpe?g$/, /\.gif$/, /\.ico$/];