Skip to content

Commit 4aa1832

Browse files
authored
Merge pull request #3 from CelloSerenity/csdev
Clarify installing/JIT
2 parents 063c25f + 6fb4836 commit 4aa1832

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

src/app/links/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export default function Links() {
151151
className="flex items-center p-4 bg-blue-50 dark:bg-blue-900/20 rounded-lg hover:bg-blue-100 dark:hover:bg-blue-900/30 transition-colors">
152152
<div className="text-2xl mr-4">🐬</div>
153153
<div>
154-
<h3 className="font-semibold text-blue-900 dark:text-blue-300">DolphinIOS</h3>
154+
<h3 className="font-semibold text-blue-900 dark:text-blue-300">DolphiniOS</h3>
155155
<p className="text-sm text-blue-700 dark:text-blue-400">
156156
iOS port of Dolphin emulator that inspired iCube
157157
</p>

src/app/support/page.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,15 @@ export default function Support() {
2929

3030
<div className="border-b border-gray-200 dark:border-gray-700 pb-4">
3131
<h3 className="text-lg font-semibold text-gray-900 dark:text-white mb-2">
32-
How do I install iCube (sideload)?
32+
How do I install iCube (sideloaded)?
3333
</h3>
3434
<p className="text-gray-600 dark:text-gray-300">
3535
iCube is distributed via sideloading for iOS and tvOS. <br /> We recommend using{' '}
36+
<a href="https://sidestore.io" target="_blank" rel="noopener noreferrer" className="text-blue-600 dark:text-blue-400 hover:underline">SideStore</a>{' '}
37+
to install the app on your iOS/iPadOS device. To install on your tvOS device, use{' '}
3638
<a href="https://sideloadly.io" target="_blank" rel="noopener noreferrer" className="text-blue-600 dark:text-blue-400 hover:underline">Sideloadly</a>{' '}
37-
to install the app on your device. For enabling JIT on Apple TV, we recommend{' '}
38-
<a href="https://apps.apple.com/us/app/stikdebug/id6744045754" target="_blank" rel="noopener noreferrer" className="text-blue-600 dark:text-blue-400 hover:underline">StikDebug</a>.
39+
. To enable JIT on iOS/iPadOS, we recommend using{' '}
40+
<a href="https://apps.apple.com/us/app/stikdebug/id6744045754" target="_blank" rel="noopener noreferrer" className="text-blue-600 dark:text-blue-400 hover:underline">StikDebug</a>{' '}.
3941
</p>
4042
</div>
4143

@@ -56,7 +58,7 @@ export default function Support() {
5658
</h3>
5759
<p className="text-gray-600 dark:text-gray-300">
5860
iCube requires iOS 16.0 or later for iPhone and iPad, and tvOS 17.0 or later for Apple TV.
59-
For optimal performance, we recommend newer devices like iPhone 16 or later,
61+
For optimal JIT-less performance, we recommend newer devices like iPhone 16 or later,
6062
iPad (7th generation) or later, and Apple TV 4K (4th generation).
6163
</p>
6264
</div>

src/components/DownloadSection.tsx

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,16 @@ export type DownloadSectionProps = {
1111

1212
const DefaultDescription = () => (
1313
<p className="text-gray-600 dark:text-gray-300 mb-6">
14-
iCube isn’t on the App Store. You can sideload it from the sources below. We recommend
14+
iCube isn’t on the App Store. You can sideload it from the sources below. We recommend using
15+
<a
16+
href="https://sidestore.io"
17+
target="_blank"
18+
rel="noopener noreferrer"
19+
className="text-blue-600 dark:text-blue-400 hover:underline ml-1"
20+
>
21+
SideStore
22+
</a>
23+
{' '}to install on iOS/iPadOS, using
1524
<a
1625
href="https://sideloadly.io"
1726
target="_blank"
@@ -20,7 +29,7 @@ const DefaultDescription = () => (
2029
>
2130
Sideloadly
2231
</a>
23-
for installing on iOS/tvOS, and for Apple TV JIT we recommend
32+
{' '}to install on tvOS, and using
2433
<a
2534
href="https://apps.apple.com/us/app/stikdebug/id6744045754"
2635
target="_blank"
@@ -29,7 +38,7 @@ const DefaultDescription = () => (
2938
>
3039
StikDebug
3140
</a>
32-
.
41+
{' '}to enable JIT on iOS/iPadOS.
3342
</p>
3443
);
3544

0 commit comments

Comments
 (0)