1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-19 12:59:36 +02:00

feat: add Discord link to AboutModal and update appVersion in config

This commit is contained in:
Sean Morley 2025-07-14 19:19:42 -04:00
parent d53991e3f9
commit 31eb7fb734
3 changed files with 11 additions and 2 deletions

View file

@ -215,6 +215,15 @@
> >
{$t('navbar.documentation')} {$t('navbar.documentation')}
</a> </a>
<!-- discord -->
<a
href="https://discord.gg/wRbQ9Egr8C"
target="_blank"
rel="noopener noreferrer"
class="btn btn-outline btn-sm"
>
Discord →
</a>
</div> </div>
</div> </div>
</div> </div>

View file

@ -233,7 +233,7 @@
{/if} {/if}
<!-- Creator Avatar --> <!-- Creator Avatar -->
{#if adventure.user} {#if adventure.user && collection}
<div class="absolute bottom-4 right-4"> <div class="absolute bottom-4 right-4">
<div class="tooltip tooltip-left" data-tip={creatorDisplayName}> <div class="tooltip tooltip-left" data-tip={creatorDisplayName}>
<div class="avatar"> <div class="avatar">

View file

@ -1,4 +1,4 @@
export let appVersion = 'v0.10.0-main-06252025'; export let appVersion = 'v0.10.0-main-07142025';
export let versionChangelog = 'https://github.com/seanmorley15/AdventureLog/releases/tag/v0.10.0'; export let versionChangelog = 'https://github.com/seanmorley15/AdventureLog/releases/tag/v0.10.0';
export let appTitle = 'AdventureLog'; export let appTitle = 'AdventureLog';
export let copyrightYear = '2023-2025'; export let copyrightYear = '2023-2025';