Skip to content

Commit

Permalink
WebUI update
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgassler committed Jan 29, 2024
1 parent add6e66 commit bdbbc7e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 14 deletions.
10 changes: 5 additions & 5 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
@@ -1,6 +1,6 @@
# Stoic Dreams

[WebUI Version: 0.7.2](https://github.com/StoicDreams/RustWebUI)
[WebUI Version: 0.7.3](https://github.com/StoicDreams/RustWebUI)

Front-end website for the company, Stoic Dreams.

Expand Down
2 changes: 1 addition & 1 deletion webapp/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "webapp"
version = "0.7.2" #syncwebui
version = "0.7.3" #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
Expand Up @@ -11,7 +11,7 @@ function get_uuid() {
});
}
}
const currentVersion = location.host.substring(0, 9) === 'localhost' ? `${get_uuid()}` : 'webui_0.7.2';
const currentVersion = location.host.substring(0, 9) === 'localhost' ? `${get_uuid()}` : 'webui_0.7.3';
const cacheNamePrefix = 'offline-cache-';
const cacheName = `${cacheNamePrefix}${currentVersion}`;
const offlineAssetsInclude = [/\.wasm/, /\.html/, /\.js$/, /\.json$/, /\.css$/, /\.woff$/, /\.png$/, /\.jpe?g$/, /\.gif$/, /\.ico$/];
Expand Down
15 changes: 9 additions & 6 deletions webapp/src/components/cards/project_cards.rs
Expand Up @@ -372,12 +372,15 @@ fn cards() -> std::collections::HashMap<Projects, fn() -> Html> {
link="https://www.nuget.org/packages/StoicDreams.TestFramework"
width={CARD_WIDTH}
>
{paragraphs!(
"Nuget.org - StoicDreams.TestFramework",
"A helper framework that's designed to help strictly adhere tests to an Arrange / Act / Assert framework of testing.",
"Includes `Moq` and `FluentAssertion` libraries to help with mocking data and writing readable tests.",
"Development on Test Framework is indefinitely on hold as we have migrated away from using C# for our projects."
)}
<MarkdownContent markdown={r#"
Nuget.org - StoicDreams.TestFramework
A helper framework that's designed to help strictly adhere tests to an Arrange / Act / Assert framework of testing.
Includes `Moq` and `FluentAssertion` libraries to help with mocking data and writing readable tests.
Development on Test Framework is indefinitely on hold as we have migrated away from using C# for our projects.
"#} />
</Card>
}
} as fn() -> Html),
Expand Down

0 comments on commit bdbbc7e

Please sign in to comment.