Skip to content

Commit

Permalink
Core Update
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgassler committed Jan 1, 2024
1 parent 0c92a0e commit b94b866
Show file tree
Hide file tree
Showing 10 changed files with 460 additions and 248 deletions.
654 changes: 427 additions & 227 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Docs/LICENSE.txt
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright © 2023 Stoic Dreams
Copyright © 2010-2024 Stoic Dreams

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion Docs/README.md
@@ -1,6 +1,6 @@
# Stoic Dreams

[WebUI Version: 0.6.62](https://github.com/StoicDreams/RustWebUI)
[WebUI Version: 0.6.67](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.6.62" #syncwebui
version = "0.6.67" #syncwebui
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
16 changes: 16 additions & 0 deletions webapp/css/webui.css
Expand Up @@ -1210,6 +1210,13 @@ a.btn:active,
user-select: text;
}

.disabled,
:disabled,
.btn:disabled {
background-color: var(--color-shade);
color: var(--color-shade-offset);
}

.btn:disabled {
cursor: not-allowed;
}
Expand Down Expand Up @@ -2441,6 +2448,15 @@ a.theme-white:active {
color: var(--color-black);
}

.theme-shade,
a.theme-shade:link,
a.theme-shade:visited,
a.theme-shade:focus,
a.theme-shade:active {
background-color: var(--color-shade);
color: var(--color-shade-offset);
}

.theme-primary,
a.theme-primary:link,
a.theme-primary:visited,
Expand Down
2 changes: 1 addition & 1 deletion webapp/d/en-US/home.md
Expand Up @@ -3,7 +3,7 @@
## Pioneering productivity tools and resources for developers worldwide

```section
Welcome to Stoic Dreams, where innovation meets the needs of every developer. As architects of the future of software development, we are dedicated to creating open-source tools that not only enhance your coding capabilities but also shape the very future of software development.
Welcome to Stoic Dreams, where innovation meets the needs of every developer. As architects of the future of software development, we are dedicated to creating open-source tools that not only enhance your coding capabilities but also help to shape a better future for software development.
```

## Current Projects
Expand Down
6 changes: 1 addition & 5 deletions webapp/d/en-US/projects/games.md
@@ -1,13 +1,9 @@
# Games by Stoic Dreams

```quote "info"
More information on our game projects coming soon!
```

````cards
```card "Faryn" "500" "tertiary" "https://www.farynthegame.com/Logo.svg" "https://www.farynthegame.com" "Faryn the Game"
An action-adventure game we are working on, very early in development. We are expecting to start publishing a dev diary on this project to showcase the game engine and development progress in early 2023.
An action-adventure game we are planning to start developing once the bulk of our productivity projects have launched.
```
````
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.6.62';
const currentVersion = location.host.substring(0, 9) === 'localhost' ? `${get_uuid()}` : 'webui_0.6.67';
const cacheNamePrefix = 'offline-cache-';
const cacheName = `${cacheNamePrefix}${currentVersion}`;
const offlineAssetsInclude = [/\.wasm/, /\.html/, /\.js$/, /\.json$/, /\.css$/, /\.woff$/, /\.png$/, /\.jpe?g$/, /\.gif$/, /\.ico$/];
Expand Down
20 changes: 10 additions & 10 deletions webapp/root_files/sitemap.xml
Expand Up @@ -2,42 +2,42 @@
<urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.stoicdreams.com/</loc>
<lastmod>2023-10-15</lastmod>
<lastmod>2024-01-01</lastmod>
</url>
<url>
<loc>https://www.stoicdreams.com/signin</loc>
<lastmod>2023-10-15</lastmod>
<lastmod>2024-01-01</lastmod>
</url>
<url>
<loc>https://www.stoicdreams.com/game-development</loc>
<lastmod>2023-10-15</lastmod>
<lastmod>2024-01-01</lastmod>
</url>
<url>
<loc>https://www.stoicdreams.com/productivity-tools</loc>
<lastmod>2023-10-15</lastmod>
<lastmod>2024-01-01</lastmod>
</url>
<url>
<loc>https://www.stoicdreams.com/website-projects</loc>
<lastmod>2023-10-15</lastmod>
<lastmod>2024-01-01</lastmod>
</url>
<url>
<loc>https://www.stoicdreams.com/sponsors</loc>
<lastmod>2023-10-15</lastmod>
<lastmod>2024-01-01</lastmod>
</url>
<url>
<loc>https://www.stoicdreams.com/social/instagram</loc>
<lastmod>2023-10-15</lastmod>
<lastmod>2024-01-01</lastmod>
</url>
<url>
<loc>https://www.stoicdreams.com/about</loc>
<lastmod>2023-10-15</lastmod>
<lastmod>2024-01-01</lastmod>
</url>
<url>
<loc>https://www.stoicdreams.com/terms</loc>
<lastmod>2023-10-15</lastmod>
<lastmod>2024-01-01</lastmod>
</url>
<url>
<loc>https://www.stoicdreams.com/privacy</loc>
<lastmod>2023-10-15</lastmod>
<lastmod>2024-01-01</lastmod>
</url>
</urlset>
2 changes: 1 addition & 1 deletion webapp/src/forms.rs
Expand Up @@ -4,6 +4,6 @@ define_form!(AuthResult, {
id: String,
display_name: String,
auth_key: Option<String>,
roles: u64,
roles: u32,
redirect_url: Option<String>
});

0 comments on commit b94b866

Please sign in to comment.