Merge commit '8c1c5572c08f9191edaa513aa18859acc651e3e4' into feature-clean

This commit is contained in:
2024-10-20 21:48:28 +03:00
777 changed files with 93723 additions and 785 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "theseus"
version = "0.8.8"
version = "0.8.9"
authors = ["Jai A <jaiagr+gpg@pm.me>"]
edition = "2021"
@@ -60,7 +60,7 @@ rand = "0.8"
byteorder = "1.5.0"
base64 = "0.22.0"
sqlx = { version = "0.8.0", features = [ "runtime-tokio", "sqlite", "macros" ] }
sqlx = { version = "0.8.2", features = [ "runtime-tokio", "sqlite", "macros" ] }
[target.'cfg(windows)'.dependencies]
winreg = "0.52.0"

View File

@@ -2,8 +2,8 @@
"name": "@modrinth/app-lib",
"scripts": {
"build": "cargo build --release",
"lint": "cargo fmt --check && cargo clippy -- -D warnings",
"lint": "cargo fmt --check && cargo clippy --all-targets -- -D warnings",
"fix": "cargo fmt && cargo clippy --fix",
"test": "cargo test"
}
}
}

View File

@@ -26,7 +26,8 @@ html {
}
.light-mode,
.light {
.light,
:root[data-theme='light'] {
--color-bg: #e5e7eb;
--color-raised-bg: #ffffff;
--color-super-raised-bg: #e9e9e9;
@@ -71,7 +72,8 @@ html {
}
.dark-mode,
.dark {
.dark,
:root[data-theme='dark'] {
--color-bg: #16181c;
--color-raised-bg: #26292f;
--color-super-raised-bg: #40434a;