Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
Armaldio committed Sep 17, 2024
1 parent 4d5c638 commit 80b8875
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions src/components/DownloadCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@
<span class="text-4xl mr-2">
<Icon height="22" :icon="getOsIcon(os)" /></span>
<h2 class="text-2xl font-semibold">{{ os }}</h2>
<span
v-if="os === 'Windows'"
class="ml-2 px-2 py-1 bg-yellow-100 text-yellow-900 text-xs border-round"
>Unsigned</span
>
</div>
<div
v-for="option in options"
Expand Down
4 changes: 2 additions & 2 deletions src/views/download.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<DownloadCard os="Linux" :options="linuxOptions" />
</div>
<div class="flex flex-column text-center justify-content-center mt-8">
<p>Looking for older versions?</p>
<p>Looking for beta or older versions?</p>
<a href="https://github.com/CynToolkit/cyn/releases"
>Check the releases page</a
>
Expand All @@ -32,7 +32,7 @@ import { isAfter } from "date-fns";
const macOptions = computed(() => ([
{ label: ".dmg (arm64)", value: release.value?.assets.find(asset => asset.name.includes("arm64.dmg"))?.browser_download_url },
{ label: ".dmg", value: release.value?.assets.find(asset => asset.name.includes("arm64.dmg"))?.browser_download_url },
{ label: ".zip", value: release.value?.assets.find(asset => asset.name.includes("darwin-arm64"))?.browser_download_url }
]));
Expand Down

0 comments on commit 80b8875

Please sign in to comment.