Skip to content

Commit

Permalink
WebUI update
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgassler committed Feb 4, 2024
1 parent 6e9c001 commit 8f81fa9
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 26 deletions.
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Task Story

[WebUI Version: 0.7.20](https://github.com/StoicDreams/RustWebUI)
[WebUI Version: 0.7.24](https://github.com/StoicDreams/RustWebUI)

Simple task management tool focused around Continuous Agile Software Engineering practices and methodologies.

Expand Down
2 changes: 1 addition & 1 deletion webapp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webapp"
version = "0.7.20" #syncwebui
version = "0.7.24" #syncwebui
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion webapp/root_files/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function get_uuid() {
});
}
}
const currentVersion = location.host.substring(0, 9) === 'localhost' ? `${get_uuid()}` : 'webui_0.7.20';
const currentVersion = location.host.substring(0, 9) === 'localhost' ? `${get_uuid()}` : 'webui_0.7.24';
const cacheNamePrefix = 'offline-cache-';
const cacheName = `${cacheNamePrefix}${currentVersion}`;
const offlineAssetsInclude = [/\.wasm/, /\.html/, /\.js$/, /\.json$/, /\.css$/, /\.woff$/, /\.png$/, /\.jpe?g$/, /\.gif$/, /\.ico$/];
Expand Down
12 changes: 6 additions & 6 deletions webapp/root_files/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@
<urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.taskstory.com/</loc>
<lastmod>2024-02-02</lastmod>
<lastmod>2024-02-04</lastmod>
</url>
<url>
<loc>https://www.taskstory.com/agile-project-management</loc>
<lastmod>2024-02-02</lastmod>
<lastmod>2024-02-04</lastmod>
</url>
<url>
<loc>https://www.taskstory.com/about</loc>
<lastmod>2024-02-02</lastmod>
<lastmod>2024-02-04</lastmod>
</url>
<url>
<loc>https://www.taskstory.com/terms</loc>
<lastmod>2024-02-02</lastmod>
<lastmod>2024-02-04</lastmod>
</url>
<url>
<loc>https://www.taskstory.com/privacy</loc>
<lastmod>2024-02-02</lastmod>
<lastmod>2024-02-04</lastmod>
</url>
<url>
<loc>https://www.taskstory.com/</loc>
<lastmod>2024-02-02</lastmod>
<lastmod>2024-02-04</lastmod>
</url>
</urlset>

0 comments on commit 8f81fa9

Please sign in to comment.