Skip to content

Commit 4edf3aa

Browse files
chore(web): change download channel from nightly to stable (#2800)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: john@hyprnote.com <john@hyprnote.com>
1 parent 441645f commit 4edf3aa

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

apps/web/src/routes/_view/download/apple-intel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createFileRoute, redirect } from "@tanstack/react-router";
33
export const Route = createFileRoute("/_view/download/apple-intel")({
44
beforeLoad: async () => {
55
throw redirect({
6-
href: "https://desktop2.hyprnote.com/download/latest/dmg-x86_64?channel=nightly",
6+
href: "https://desktop2.hyprnote.com/download/latest/dmg-x86_64?channel=stable",
77
});
88
},
99
});

apps/web/src/routes/_view/download/apple-silicon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createFileRoute, redirect } from "@tanstack/react-router";
33
export const Route = createFileRoute("/_view/download/apple-silicon")({
44
beforeLoad: async () => {
55
throw redirect({
6-
href: "https://desktop2.hyprnote.com/download/latest/dmg-aarch64?channel=nightly",
6+
href: "https://desktop2.hyprnote.com/download/latest/dmg-aarch64?channel=stable",
77
});
88
},
99
});

apps/web/src/routes/_view/download/linux-appimage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createFileRoute, redirect } from "@tanstack/react-router";
33
export const Route = createFileRoute("/_view/download/linux-appimage")({
44
beforeLoad: async () => {
55
throw redirect({
6-
href: "https://desktop2.hyprnote.com/download/latest/appimage-x86_64?channel=nightly",
6+
href: "https://desktop2.hyprnote.com/download/latest/appimage-x86_64?channel=stable",
77
});
88
},
99
});

apps/web/src/routes/_view/download/linux-deb.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createFileRoute, redirect } from "@tanstack/react-router";
33
export const Route = createFileRoute("/_view/download/linux-deb")({
44
beforeLoad: async () => {
55
throw redirect({
6-
href: "https://desktop2.hyprnote.com/download/latest/deb-x86_64?channel=nightly",
6+
href: "https://desktop2.hyprnote.com/download/latest/deb-x86_64?channel=stable",
77
});
88
},
99
});

apps/web/src/routes/_view/download/windows.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const Route = createFileRoute("/_view/download/windows")({
44
beforeLoad: async () => {
55
throw redirect({
66
// TODO: needs to be fixed
7-
href: "https://desktop2.hyprnote.com/download/latest/msi?channel=nightly",
7+
href: "https://desktop2.hyprnote.com/download/latest/msi?channel=stable",
88
});
99
},
1010
});

0 commit comments

Comments
 (0)