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+ } ;
0 commit comments