• Joined on 2026-02-16
hugo pushed to main at hugo/RuDS 2026-07-22 16:58:41 +00:00
3051331b87 Match post tag names exactly
hugo closed issue hugo/RuDS#91 2026-07-22 16:54:57 +00:00
Default script entrypoint by kind when frontmatter omits it
hugo commented on issue hugo/RuDS#91 2026-07-22 16:54:50 +00:00
Default script entrypoint by kind when frontmatter omits it

Implemented in a1c04ff. Script frontmatter now resolves a missing entrypoint after parsing kind: macro defaults to render, while utility and transform default to main. The fix lives in ScriptFrontm…

hugo pushed to main at hugo/RuDS 2026-07-22 16:54:37 +00:00
a1c04ff898 Default script entrypoints by kind
hugo closed issue hugo/RuDS#90 2026-07-22 16:50:08 +00:00
Handle HEIC/HEIF media import (image crate cannot decode it)
hugo commented on issue hugo/RuDS#90 2026-07-22 16:50:00 +00:00
Handle HEIC/HEIF media import (image crate cannot decode it)

Implemented in e9f2cdb. Added cross-platform pure-Rust HEIC/HEIF decoding with hpvcd, including orientation, clean-aperture display cropping, 8/10/12-bit conversion, alpha preservation, and a…

hugo pushed to main at hugo/RuDS 2026-07-22 16:49:40 +00:00
e9f2cdb25d Support HEIC media imports
hugo closed issue hugo/RuDS#89 2026-07-22 16:33:49 +00:00
Apply WebP quality 80 to generated thumbnails
hugo commented on issue hugo/RuDS#89 2026-07-22 16:33:44 +00:00
Apply WebP quality 80 to generated thumbnails

Implemented in bdfe57b. Replaced image 0.25's lossless-only WebP output with webp 0.3.1/libwebp encode_simple(false, quality), preserving RGBA alpha input and passing the existing production q80…

hugo pushed to main at hugo/RuDS 2026-07-22 16:33:31 +00:00
bdfe57b66f Encode WebP thumbnails at quality 80
hugo closed issue hugo/RuDS#88 2026-07-22 16:26:07 +00:00
Add unique index on mcp_proposals(kind, entity_id, status)
hugo commented on issue hugo/RuDS#88 2026-07-22 16:26:02 +00:00
Add unique index on mcp_proposals(kind, entity_id, status)

Implemented in 70503c8. Added a Diesel-generated SQLite migration and regenerated schema snapshot for the named unique (kind, entity_id, status) index; upgraded entity_id to NOT NULL, normalized…

hugo pushed to main at hugo/RuDS 2026-07-22 16:25:35 +00:00
70503c8bc2 Enforce unique MCP proposal identities
hugo closed issue hugo/RuDS#87 2026-07-22 16:11:30 +00:00
Align auto-translation trigger with bDS2 (manual save only, not publish)
hugo commented on issue hugo/RuDS#87 2026-07-22 16:11:26 +00:00
Align auto-translation trigger with bDS2 (manual save only, not publish)

Implemented in 2dcaf7f. Automatic post translation is now triggered only by an explicit manual canonical save; publishing no longer schedules missing translations, and autosave/internal persistence…

hugo pushed to main at hugo/RuDS 2026-07-22 16:11:18 +00:00
2dcaf7f7f7 Limit automatic translation to manual saves
hugo closed issue hugo/RuDS#85 2026-07-22 16:06:25 +00:00
Generation: classify localized page-category post paths ({lang}/{slug}/index.html)
hugo commented on issue hugo/RuDS#85 2026-07-22 16:06:22 +00:00
Generation: classify localized page-category post paths ({lang}/{slug}/index.html)

Implemented in 556d9c1. Configured language prefixes are now stripped before all generated-route classification, so localized page-category paths such as de/about/index.html classify as Core just…

hugo pushed to main at hugo/RuDS 2026-07-22 16:06:15 +00:00
556d9c1ff4 Classify localized page routes as core
hugo closed issue hugo/RuDS#84 2026-07-22 16:02:47 +00:00
Generation: derive language-prefix detection from project blogLanguages, not a hardcoded set