feat: update UI labels and remove unused config for mosaic cover
Made-with: Cursor
This commit is contained in:
@@ -14,5 +14,3 @@ FETCH_INTERVAL_HOURS = 1
|
|||||||
IMAGE_MAX_LANDSCAPE = (800, 480)
|
IMAGE_MAX_LANDSCAPE = (800, 480)
|
||||||
IMAGE_MAX_PORTRAIT = (480, 800)
|
IMAGE_MAX_PORTRAIT = (480, 800)
|
||||||
COVER_SIZE = (480, 800)
|
COVER_SIZE = (480, 800)
|
||||||
|
|
||||||
POLLINATIONS_URL = "https://image.pollinations.ai/prompt/{prompt}?width=480&height=800&nologo=true"
|
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
<div id="weekly-checkboxes"></div>
|
<div id="weekly-checkboxes"></div>
|
||||||
<div class="publish-actions">
|
<div class="publish-actions">
|
||||||
<select name="cover_method">
|
<select name="cover_method">
|
||||||
<option value="ai">AI Cover (themed)</option>
|
<option value="mosaic">Mosaic Cover</option>
|
||||||
<option value="text">Text Cover</option>
|
<option value="text">Text Cover</option>
|
||||||
</select>
|
</select>
|
||||||
<button type="submit">Generate Issue</button>
|
<button type="submit">Generate Issue</button>
|
||||||
@@ -88,7 +88,7 @@
|
|||||||
<div id="multi-checkboxes"></div>
|
<div id="multi-checkboxes"></div>
|
||||||
<div class="publish-actions">
|
<div class="publish-actions">
|
||||||
<select name="cover_method">
|
<select name="cover_method">
|
||||||
<option value="ai">AI Cover (themed)</option>
|
<option value="mosaic">Mosaic Cover</option>
|
||||||
<option value="text">Text Cover</option>
|
<option value="text">Text Cover</option>
|
||||||
</select>
|
</select>
|
||||||
<button type="submit">Generate Issue</button>
|
<button type="submit">Generate Issue</button>
|
||||||
@@ -119,7 +119,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="publish-actions">
|
<div class="publish-actions">
|
||||||
<select name="cover_method">
|
<select name="cover_method">
|
||||||
<option value="ai">AI Cover (themed)</option>
|
<option value="mosaic">Mosaic Cover</option>
|
||||||
<option value="text">Text Cover</option>
|
<option value="text">Text Cover</option>
|
||||||
</select>
|
</select>
|
||||||
<button type="submit">Generate Single Issue</button>
|
<button type="submit">Generate Single Issue</button>
|
||||||
|
|||||||
@@ -45,8 +45,8 @@
|
|||||||
<label>
|
<label>
|
||||||
Cover
|
Cover
|
||||||
<select name="auto_publish_cover">
|
<select name="auto_publish_cover">
|
||||||
<option value="ai" {% if auto_publish and auto_publish.cover_method == 'ai' %}selected{% endif %}>AI</option>
|
<option value="mosaic" {% if auto_publish and auto_publish.cover_method == 'mosaic' %}selected{% endif %}>Mosaic Cover</option>
|
||||||
<option value="text" {% if not auto_publish or auto_publish.cover_method == 'text' %}selected{% endif %}>Text</option>
|
<option value="text" {% if not auto_publish or auto_publish.cover_method == 'text' %}selected{% endif %}>Text Cover</option>
|
||||||
</select>
|
</select>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user