diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-06 16:29:21 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-06 16:29:21 +0300 |
| commit | 4721d82036bf572b927c36b1df5f3202236d4471 (patch) | |
| tree | 259fa8025b14b7bb9ca0b55ec6211273cbde9cc0 /internal/cli/flags.go | |
| parent | df87a6af7bf1beea8dcc8bbeb5f299025cb2e8f4 (diff) | |
feat: add --ultra-realistic flag to force photorealistic rendering, v0.24.0v0.24.0
Previously only --no-ultra-realistic existed (to force standard comic style).
--ultra-realistic now forces photorealistic panels instead of the random 50/50 pick.
storyUltraRealistic() updated to handle three states: forced-on, forced-off, random.
README updated with --ultra-realistic example.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/cli/flags.go')
| -rw-r--r-- | internal/cli/flags.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/cli/flags.go b/internal/cli/flags.go index 7e1cdbc..a343767 100644 --- a/internal/cli/flags.go +++ b/internal/cli/flags.go @@ -24,6 +24,7 @@ type Flags struct { StoryStyle string // --story-style: override the random art style (empty = random) StoryTheme string // --story-theme: override the random genre pick (empty = random) StoryNoUltraRealistic bool // --no-ultra-realistic: disable photorealistic rendering requirement + StoryUltraRealistic bool // --ultra-realistic: force photorealistic rendering (overrides random 50/50) StorySlug string // --story-slug: force a specific output slug/directory (empty = auto from title) NarratorVoice string // --narrator-voice: Gemini voice for cinematic narration (empty = random) NarrateEnabled bool // --narrate: generate cinematic MP3 narration after --story (default false) |
