Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3fac37f
update frontend to work with new versions list route
aecsocket Jan 29, 2026
b65f352
wip: server listing API
aecsocket Jan 14, 2026
158e466
wip: v67 project creation endpoint
aecsocket Jan 19, 2026
bd6935f
wip: project components API
aecsocket Jan 20, 2026
33f0429
revert accidental change
aecsocket Jan 20, 2026
ecfeb60
fix up rebase
aecsocket Jan 23, 2026
d135656
No more six seven
aecsocket Jan 23, 2026
e73f383
New project component metadata schema
aecsocket Jan 30, 2026
6a1b032
Update project component structure for servers
aecsocket Feb 7, 2026
d392ed4
wip: version components
aecsocket Feb 7, 2026
e5ee039
Version components backend API
aecsocket Feb 7, 2026
d4eaea3
Version component creation
aecsocket Feb 8, 2026
e9905f8
game version fields
aecsocket Feb 11, 2026
868268c
utoipa support for projects
aecsocket Feb 12, 2026
268db98
docs
aecsocket Feb 12, 2026
0dbb8cf
Allow editing components
aecsocket Feb 12, 2026
3379195
clean up component edit code
aecsocket Feb 12, 2026
f8739ad
wip: ping minecraft servers queue
aecsocket Feb 15, 2026
bf15a02
wip: ping queue
aecsocket Feb 15, 2026
93f5503
ping queue with tests
aecsocket Feb 15, 2026
511e318
mc ping server info + timeout
aecsocket Feb 15, 2026
5576ac0
sqlx prepare
aecsocket Feb 15, 2026
36150d6
tombi fmt
aecsocket Feb 15, 2026
e45e2b9
tombi fmt
aecsocket Feb 15, 2026
943704f
allow querying server ping data
aecsocket Feb 17, 2026
92a8757
fix shear
aecsocket Feb 17, 2026
a93cadf
wip: resolve comments with pings
aecsocket Feb 18, 2026
3bc4c71
Switch to Redis for server pings
aecsocket Feb 18, 2026
1f910eb
tombi fmt
aecsocket Feb 18, 2026
92a60ff
fix compile error
aecsocket Feb 18, 2026
31eb197
clear cache on project ping, add server store link
aecsocket Feb 18, 2026
0d72075
Schema changes
aecsocket Feb 18, 2026
9055fb4
fix seed data category conflicts
aecsocket Feb 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ members = [
"packages/app-lib",
"packages/ariadne",
"packages/daedalus",
"packages/labrinth-derive",
"packages/modrinth-log",
"packages/modrinth-maxmind",
"packages/modrinth-util",
Expand All @@ -32,6 +33,7 @@ arc-swap = "1.7.1"
argon2 = { version = "0.5.3", features = ["std"] }
ariadne = { path = "packages/ariadne" }
async-compression = { version = "0.4.32", default-features = false }
async-minecraft-ping = { version = "0.8.0" }
async-recursion = "1.1.1"
async-stripe = { version = "0.41.0", default-features = false, features = [
"runtime-tokio-hyper-rustls",
Expand All @@ -58,6 +60,7 @@ color-eyre = "0.6.5"
color-thief = "0.2.2"
const_format = "0.2.34"
daedalus = { path = "packages/daedalus" }
darling = { version = "0.23" }
dashmap = "6.1.0"
data-url = "0.3.2"
deadpool-redis = { git = "https://github.com/modrinth/deadpool", rev = "db5fb00b036ecc8fe5f18853c559b745ffe47bde", version = "0.22.1" }
Expand Down Expand Up @@ -121,9 +124,11 @@ paste = "1.0.15"
path-util = { path = "packages/path-util" }
phf = { version = "0.13.1", features = ["macros"] }
png = "0.18.0"
proc-macro2 = { version = "1.0" }
prometheus = "0.14.0"
quartz_nbt = "0.2.9"
quick-xml = "0.38.3"
quote = { version = "1.0" }
rand = "=0.8.5" # Locked on 0.8 until argon2 and p256 update to 0.9
rand_chacha = "=0.3.1" # Locked on 0.3 until we can update rand to 0.9
redis = "0.32.7"
Expand Down Expand Up @@ -166,6 +171,7 @@ spdx = "0.12.0"
sqlx = { version = "0.8.6", default-features = false }
sqlx-tracing = { path = "packages/sqlx-tracing" }
strum = "0.27.2"
syn = { version = "2.0" }
sysinfo = { version = "0.37.2", default-features = false }
tar = "0.4.44"
tauri = "2.8.5"
Expand Down
2 changes: 2 additions & 0 deletions apps/labrinth/.env.docker-compose
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,5 @@ MURALPAY_TRANSFER_API_KEY=none
MURALPAY_SOURCE_ACCOUNT_ID=none

DEFAULT_AFFILIATE_REVENUE_SPLIT=0.1
SERVER_PING_TIMEOUT=10000
SERVER_PING_RETRIES=3
3 changes: 3 additions & 0 deletions apps/labrinth/.env.local
Original file line number Diff line number Diff line change
Expand Up @@ -166,3 +166,6 @@ MURALPAY_TRANSFER_API_KEY=none
MURALPAY_SOURCE_ACCOUNT_ID=none

DEFAULT_AFFILIATE_REVENUE_SPLIT=0.1
SERVER_PING_TIMEOUT=10000
SERVER_PING_RETRIES=3
SERVER_PING_MIN_INTERVAL_SEC=1800

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

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

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

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

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

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

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

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

1 change: 1 addition & 0 deletions apps/labrinth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ actix-ws = { workspace = true }
arc-swap = { workspace = true }
argon2 = { workspace = true }
ariadne = { workspace = true }
async-minecraft-ping = { workspace = true }
async-stripe = { workspace = true, features = [
"billing",
"checkout",
Expand Down
Loading
Loading