Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
d31a527
feat(fonts): add workspace font pipeline and resources tabs
sharkAndshark Mar 23, 2026
c763d79
fix(i18n): remove fallback Chinese tab labels
sharkAndshark Mar 23, 2026
c7e095e
fix(fonts): align API casing and harden public glyph path validation
sharkAndshark Mar 24, 2026
2cd7b99
fix(fonts): reconcile processing font jobs on startup
sharkAndshark Mar 24, 2026
1f9b454
fix(fonts): enforce workspace visibility and test-mode auth parity
sharkAndshark Mar 24, 2026
8922915
test(fonts): cover archived glyph visibility and test-mode auth behavior
sharkAndshark Mar 24, 2026
4001b23
test(fonts): add open-source fixture and full font API lifecycle cove…
sharkAndshark Mar 24, 2026
962bae2
test(fonts): expand regression coverage for publish, delete, and sche…
sharkAndshark Mar 24, 2026
13df8b3
fix(fonts): eliminate TOCTOU race in publish_font and remove unused p…
sharkAndshark Mar 26, 2026
580e04c
feat(fonts): public glyph URL by workspace slug and add workspace slu…
sharkAndshark Mar 28, 2026
44aa2e6
fix(fonts): support comma fontstack requests and tighten workspace sl…
sharkAndshark Mar 28, 2026
3045ba7
refactor(fonts): address PR #190 review — fix timestamps, extract sha…
sharkAndshark Mar 30, 2026
ca37047
fix(fonts): add LIMIT 1 to public glyph query and unpublish fonts on …
sharkAndshark Mar 30, 2026
3d0066f
refactor(fonts): return 201 on upload, extract shared workspace auth,…
sharkAndshark Mar 30, 2026
c763f41
fix(fonts): cleanup orphan files on DB insert failure, unify slug suf…
sharkAndshark Mar 30, 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
231 changes: 221 additions & 10 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ aes-gcm = "0.10"
base64 = "0.22"
rand = "0.8"
sha2 = "0.10"
pbf_font_tools = { version = "3.0", features = ["freetype"] }

[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", features = ["Win32_System_Console"] }
Expand Down
Loading
Loading