Skip to content

Commit 5d4a783

Browse files
LWinterbergteetow
authored andcommitted
refactor: split up releaseData into separate files
1 parent 0156ed7 commit 5d4a783

File tree

1 file changed

+130
-0
lines changed

1 file changed

+130
-0
lines changed

src/pages/au4a1.astro

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
---
2+
import BaseLayout from "../layouts/BaseLayout.astro";
3+
import "../styles/icons.css";
4+
import { betaReleases } from "../assets/data/betaReleases";
5+
import SplitDownloadButton from "../components/button/SplitDownloadButton.jsx";
6+
7+
const { win, mac, lin } = betaReleases;
8+
---
9+
10+
11+
12+
<BaseLayout
13+
title="Audacity ® | Beta download"
14+
description="Test the latest Audacity Beta for Windows, macOS and Linux"
15+
>
16+
<main id="main" class="max-w-screen-xl mx-auto">
17+
<div class="grid grid-cols-12 pt-8 pb-32 gap-y-12">
18+
<section class="col-start-2 col-span-10 sm:col-start-2 sm:col-span-5">
19+
<div>
20+
<h1>Help us test the first Audacity&nbsp;4 alpha!</h1>
21+
<div class="mt-4">
22+
<p>
23+
The first alpha version of Audacity 4 is intended as an early preview and feedback opportunity on some core interactions we have designed.
24+
</p>
25+
<iframe
26+
width="560"
27+
height="315"
28+
src="https://www.youtube.com/embed/qEAZv_o0HuQ?si=cSkDGalD1VmC9SJK"
29+
title="YouTube video player"
30+
frameborder="0"
31+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
32+
allowfullscreen
33+
class="my-4"></iframe>
34+
<h2 class="mt-6 text-2xl">What should work</h2>
35+
<p class="mt-2">We expect the following flow to work reasonably well:</p>
36+
<ul class="list-disc mt-2 ml-6">
37+
<li>Recording, generating and importing audio</li>
38+
<li>The core editing flow of applying effects (destructive or realtime), making cuts, moving clips and such.</li>
39+
<li>Exporting (without metadata)</li>
40+
<li>Customization of the app (themes, and editing/moving the toolbar)</li>
41+
</ul>
42+
</div>
43+
<h2 class="mt-6 text-2xl">What doesn't work yet</h2>
44+
<p class="mt-2">We haven't completed all development tasks for the full app yet. As such, a lot of features are missing, or appear disabled for the moment. We expect the following things to not work right now:</p>
45+
<ul class="list-disc mt-2 ml-6">
46+
<li>Various menu items and buttons haven't been hooked up to functionality yet, you'll see them greyed out.</li>
47+
<li>Various plugins – Nyquist, LADSPA and VAMP and the OpenVINO plugins – have not been ported over yet.</li>
48+
<li>Preferences from Audacity 3 are not carried over.</li>
49+
<li>Some more advanced features, like envelopes, labels, spectrograms aren't available yet.</li>
50+
<li>Most effects/generators/analyzers aren't available yet.</li>
51+
<li>Opening multiple projects at the same time is not supported yet.</li>
52+
</ul>
53+
</div>
54+
55+
<div>
56+
<h2 class="mt-4 text-2xl">Submit your feedback!</h2>
57+
<p class="mt-2">
58+
We're always eager to hear what you have to say, but it's especially
59+
important we hear from you during this early phase. Please let us
60+
know what you think, using the following places:
61+
</p>
62+
<ul class="py-2 list-none">
63+
<li class="hyperlink">
64+
<a
65+
href="https://forum.audacityteam.org/c/au4/64"
66+
>Audacity Forum</a
67+
>
68+
</li>
69+
<li class="hyperlink">
70+
<a href="https://discord.gg/audacity">Audacity Discord</a>
71+
</li>
72+
<li>
73+
For concrete and reproducible bugs only: <a href="https://github.com/audacity/audacity/issues" class="hyperlink">
74+
Github issues
75+
</a>
76+
</li>
77+
</ul>
78+
<p class="pt-2">
79+
And with all that out of the way: <strong>Happy testing!</strong>
80+
</p>
81+
</div>
82+
<h2 class="mt-8 text-2xl">System requirements</h2>
83+
<p class="mt-2">Audacity 4 has higher system requirements than Audacity 3, mostly due to Qt's platform support. We expect Audacity 4 Alpha 1 to work on the following platforms:</p>
84+
<ul class="list-disc mt-2 ml-6">
85+
<li>
86+
Windows 10 & 11 (x64, but not ARM yet)
87+
</li>
88+
<li>
89+
macOS 12 and later
90+
</li>
91+
<li>
92+
Linux: Ubuntu 22.04, RedHat 8.6, openSUSE 15.6, Debian 11.6 and later
93+
</li>
94+
</ul>
95+
</section>
96+
97+
<aside
98+
class="row-start-2 sm:row-start-1 col-start-2 col-span-10 sm:col-start-8 sm:col-span-4"
99+
>
100+
<h2 class="text-sm uppercase font-normal text-gray-600">
101+
Download links
102+
</h2>
103+
<div class="flex flex-col gap-6 mt-2">
104+
<div class="border border-bg-200 rounded-md p-6">
105+
<h3 class="additional-resource-heading">
106+
Audacity 4 alpha 1 for Windows
107+
</h3>
108+
<div class="mt-2">
109+
<SplitDownloadButton OS="Windows" releaseData={win} client:load />
110+
</div>
111+
</div>
112+
113+
<div class="border border-bg-200 rounded-md p-6">
114+
<h3 class="additional-resource-heading">Audacity 4 alpha 1 for macOS</h3>
115+
<div class="mt-2">
116+
<SplitDownloadButton OS="macOS" releaseData={mac} client:load />
117+
</div>
118+
</div>
119+
120+
<div class="border border-bg-200 rounded-md p-6">
121+
<h3 class="additional-resource-heading">Audacity 4 alpha 1 for Linux</h3>
122+
<div class="mt-2">
123+
<SplitDownloadButton OS="Linux" releaseData={lin} client:load />
124+
</div>
125+
</div>
126+
</div>
127+
</aside>
128+
</div>
129+
</main>
130+
</BaseLayout>

0 commit comments

Comments
 (0)