Skip to content

Commit 0156ed7

Browse files
authored
Merge pull request #63 from audacity/au4a1
Prepare website for first AU4 alpha
2 parents 5b26447 + e326cc6 commit 0156ed7

22 files changed

+847
-856
lines changed

package-lock.json

Lines changed: 349 additions & 325 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
"astro": "astro"
1111
},
1212
"dependencies": {
13-
"@astrojs/react": "^4.3.0",
14-
"@astrojs/sitemap": "^3.5.1",
13+
"@astrojs/react": "^4.3.1",
14+
"@astrojs/sitemap": "^3.6.0",
1515
"@astrojs/tailwind": "^6.0.2",
1616
"@fontsource-variable/signika": "^5.0.8",
1717
"@fontsource/twinkle-star": "^5.0.8",
1818
"@types/react": "^18.0.28",
1919
"@types/react-dom": "^18.0.10",
20-
"astro": "^5.13.3",
20+
"astro": "^5.13.9",
2121
"astro-compressor": "^0.4.1",
2222
"astro-icon": "^0.8.1",
2323
"astro-lazy-youtube-embed": "^0.5.4",
Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
export type ReleaseInfo = {
2+
name: string;
3+
browser_download_url: string;
4+
checksum: string;
5+
type: string;
6+
};
7+
8+
type ReleaseDirectory = {
9+
version: string;
10+
win: ReleaseInfo[];
11+
mac: ReleaseInfo[];
12+
lin: ReleaseInfo[];
13+
src: ReleaseInfo[];
14+
};
15+
16+
export const audacityReleases: ReleaseDirectory = {
17+
version: "3.7.5",
18+
win: [
19+
{
20+
name: "64 bit installer",
21+
browser_download_url:
22+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-win-3.7.5-64bit.exe",
23+
checksum:
24+
"d618903c6368785e35a0d6933a741f7efb75d869ca0897cb690d323c720d27c9",
25+
type: ".exe",
26+
},
27+
{
28+
name: "64 bit zip file",
29+
browser_download_url:
30+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-win-3.7.5-64bit.zip",
31+
checksum:
32+
"0bc382a89cd44ee2df80f9b725fa22a697163572a8aa04899ee8544dc2932926",
33+
type: ".zip",
34+
},
35+
{
36+
name: "32 bit installer",
37+
browser_download_url:
38+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-win-3.7.5-32bit.exe",
39+
checksum:
40+
"ee0bcad98c38084510858bf6eea3315986096af850c1d0b1edd951879c3185d3",
41+
type: ".exe",
42+
},
43+
{
44+
name: "32 bit zip file",
45+
browser_download_url:
46+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-win-3.7.5-32bit.zip",
47+
checksum:
48+
"c80c0767cbb4b74eabf0c206a2c9c4ab9c6996a3fcf14713f542c8660882893f",
49+
type: ".zip",
50+
},
51+
{
52+
name: "ARM64 installer (BETA)",
53+
browser_download_url:
54+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-win-3.7.5-arm64.exe",
55+
checksum:
56+
"604216c823de66ddcf2629f80aba050e9d7bead3df7d8d7e32750e0a3fef42fe",
57+
type: ".exe",
58+
},
59+
{
60+
name: "ARM64 zip file (BETA)",
61+
browser_download_url:
62+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-win-3.7.5-arm64.zip",
63+
checksum:
64+
"996c68cdc97ca85f84777b557b3991a5dfa49727bad4086dba474b1525abfbc9",
65+
type: ".zip",
66+
},
67+
],
68+
mac: [
69+
{
70+
name: "Universal dmg",
71+
browser_download_url:
72+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-macOS-3.7.5-universal.dmg",
73+
checksum:
74+
"5e14508ca00b07fa69bfb4670185bcb2ae003448f0737bbec11c003aff030c52",
75+
type: ".dmg",
76+
},
77+
{
78+
name: "Universal pkg",
79+
browser_download_url:
80+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-macOS-3.7.5-universal.pkg",
81+
checksum:
82+
"d108d6e55501a7395394dc035530511a13394c91097cacc656a0a2509284ea1f",
83+
type: ".pkg",
84+
},
85+
{
86+
name: "ARM 64 dmg (Apple Silicon)",
87+
browser_download_url:
88+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-macOS-3.7.5-arm64.dmg",
89+
checksum:
90+
"20beb5515153a0df8cb02c270a39a90efbfaaa5f2d21fe1db06c7b0d987ea653",
91+
type: ".dmg",
92+
},
93+
{
94+
name: "x86_64 dmg (Intel)",
95+
browser_download_url:
96+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-macOS-3.7.5-x86_64.dmg",
97+
checksum:
98+
"d9ba4c5b61030151953bfd0c0611fbb340208d3a3f149a9a6c297155e1f57289",
99+
type: ".dmg",
100+
},
101+
],
102+
lin: [
103+
{
104+
name: "AppImage (Ubuntu 20.04)",
105+
browser_download_url:
106+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-linux-3.7.5-x64-20.04.AppImage",
107+
checksum:
108+
"30c92ff76d05fcf4fbd73a778dd7864e7e60641c9c92d139e2f8a5e95021dd8b",
109+
type: ".AppImage",
110+
},
111+
{
112+
name: "AppImage (Ubuntu 22.04)",
113+
browser_download_url:
114+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-linux-3.7.5-x64-22.04.AppImage",
115+
checksum:
116+
"aa092571e6447b3e82d8cf6b9e31ee4907581e4925b791f49c8563e1cfa93716",
117+
type: ".AppImage",
118+
},
119+
],
120+
src: [
121+
{
122+
name: "Source code",
123+
browser_download_url:
124+
"https://github.com/audacity/audacity/releases/download/Audacity-3.7.5/audacity-sources-3.7.5.tar.gz",
125+
checksum:
126+
"f59e05a05a41c6d895b8d65d9afd90b0e2b453046ea4ac0be11981dca4a44c07",
127+
type: ".tar.gz",
128+
},
129+
],
130+
};

src/assets/data/betaReleases.ts

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
export type ReleaseInfo = {
2+
name: string;
3+
browser_download_url: string;
4+
checksum: string;
5+
type: string;
6+
};
7+
8+
type ReleaseDirectory = {
9+
version: string;
10+
win: ReleaseInfo[];
11+
mac: ReleaseInfo[];
12+
lin: ReleaseInfo[];
13+
src: ReleaseInfo[];
14+
};
15+
16+
export const betaReleases: ReleaseDirectory = {
17+
version: "3.5.0 beta",
18+
win: [
19+
{
20+
name: "64 bit installer (recommended)",
21+
browser_download_url:
22+
"https://github.com/audacity/audacity/releases/download/Audacity-3.5.0-beta-3/audacity-win-3.5.0-beta-3-64bit.exe",
23+
checksum:
24+
"ed7de964ed11cbc8f74e815dbcb2cb8487ba136818cf1a148f16cadd4c10f3d0",
25+
type: ".exe",
26+
},
27+
{
28+
name: "64 bit zip file",
29+
browser_download_url:
30+
"https://github.com/audacity/audacity/releases/download/Audacity-3.5.0-beta-3/audacity-win-3.5.0-beta-3-64bit.zip",
31+
checksum:
32+
"52da5c3e2507408d72c4ab425c2e465e3c8ad452b2ac89ddfb3f5bc141d68a03",
33+
type: ".zip",
34+
},
35+
{
36+
name: "32 bit installer",
37+
browser_download_url:
38+
"https://github.com/audacity/audacity/releases/download/Audacity-3.5.0-beta-3/audacity-win-3.5.0-beta-3-32bit.exe",
39+
checksum:
40+
"6bb6c0d3513be7d98c400f43d84cd39992065f4c6460d80b6cb1667733ca95c7",
41+
type: ".exe",
42+
},
43+
{
44+
name: "32 bit zip file",
45+
browser_download_url:
46+
"https://github.com/audacity/audacity/releases/download/Audacity-3.5.0-beta-3/audacity-win-3.5.0-beta-3-32bit.zip",
47+
checksum:
48+
"c313ca3c475b487bf88a42537cbc9454090391250017fe210226b3ca78797d9a",
49+
type: ".zip",
50+
},
51+
],
52+
mac: [
53+
{
54+
name: "Universal dmg (recommended)",
55+
browser_download_url:
56+
"https://github.com/audacity/audacity/releases/download/Audacity-3.5.0-beta-3/audacity-macOS-3.5.0-beta-3-universal.dmg",
57+
checksum:
58+
"9500ede91b837fc12e5106fa33d6603829288b90fb1e28d2d70bfee9db33406e",
59+
type: ".dmg",
60+
},
61+
{
62+
name: "ARM 64 dmg (Apple Silicon)",
63+
browser_download_url:
64+
"https://github.com/audacity/audacity/releases/download/Audacity-3.5.0-beta-3/audacity-macOS-3.5.0-beta-3-arm64.dmg",
65+
checksum:
66+
"0f3e9b9ee8e77d8b8613db8d66927e982bbec870e801811060d3d8fbc25c7698",
67+
type: ".dmg",
68+
},
69+
{
70+
name: "x86_64 dmg (Intel)",
71+
browser_download_url:
72+
"https://github.com/audacity/audacity/releases/download/Audacity-3.5.0-beta-3/audacity-macOS-3.5.0-beta-3-x86_64.dmg",
73+
checksum:
74+
"415342de27b572bd3801f51bd77e850a21701b39e2392c2c347ea8db4da4f122",
75+
type: ".dmg",
76+
},
77+
],
78+
lin: [
79+
{
80+
name: "AppImage",
81+
browser_download_url:
82+
"https://github.com/audacity/audacity/releases/download/Audacity-3.5.0-beta-3/audacity-linux-3.5.0-beta-3-x64.AppImage",
83+
checksum:
84+
"fc5df63e3819f4f59b4366c436579bd1a73b045a4dae28316edf6c23948a06ce",
85+
type: ".AppImage",
86+
},
87+
],
88+
src: [
89+
{
90+
name: "Source code",
91+
browser_download_url:
92+
"https://github.com/audacity/audacity/releases/download/Audacity-3.5.0-beta-3/audacity-sources-3.5.0-beta-3.tar.gz",
93+
checksum:
94+
"53c33ed875f4eb1501707d7989a6de253370a368c1c50a877e5cfa96c02bebdc",
95+
type: ".tar.gz",
96+
},
97+
],
98+
};

src/assets/data/museHubReleases.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
export type MuseHubReleaseInfo = {
2+
name: string;
3+
browser_download_url: string;
4+
type: string;
5+
};
6+
7+
type MuseHubReleaseDirectory = {
8+
win: MuseHubReleaseInfo[];
9+
mac: MuseHubReleaseInfo[];
10+
};
11+
12+
export const museHubReleases: MuseHubReleaseDirectory = {
13+
win: [
14+
{
15+
name: "Muse Hub installer",
16+
browser_download_url:
17+
"https://muse-cdn.com/Audacity_Installer_via_MuseHub.exe",
18+
type: ".exe",
19+
},
20+
],
21+
mac: [
22+
{
23+
name: "Muse Hub installer",
24+
browser_download_url:
25+
"https://muse-cdn.com/Audacity_Installer_via_MuseHub.dmg",
26+
type: ".dmg",
27+
},
28+
],
29+
};
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
export type OpenVinoReleaseInfo = {
2+
name: string;
3+
browser_download_url: string;
4+
type: string;
5+
};
6+
7+
type OpenvinoReleaseDirectory = {
8+
version: string;
9+
revision: string;
10+
win: OpenVinoReleaseInfo[];
11+
mac: OpenVinoReleaseInfo[];
12+
};
13+
14+
export const openvinoReleases: OpenvinoReleaseDirectory = {
15+
version: "3.7.5",
16+
revision: "R4.2",
17+
win: [
18+
{
19+
name: "OpenVino AI Plugins",
20+
browser_download_url:
21+
"https://github.com/intel/openvino-plugins-ai-audacity/releases/download/v3.7.1-R4.2/audacity-win-v3.7.1-R4.2-64bit-OpenVINO-AI-Plugins.exe",
22+
type: ".exe",
23+
},
24+
],
25+
mac: [
26+
{
27+
name: "OpenVino AI Plugins – Universal Binary (large)",
28+
browser_download_url:
29+
"https://github.com/audacity/mod-openvino-macos/releases/download/v3.7.1-R4.2-beta-3/Audacity-OpenVINO-3.7.1-R4.2.pkg",
30+
type: ".pkg",
31+
},
32+
{
33+
name: "OpenVino AI Plugins – Intel (x64)",
34+
browser_download_url:
35+
"https://github.com/audacity/mod-openvino-macos/releases/download/v3.7.1-R4.2-beta-3/Audacity-OpenVINO-3.7.1-R4.2-x86_64.pkg",
36+
type: ".pkg",
37+
},
38+
{
39+
name: "OpenVino AI Plugins – Apple Silicon (ARM64)",
40+
browser_download_url:
41+
"https://github.com/audacity/mod-openvino-macos/releases/download/v3.7.1-R4.2-beta-3/Audacity-OpenVINO-3.7.1-R4.2-arm64.pkg",
42+
type: ".pkg",
43+
},
44+
],
45+
};

src/assets/img/yt.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)