2024-02-23 08:30:26 +00:00
|
|
|
|
<script lang="ts">
|
2024-03-02 20:38:51 +00:00
|
|
|
|
import { onMount, getContext } from 'svelte';
|
2024-02-23 08:30:26 +00:00
|
|
|
|
import { Confetti } from 'svelte-confetti';
|
2024-02-23 08:47:54 +00:00
|
|
|
|
|
2024-02-24 01:12:19 +00:00
|
|
|
|
import { WEBUI_NAME, config } from '$lib/stores';
|
2024-02-23 08:47:54 +00:00
|
|
|
|
|
2024-02-24 01:12:19 +00:00
|
|
|
|
import { WEBUI_VERSION } from '$lib/constants';
|
2024-02-23 08:30:26 +00:00
|
|
|
|
import { getChangelog } from '$lib/apis';
|
|
|
|
|
|
2024-02-23 08:47:54 +00:00
|
|
|
|
import Modal from './common/Modal.svelte';
|
|
|
|
|
|
2024-03-02 20:38:51 +00:00
|
|
|
|
const i18n = getContext('i18n');
|
|
|
|
|
|
2024-02-23 08:30:26 +00:00
|
|
|
|
export let show = false;
|
|
|
|
|
|
|
|
|
|
let changelog = null;
|
|
|
|
|
|
|
|
|
|
onMount(async () => {
|
|
|
|
|
const res = await getChangelog();
|
|
|
|
|
changelog = res;
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<Modal bind:show>
|
|
|
|
|
<div class="px-5 py-4 dark:text-gray-300">
|
|
|
|
|
<div class="flex justify-between items-start">
|
|
|
|
|
<div class="text-xl font-bold">
|
2024-03-04 08:53:56 +00:00
|
|
|
|
{$i18n.t('What’s New in')}
|
|
|
|
|
{$WEBUI_NAME}
|
2024-02-23 09:18:30 +00:00
|
|
|
|
<Confetti x={[-1, -0.25]} y={[0, 0.5]} />
|
2024-02-23 08:30:26 +00:00
|
|
|
|
</div>
|
|
|
|
|
<button
|
|
|
|
|
class="self-center"
|
|
|
|
|
on:click={() => {
|
2024-04-16 21:01:12 +00:00
|
|
|
|
localStorage.version = $config.version;
|
2024-02-23 08:30:26 +00:00
|
|
|
|
show = false;
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
viewBox="0 0 20 20"
|
|
|
|
|
fill="currentColor"
|
|
|
|
|
class="w-5 h-5"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2024-02-23 09:18:30 +00:00
|
|
|
|
<div class="flex items-center mt-1">
|
2024-03-02 20:38:51 +00:00
|
|
|
|
<div class="text-sm dark:text-gray-200">{$i18n.t('Release Notes')}</div>
|
2024-02-23 08:30:26 +00:00
|
|
|
|
<div class="flex self-center w-[1px] h-6 mx-2.5 bg-gray-200 dark:bg-gray-700" />
|
|
|
|
|
<div class="text-sm dark:text-gray-200">
|
2024-02-24 01:12:19 +00:00
|
|
|
|
v{WEBUI_VERSION}
|
2024-02-23 08:30:26 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-02-23 09:18:30 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<hr class=" dark:border-gray-800" />
|
|
|
|
|
|
|
|
|
|
<div class=" w-full p-4 px-5">
|
2024-02-23 08:30:26 +00:00
|
|
|
|
<div class=" overflow-y-scroll max-h-80">
|
2024-02-23 09:18:30 +00:00
|
|
|
|
<div class="mb-3">
|
2024-02-23 08:30:26 +00:00
|
|
|
|
{#if changelog}
|
|
|
|
|
{#each Object.keys(changelog) as version}
|
2024-02-23 09:31:28 +00:00
|
|
|
|
<div class=" mb-3 pr-2">
|
|
|
|
|
<div class="font-bold text-xl mb-1 dark:text-white">
|
|
|
|
|
v{version} - {changelog[version].date}
|
|
|
|
|
</div>
|
2024-02-23 08:30:26 +00:00
|
|
|
|
|
2024-02-23 09:31:28 +00:00
|
|
|
|
<hr class=" dark:border-gray-800 my-2" />
|
2024-02-23 09:18:30 +00:00
|
|
|
|
|
2024-02-23 09:31:28 +00:00
|
|
|
|
{#each Object.keys(changelog[version]).filter((section) => section !== 'date') as section}
|
|
|
|
|
<div class="">
|
|
|
|
|
<div
|
|
|
|
|
class="font-bold uppercase text-xs {section === 'added'
|
|
|
|
|
? 'text-white bg-blue-600'
|
|
|
|
|
: section === 'fixed'
|
|
|
|
|
? 'text-white bg-green-600'
|
|
|
|
|
: section === 'changed'
|
|
|
|
|
? 'text-white bg-yellow-600'
|
|
|
|
|
: section === 'removed'
|
|
|
|
|
? 'text-white bg-red-600'
|
2024-02-23 09:32:32 +00:00
|
|
|
|
: ''} w-fit px-3 rounded-full my-2.5"
|
2024-02-23 09:31:28 +00:00
|
|
|
|
>
|
|
|
|
|
{section}
|
|
|
|
|
</div>
|
2024-02-23 08:30:26 +00:00
|
|
|
|
|
2024-02-23 09:32:32 +00:00
|
|
|
|
<div class="my-2.5 px-1.5">
|
2024-02-23 09:31:28 +00:00
|
|
|
|
{#each Object.keys(changelog[version][section]) as item}
|
|
|
|
|
<div class="text-sm mb-2">
|
|
|
|
|
<div class="font-semibold uppercase">
|
|
|
|
|
{changelog[version][section][item].title}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-2 mt-1">{changelog[version][section][item].content}</div>
|
2024-02-23 08:30:26 +00:00
|
|
|
|
</div>
|
2024-02-23 09:31:28 +00:00
|
|
|
|
{/each}
|
|
|
|
|
</div>
|
2024-02-23 08:30:26 +00:00
|
|
|
|
</div>
|
2024-02-23 09:31:28 +00:00
|
|
|
|
{/each}
|
|
|
|
|
</div>
|
2024-02-23 08:30:26 +00:00
|
|
|
|
{/each}
|
|
|
|
|
{/if}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex justify-end pt-3 text-sm font-medium">
|
|
|
|
|
<button
|
|
|
|
|
on:click={() => {
|
2024-02-23 08:47:54 +00:00
|
|
|
|
localStorage.version = $config.version;
|
2024-02-23 08:30:26 +00:00
|
|
|
|
show = false;
|
|
|
|
|
}}
|
2024-04-28 01:20:43 +00:00
|
|
|
|
class=" px-4 py-2 bg-emerald-700 hover:bg-emerald-800 text-gray-100 transition rounded-lg"
|
2024-02-23 08:30:26 +00:00
|
|
|
|
>
|
2024-03-02 20:38:51 +00:00
|
|
|
|
<span class="relative">{$i18n.t("Okay, Let's Go!")}</span>
|
2024-02-23 08:30:26 +00:00
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</Modal>
|