Skip to content

Commit

Permalink
Update version to mono
Browse files Browse the repository at this point in the history
  • Loading branch information
dtcooper committed Aug 9, 2024
1 parent 3640628 commit 10484ae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 5 additions & 2 deletions client/src/Login.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,15 @@
>{#if demoMode}Try Demo{:else}Login{/if}</button
>
</div>
<div class="text-center text-xs">
<div class="text-center text-sm">
<a class="link-hover link link-secondary" href="https://dtcooper.github.io/tomato/" tabindex="-1"
>Tomato Radio Automation</a
>,
<!-- svelte-ignore missing-declaration-->
version: {TOMATO_VERSION} / protocol: {protocolVersion}
version:
<span class="select-text font-mono">{TOMATO_VERSION}</span>
/ protocol:
<span class="select-text font-mono">{protocolVersion}</span>
<br />
Copyright &copy; 2019-{dayjs().year()}
<a class="link-hover link link-secondary" href="https://jew.pizza/" tabindex="-1">David Cooper</a>
Expand Down
5 changes: 4 additions & 1 deletion client/src/main/modals/Settings.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,10 @@

<div class="flex justify-end text-lg font-bold">Version:</div>
<!-- svelte-ignore missing-declaration-->
<div class="text-md w-max">{TOMATO_VERSION} / protocol: {protocolVersion}</div>
<div class="text-md w-max">
<span class="select-text font-mono">{TOMATO_VERSION}</span> / protocol:
<span class="select-text font-mono">{protocolVersion}</span>
</div>
<hr class="divider col-span-2 m-0 h-0 p-0" />

<div class="col-span-2 flex justify-center">
Expand Down

0 comments on commit 10484ae

Please sign in to comment.