chore: bump version to 2.10.8 and adjust UI styling for scraping settings

This commit is contained in:
jxxghp
2026-04-29 17:10:36 +08:00
parent 24b763d808
commit fc9fe5e21e
3 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "moviepilot", "name": "moviepilot",
"version": "2.10.7", "version": "2.10.8",
"private": true, "private": true,
"type": "module", "type": "module",
"bin": "dist/service.js", "bin": "dist/service.js",

View File

@@ -161,7 +161,6 @@ html.v-overlay-scroll-blocked body {
display: flex; display: flex;
align-items: flex-end; align-items: flex-end;
justify-content: flex-end; justify-content: flex-end;
filter: brightness(1.35) saturate(1.05);
inset-block-end: 0.75rem; inset-block-end: 0.75rem;
inset-inline-end: 1rem; inset-inline-end: 1rem;
pointer-events: none; pointer-events: none;

View File

@@ -1463,7 +1463,7 @@ watch(currentLlmSnapshotKey, (snapshotKey, previousSnapshotKey) => {
</VExpansionPanelTitle> </VExpansionPanelTitle>
<VExpansionPanelText> <VExpansionPanelText>
<VRow v-for="section in scrapingConfig" :key="section.section"> <VRow v-for="section in scrapingConfig" :key="section.section">
<VCol cols="12" class="pb-2"> <VCol cols="12">
<VListSubheader class="text-lg"> <VListSubheader class="text-lg">
{{ t(`setting.system.${section.section}`) }} {{ t(`setting.system.${section.section}`) }}
</VListSubheader> </VListSubheader>
@@ -1475,15 +1475,16 @@ watch(currentLlmSnapshotKey, (snapshotKey, previousSnapshotKey) => {
@update:model-value="ScrapingPolicies[item.key] = $event" @update:model-value="ScrapingPolicies[item.key] = $event"
color="primary" color="primary"
variant="tonal" variant="tonal"
size="small"
rounded="lg" rounded="lg"
> >
<VBtn value="skip" color="error"> <VBtn value="skip" color="error" size="small">
<VIcon icon="mdi-file-remove" /> <VIcon icon="mdi-file-remove" />
</VBtn> </VBtn>
<VBtn value="missingOnly" color="success"> <VBtn value="missingOnly" color="success" size="small">
<VIcon icon="mdi-file-plus" /> <VIcon icon="mdi-file-plus" />
</VBtn> </VBtn>
<VBtn value="overwrite" color="primary"> <VBtn value="overwrite" color="primary" size="small">
<VIcon icon="mdi-file-replace" /> <VIcon icon="mdi-file-replace" />
</VBtn> </VBtn>
</VBtnToggle> </VBtnToggle>