Skip to content

Commit fce5d58

Browse files
committed
Update OS requirements and improve Mac download instructions
1 parent 38256ef commit fce5d58

File tree

2 files changed

+19
-22
lines changed

2 files changed

+19
-22
lines changed

pages/api/constants.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
export const osRequirements = {
22
linux:
3-
'Ubuntu 20.04LTS or newer, Fedora 33 or newer, Arch Linux and derivatives (such as Manjaro, Garuda, and EndeavourOS). Heroic will work on most other Linux distros, but it may require some additional setup and troubleshooting. It is also supported on SteamOS, but downloading is only available through the Discover software center.',
3+
'Ubuntu 22.04 or newer, OpenSuse Tumbleweed, Fedora 37 or newer, Arch Linux and derivatives (such as Manjaro, Garuda, and EndeavourOS). Heroic will work on most other Linux distros, but it may require some additional setup and troubleshooting. It is also supported on SteamOS, but downloading is only available through the Discover software center.',
44
windows: 'Windows 10 and 11',
5-
macos: 'macOS 12 or newer.'
5+
macos: 'macOS 14 or newer.'
66
}
77

88
export const faqs: { question: string; answer: string[] }[] = [

pages/downloads.tsx

+17-20
Original file line numberDiff line numberDiff line change
@@ -204,58 +204,55 @@ const Downloads: NextPage = () => {
204204
<summary>MacOS</summary>
205205
<p>Supported OS versions: {osRequirements.macos}</p>
206206
<div className="grid">
207-
<article className={styles.downloadBoxes}>
208-
<h4>Intel Chips</h4>
207+
<article className={styles.downloadBoxes}>
208+
<h4>Apple Chips (M1 and Newer)</h4>
209209
<p>
210-
Optimized for Intel Chips. Open it and copy the Heroic App to
211-
the Applications folder and you are good to go!
210+
Optimized for Apple Silicon Chips. Open it and copy the Heroic
211+
App to the Applications folder and you are good to go!
212212
</p>
213213
<footer>
214-
<a href={releases.Mac}>
214+
<a href={releases.MacArm}>
215215
<strong onClick={() => handleDownload('mac-stable')}>
216216
Stable
217217
</strong>
218218
<span className="smallText">
219-
{` (${releases.Mac.split('/')[7]})`}
219+
{` (${releases.MacArm.split('/')[7]})`}
220220
</span>
221221
</a>
222-
{releases.MacBeta && (
223-
<a href={releases.MacBeta}>
222+
{releases.MacArmBeta && (
223+
<a href={releases.MacArmBeta}>
224224
<strong onClick={() => handleDownload('mac-beta')}>
225225
Beta
226226
</strong>
227227
<span className="smallText">
228-
{` (${releases.MacBeta.split('/')[7] ?? ''})`}
228+
{` (${releases.MacArmBeta.split('/')[7] ?? ''})`}
229229
</span>
230230
</a>
231231
)}
232232
</footer>
233233
</article>
234234
<article className={styles.downloadBoxes}>
235-
<h4>Apple Chips (M1/M2/M3)</h4>
235+
<h4>Intel Chips</h4>
236236
<p>
237-
Might need to run this command on the terminal to make it
238-
work:
239-
<code>
240-
xattr -r -d com.apple.quarantine /Applications/Heroic.app
241-
</code>
237+
Optimized for Intel Chips. Open it and copy the Heroic App to
238+
the Applications folder and you are good to go!
242239
</p>
243240
<footer>
244-
<a href={releases.MacArm}>
241+
<a href={releases.Mac}>
245242
<strong onClick={() => handleDownload('mac-stable')}>
246243
Stable
247244
</strong>
248245
<span className="smallText">
249-
{` (${releases.MacArm.split('/')[7]})`}
246+
{` (${releases.Mac.split('/')[7]})`}
250247
</span>
251248
</a>
252-
{releases.MacArmBeta && (
253-
<a href={releases.MacArmBeta}>
249+
{releases.MacBeta && (
250+
<a href={releases.MacBeta}>
254251
<strong onClick={() => handleDownload('mac-beta')}>
255252
Beta
256253
</strong>
257254
<span className="smallText">
258-
{` (${releases.MacArmBeta.split('/')[7] ?? ''})`}
255+
{` (${releases.MacBeta.split('/')[7] ?? ''})`}
259256
</span>
260257
</a>
261258
)}

0 commit comments

Comments
 (0)