chore: update package.json version to 1.9.14-1

This commit is contained in:
jxxghp
2024-08-12 18:13:47 +08:00
parent 0c72d026f6
commit 84deeff4f5
4 changed files with 25 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "moviepilot", "name": "moviepilot",
"version": "1.9.14", "version": "1.9.14-1",
"private": true, "private": true,
"bin": "dist/service.js", "bin": "dist/service.js",
"scripts": { "scripts": {
+13 -4
View File
@@ -171,15 +171,24 @@ const dropdownItems = ref([
</VMenu> </VMenu>
</IconBtn> </IconBtn>
</div> </div>
<div class="flex flex-row items-start pa-3 justify-between grow" :style="{ background: `${backgroundColor}` }"> <div
<div class="flex-1 min-w-0"> class="relative flex flex-row items-start pa-3 justify-between grow"
:style="{ background: `${backgroundColor}` }"
>
<div
class="absolute inset-0 bg-cover bg-center"
:style="{ background: `${backgroundColor}`, filter: 'brightness(0.7)' }"
></div>
<div class="relative flex-1 min-w-0">
<VCardTitle class="text-white px-2 text-shadow whitespace-nowrap overflow-hidden text-ellipsis"> <VCardTitle class="text-white px-2 text-shadow whitespace-nowrap overflow-hidden text-ellipsis">
{{ props.plugin?.plugin_name }} {{ props.plugin?.plugin_name }}
<span class="text-sm text-gray-200">v{{ props.plugin?.plugin_version }}</span> <span class="text-sm text-gray-200">v{{ props.plugin?.plugin_version }}</span>
</VCardTitle> </VCardTitle>
<VCardText class="text-white px-2 py-1 text-shadow line-clamp-3">{{ props.plugin?.plugin_desc }}</VCardText> <VCardText class="text-white px-2 py-1 text-shadow line-clamp-3">
{{ props.plugin?.plugin_desc }}
</VCardText>
</div> </div>
<div class="flex-shrink-0 self-center"> <div class="relative flex-shrink-0 self-center">
<VAvatar size="64"> <VAvatar size="64">
<VImg <VImg
ref="imageRef" ref="imageRef"
+10 -3
View File
@@ -408,8 +408,15 @@ watch(
</VMenu> </VMenu>
</IconBtn> </IconBtn>
</div> </div>
<div class="flex flex-row items-start pa-3 justify-between grow" :style="{ background: `${backgroundColor}` }"> <div
<div class="flex-1 min-w-0"> class="relative flex flex-row items-start pa-3 justify-between grow"
:style="{ background: `${backgroundColor}` }"
>
<div
class="absolute inset-0 bg-cover bg-center"
:style="{ background: `${backgroundColor}`, filter: 'brightness(0.7)' }"
/>
<div class="relative flex-1 min-w-0">
<VCardTitle class="text-white px-2 text-shadow whitespace-nowrap overflow-hidden text-ellipsis"> <VCardTitle class="text-white px-2 text-shadow whitespace-nowrap overflow-hidden text-ellipsis">
<VBadge v-if="props.plugin?.state" dot inline color="success" /> <VBadge v-if="props.plugin?.state" dot inline color="success" />
{{ props.plugin?.plugin_name }} {{ props.plugin?.plugin_name }}
@@ -419,7 +426,7 @@ watch(
{{ props.plugin?.plugin_desc }} {{ props.plugin?.plugin_desc }}
</VCardText> </VCardText>
</div> </div>
<div class="flex-shrink-0 self-center"> <div class="relative flex-shrink-0 self-center">
<VAvatar size="64"> <VAvatar size="64">
<VImg <VImg
ref="imageRef" ref="imageRef"
+1 -1
View File
@@ -156,7 +156,7 @@
} }
.grid-plugin-card { .grid-plugin-card {
grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
padding-block-end: 1rem; padding-block-end: 1rem;
} }