2024-07-08 11:44:39 -04:00
|
|
|
<script lang="ts">
|
|
|
|
import { createEventDispatcher } from 'svelte';
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
import { onMount } from 'svelte';
|
|
|
|
let modal: HTMLDialogElement;
|
|
|
|
import { appVersion, copyrightYear, versionChangelog } from '$lib/config';
|
|
|
|
|
|
|
|
onMount(() => {
|
|
|
|
modal = document.getElementById('my_modal_1') as HTMLDialogElement;
|
|
|
|
if (modal) {
|
|
|
|
modal.showModal();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
dispatch('close');
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleKeydown(event: KeyboardEvent) {
|
|
|
|
if (event.key === 'Escape') {
|
|
|
|
dispatch('close');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<dialog id="my_modal_1" class="modal">
|
|
|
|
<!-- svelte-ignore a11y-no-noninteractive-element-interactions -->
|
|
|
|
<!-- svelte-ignore a11y-no-noninteractive-tabindex -->
|
|
|
|
<div class="modal-box" role="dialog" on:keydown={handleKeydown} tabindex="0">
|
2024-09-06 19:06:24 -04:00
|
|
|
<h3 class="font-bold text-lg">
|
|
|
|
About AdventureLog<span class=" inline-block"
|
|
|
|
><img src="/favicon.png" alt="Map Logo" class="w-10 -mb-3 ml-2" /></span
|
|
|
|
>
|
|
|
|
</h3>
|
2024-07-08 11:44:39 -04:00
|
|
|
<p class="py-1">
|
|
|
|
AdventureLog <a
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
class="text-primary-500 underline"
|
|
|
|
href={versionChangelog}>{appVersion}</a
|
|
|
|
>
|
|
|
|
</p>
|
|
|
|
<p class="py-1">
|
|
|
|
© {copyrightYear}
|
|
|
|
<a
|
|
|
|
href="https://github.com/seanmorley15"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
class="text-primary-500 underline">Sean Morley</a
|
|
|
|
>
|
|
|
|
</p>
|
2024-08-15 16:45:37 -04:00
|
|
|
<p class="py-1">Licensed under the GPL-3.0 License.</p>
|
2024-07-08 11:44:39 -04:00
|
|
|
<p class="py-1">
|
|
|
|
<a
|
|
|
|
href="https://github.com/seanmorley15/AdventureLog"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
class="text-primary-500 underline">Source Code</a
|
|
|
|
>
|
|
|
|
</p>
|
|
|
|
<p class="py-1">Made with ❤️ in the United States.</p>
|
2024-07-22 11:06:48 -04:00
|
|
|
<div class="divider"></div>
|
|
|
|
<h3 class="font-bold text-md">Open Source Attributions</h3>
|
|
|
|
<p class="py-1 mb-4">
|
|
|
|
Location Search and Geocoding is provided by <a
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
class="text-primary-500 underline"
|
|
|
|
href="https://operations.osmfoundation.org/policies/nominatim/">OpenStreepMap</a
|
2024-08-15 16:42:31 -04:00
|
|
|
>. Their data is liscensed under the ODbL license.
|
2024-08-01 09:38:02 -04:00
|
|
|
<br /> Additional attributions can be found in the README file.
|
2024-07-22 11:06:48 -04:00
|
|
|
</p>
|
|
|
|
|
2024-07-08 11:44:39 -04:00
|
|
|
<button class="btn btn-primary" on:click={close}>Close</button>
|
|
|
|
</div>
|
|
|
|
</dialog>
|