diff --git a/src/assets/js/releaseData.ts b/src/assets/js/releaseData.ts index 79e423e..110bc40 100644 --- a/src/assets/js/releaseData.ts +++ b/src/assets/js/releaseData.ts @@ -97,6 +97,91 @@ export const audacityReleases: ReleaseDirectory = { ], }; +export const betaReleases: ReleaseDirectory = { + /*Insert release here */ + version: "3.5.0 beta", + win: [ + { + name: "64 bit installer (recommended)", + browser_download_url: + "https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-win-3.4.2-64bit.exe", + checksum: + "d7bd5ae775db9e42da6058da4a65a8f898a46ce467d9f21585084566213c36bf", + type: ".exe", + }, + { + name: "64 bit zip file", + browser_download_url: + "https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-win-3.4.2-64bit.zip", + checksum: + "0df85eda8b79ebcceca673a7f7dec32c4fcb4625342b91995217f3124b57f7d4", + type: ".zip", + }, + { + name: "32 bit installer", + browser_download_url: + "https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-win-3.4.2-32bit.exe", + checksum: + "7f7dd6f96643a1a826d1c91a5217721f97474f171a6335c47d4c50a76c7aceaa", + type: ".exe", + }, + { + name: "32 bit zip file", + browser_download_url: + "https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-win-3.4.2-32bit.zip", + checksum: + "9b9fceae802e76f5c91b42074331094c1fb90b9f519bee196f40aeb1ee863ce5", + type: ".zip", + }, + ], + mac: [ + { + name: "Universal dmg (recommended)", + browser_download_url: + "https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-macOS-3.4.2-universal.dmg", + checksum: + "4b23b5e0f1cbc7c7d33d1d9cecd6a163d0d89ccb5aadeb8901c96616d8e5565d", + type: ".dmg", + }, + { + name: "ARM 64 dmg (Apple Silicon)", + browser_download_url: + "https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-macOS-3.4.2-arm64.dmg", + checksum: + "01946a56dc45acc01d693fd3b7e7d2325e6adb4f052253bc94fe7e7b272d5791", + type: ".dmg", + }, + { + name: "x86_64 dmg (Intel)", + browser_download_url: + "https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-macOS-3.4.2-x86_64.dmg", + checksum: + "70400941a153815f803ab436d23c08f29dbb80f7777ab21134663539727307b7", + type: ".dmg", + }, + ], + lin: [ + { + name: "AppImage", + browser_download_url: + "https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-linux-3.4.2-x64.AppImage", + checksum: + "d3a3695b02f99934b24b0d7587cbc4544676d9244fa2b65e63d3d8245c71d1e5", + type: ".AppImage", + }, + ], + src: [ + { + name: "Source code", + browser_download_url: + "https://github.com/audacity/audacity/releases/download/Audacity-3.4.2/audacity-sources-3.4.2.tar.gz", + checksum: + "f28dd718d2c5a2aa9f207b8351443a90c1f02b65378ca94bcc7febda42635e48", + type: ".tar.gz", + }, + ], +}; + type MuseHubReleaseInfo = Pick; type MuseHubReleaseDirectory = { diff --git a/src/components/beta/Explanation.astro b/src/components/beta/Explanation.astro new file mode 100644 index 0000000..f07023a --- /dev/null +++ b/src/components/beta/Explanation.astro @@ -0,0 +1,36 @@ +
+ +

What to look out for

+

+ We are looking for feedback on our new features in this release. In + particular: +

+ +

Give us your feedback!

+

+ We're always eager to hear what you have to say, but it's especially + important we hear from you during the beta phase. Please let us know + what you think, using the following places: +

+ +

And with all that out of the way: Happy testing!

+
\ No newline at end of file diff --git a/src/components/beta/banner.astro b/src/components/beta/banner.astro new file mode 100644 index 0000000..b17b82e --- /dev/null +++ b/src/components/beta/banner.astro @@ -0,0 +1,3 @@ +
+ A new beta is available! Try it now! +
\ No newline at end of file diff --git a/src/pages/beta.astro b/src/pages/beta.astro new file mode 100644 index 0000000..bdc496f --- /dev/null +++ b/src/pages/beta.astro @@ -0,0 +1,115 @@ +--- +import BaseLayout from "../layouts/BaseLayout.astro"; +import OperatingSystemCard from "../components/card/OperatingSystemCard"; +import "../styles/icons.css"; +import { betaReleases } from "../assets/js/releaseData"; +import ChecksumAccordion from "../components/accordion/ChecksumAccordion"; +import Explanation from "../components/beta/Explanation.astro"; + +const { version, src } = betaReleases; +--- + + +
+
+
+

Audacity Betas

+
+

Version: {version}

+ + View changelog +
+
+ + + +
+

+ Download for +

+
+ + + +
+
+ +
+
+
diff --git a/src/pages/beta/linux.astro b/src/pages/beta/linux.astro new file mode 100644 index 0000000..399a603 --- /dev/null +++ b/src/pages/beta/linux.astro @@ -0,0 +1,50 @@ +--- +import DownloadPageLayout from "../../layouts/DownloadPageLayout.astro"; +import { betaReleases } from "../../assets/js/releaseData"; +import Explanation from "../../components/beta/Explanation.astro"; + +const { lin, version } = betaReleases; +--- + + + +

About these downloads

+

System requirements

+

+ Audacity is tested on Ubuntu 22.04 and should work on most major + distributions. Audacity has no specific CPU or GPU requirements and should + be able to run on any amd64-based computer. The AppImage requires FUSE 2 to run. +

+ Note: Audacity requires fast, uninterrupted access to a hard + drive or SSD to operate. Network storage, consumer-grade external hard drives + or USB thumbdrives may be unreliable. +

+ +

Other versions of Audacity

+

+ You can download older versions of Audacity on Fosshub.

+ Note that prior to Audacity 3.0.3, the Audacity team did not release any binaries + themselves. +

+

+ In addition to our releases, the Linux community has alternative releases + (such as debs, rpms or flatpacks) available which may have + distribution-specific patches applied to them. +

+
diff --git a/src/pages/beta/mac.astro b/src/pages/beta/mac.astro new file mode 100644 index 0000000..3204a28 --- /dev/null +++ b/src/pages/beta/mac.astro @@ -0,0 +1,50 @@ +--- +import DownloadPageLayout from "../../layouts/DownloadPageLayout.astro"; +import { betaReleases } from "../../assets/js/releaseData"; +import Explanation from "../../components/beta/Explanation.astro"; + +const { mac, version } = betaReleases; +--- + + + +

About these downloads

+

System requirements

+

+ Audacity is tested on macOS 12 & 13, and may also work on any OS X version + released after and including OS X 10.9 Mavericks. Both Intel (x86_64) and + Apple Silicon (ARM 64) versions are available, as well as a universal + binary. There are no specific CPU or GPU requirements.

+

+ Mac OS X 10.13 and earlier don't support the universal dmg. Use the Intel-only dmg instead.

+

+ Note: Audacity requires fast, uninterrupted access to a hard + drive or SSD to operate. Network storage, consumer-grade external hard drives + or USB thumbdrives may be unreliable. +

+ +

Older versions of Audacity

+

+ You can download older versions of Audacity on Fosshub. +

+

+ The last tested compatible versions for relevant operating systems are: +

    +
  • OS X 10.6-10.8: Audacity 2.2.2
  • +
  • OS X 10.5: Audacity 2.1.1 (Intel), Audacity 2.0.6 (PPC)
  • +
  • OS X 10.4: Audacity 2.0.6
  • +
+

+
diff --git a/src/pages/beta/windows.astro b/src/pages/beta/windows.astro new file mode 100644 index 0000000..ab2f355 --- /dev/null +++ b/src/pages/beta/windows.astro @@ -0,0 +1,49 @@ +--- +import { betaReleases } from "../../assets/js/releaseData"; +import "../../styles/icons.css"; +import DownloadPageLayout from "../../layouts/DownloadPageLayout.astro"; +import Explanation from "../../components/beta/Explanation.astro"; + +const { win, version } = betaReleases; +--- + + + +

About these downloads

+ +

System requirements

+

+ Audacity is tested on Windows 10 & Windows 11, and may also work on Windows + 8.1, 7 and Vista. Both 64-bit and 32-bit versions are available. Audacity + has no specific CPU or GPU requirements and should be able to run on any + notebook or PC that can run aforementioned operating systems. +

+ Note: Audacity requires fast, uninterrupted access to a hard + drive or SSD to operate. Network storage, consumer-grade external hard drives + or USB thumbdrives may be unreliable. +

+

Older versions of Audacity

+

+ You can download older versions of Audacity on Fosshub. +

+

+ The last tested compatible versions for relevant operating systems are: +

    +
  • Windows 7, Vista: Audacity 2.3.3
  • +
  • Windows 2000, XP; no SSE2: Audacity 2.0.6
  • +
  • Windows 98, ME: Audacity 2.0.0
  • +
+

+