Skip to content

Commit cf4d097

Browse files
committed
v1.5.61 - tweaking batch edits
1 parent 1a412b0 commit cf4d097

File tree

4 files changed

+14
-35
lines changed

4 files changed

+14
-35
lines changed

frontend/src/releaseNotes.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export interface ReleaseNote {
1010
// Update this array with each release. Keep the last ~5 versions for users who skip updates.
1111
export const releaseNotes: ReleaseNote[] = [
1212
{
13-
version: 'v1.5.6',
13+
version: 'v1.5.61',
1414
date: '2026-03-05',
1515
sections: [
1616
{
@@ -19,6 +19,15 @@ export const releaseNotes: ReleaseNote[] = [
1919
'Added "Include Series Poster" checkbox — independently control whether the series-level poster is generated during a batch run',
2020
'Series Poster and Include Seasons can now be toggled independently: generate series only, seasons only, or both',
2121
'"Include Series Poster" defaults to checked; "Include Seasons" defaults to unchecked (matching previous behavior)',
22+
'Preview correctly shows the first season when "Include Series Poster" is unchecked — no longer defaults to series poster',
23+
]
24+
},
25+
{
26+
title: 'Code Cleanup',
27+
items: [
28+
'Removed dead template selector block (v-if="false") from both Batch Edit views',
29+
'Removed unused defineProps/defineEmits from TV Batch Edit',
30+
'Fixed log prefix in TV Batch Edit — was incorrectly logging as [BatchEdit]',
2231
]
2332
}
2433
]

frontend/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Global app version badge
2-
export const APP_VERSION = 'v1.5.6'
2+
export const APP_VERSION = 'v1.5.61'

frontend/src/views/BatchEditView.vue

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -970,17 +970,6 @@ onMounted(async () => {
970970

971971
<!-- Template & Preset Selection -->
972972
<div class="selection-row template-row">
973-
<!-- Template selector hidden - only uniformlogo template exists -->
974-
<div v-if="false" class="form-group">
975-
<label>Template</label>
976-
<select v-model="selectedTemplate" class="form-control">
977-
<option value="">Select a template...</option>
978-
<option v-for="tpl in templates" :key="tpl.id" :value="tpl.id">
979-
{{ tpl.name }}
980-
</option>
981-
</select>
982-
</div>
983-
984973
<div class="form-group">
985974
<label>Preset</label>
986975
<select v-model="selectedPreset" class="form-control">

frontend/src/views/TvBatchEditView.vue

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,6 @@ import { useNotification } from '@/composables/useNotification'
66
import { useTvShows } from '../composables/useTvShows'
77
import { useSettingsStore } from '@/stores/settings'
88
9-
// Define props and emits to avoid Vue warnings
10-
defineProps<{
11-
search?: string
12-
}>()
13-
14-
defineEmits<{
15-
select: [value: any]
16-
}>()
179
1810
type TvShow = {
1911
key: string
@@ -480,11 +472,11 @@ const fetchLabelsFromCache = async () => {
480472
}
481473
})
482474
483-
console.log(`[BatchEdit] Loaded ${labelsFound} label sets from backend cache for library ${currentLibrary.value}`)
475+
console.log(`[TvBatchEdit] Loaded ${labelsFound} label sets from backend cache for library ${currentLibrary.value}`)
484476
saveLabelCache()
485477
}
486478
} catch (e) {
487-
console.warn('[BatchEdit] Failed to load labels from cache:', e)
479+
console.warn('[TvBatchEdit] Failed to load labels from cache:', e)
488480
}
489481
}
490482
@@ -513,7 +505,7 @@ const fetchLabels = async (list: TvShow[]) => {
513505
labelInFlight.delete(movieKey)
514506
})
515507
saveLabelCache()
516-
console.log(`[BatchEdit] Loaded ${Object.keys(bulkData.labels || {}).length} label sets via bulk endpoint`)
508+
console.log(`[TvBatchEdit] Loaded ${Object.keys(bulkData.labels || {}).length} label sets via bulk endpoint`)
517509
return
518510
}
519511
}
@@ -1472,17 +1464,6 @@ onMounted(async () => {
14721464

14731465
<!-- Template & Preset Selection -->
14741466
<div class="selection-row template-row">
1475-
<!-- Template selector hidden - only uniformlogo template exists -->
1476-
<div v-if="false" class="form-group">
1477-
<label>Template</label>
1478-
<select v-model="selectedTemplate" class="form-control">
1479-
<option value="">Select a template...</option>
1480-
<option v-for="tpl in templates" :key="tpl.id" :value="tpl.id">
1481-
{{ tpl.name }}
1482-
</option>
1483-
</select>
1484-
</div>
1485-
14861467
<div class="form-group">
14871468
<label>Preset</label>
14881469
<select v-model="selectedPreset" class="form-control">

0 commit comments

Comments
 (0)