Skip to content

Commit 49d4ee5

Browse files
committed
xd
1 parent 1fb34c5 commit 49d4ee5

2 files changed

Lines changed: 61 additions & 40 deletions

File tree

docs/streaming/kodi/setup.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ To compare the cost of each debrid service, I made a table of the prices of each
150150
Both services have a rewards program that allows you to earn free days.
151151

152152
- Torbox has a referral program that gives you +7 days x Months purchased for each person that signs up through your link. **(only for first time purchases)**
153-
- Example: If 2 persons sign up through your link and you purchase a 3 month subscription, you get 2 _ 3 _ 7 = 42 free days.
153+
- Example: If 2 persons sign up through your link and you purchase a 3 month subscription, you get 2 * 3 * 7 = 42 free days.
154154
- Real-Debrid has a points system where you earn points. that can be redeemed for free days.
155155
- 1000 points = 30 days
156156

@@ -163,7 +163,7 @@ This is different for everyone.
163163
Giving my experiences with each debrid service would not be helpful as it is dependent on your location as well as many other factors.
164164

165165
Therefore, make sure to carry out speed tests to determine the best service for you.
166-
The speed tests for each debrid service can be found [here](faq#where-can-i-find-the-speed-tests-for-debrid-services) and on their website too.
166+
The speed tests for each debrid service can be found `here` and on their website too.
167167

168168
While a debrid service is unlikely to be the bottleneck in your streaming experience, TorBox has the fastest servers (80gbit NVME) which no other service can offer at prices as low as theirs.
169169

@@ -183,7 +183,7 @@ Most popular content will be cached on TorBox, but if you look for stuff that is
183183

184184
Addon support should not generally be an issue as almost every addon supports most major debrid services.
185185

186-
Find a full table of addons and supported debrid services [here](faq#which-debrid-services-are-supported-by-each-addon).
186+
Find a full table of addons and supported debrid services `here`.
187187

188188
**Additional Features**
189189

@@ -326,13 +326,13 @@ import TorboxUsenet from '@site/docs/streaming/kodi/usenet/_torbox.mdx';
326326
Now that Kodi is set up and you have your debrid service (and Usenet if needed) ready, you can proceed to set up the addons.
327327

328328
### How to install addons
329+
329330
Addons in Kodi are installed through repositories. A repository is simply a collection of addons that can be installed from a single source. To install an addon, you first need to add the repository that contains the addon. Once the repository is added, you can then install the addon from within Kodi.
330331

331332
:::info[Make sure]
332333
Follow the instructions exactly as stated in the addon installation guide.
333334
:::
334335

335-
336336
### Streaming providers addons
337337

338338
These addons are the backbone to our on-demand streaming experience.
@@ -357,6 +357,6 @@ If an addon only has the :cloud: icon, then it requires a debrid service.
357357
repoUrl="https://kodifitzwell.github.io/repo/"
358358
repoName="POV Repository"
359359
addonName="POV"
360-
categories={['Video add-ons']}>
361-
</AddonInstallSteps>
360+
categories={['Video add-ons']}
361+
></AddonInstallSteps>
362362
</details>
Lines changed: 55 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,58 @@
1-
2-
export default function AddonInstallSteps({ repoUrl, repoName, addonName, categories = [] }) {
1+
export default function AddonInstallSteps({
2+
repoUrl,
3+
repoName,
4+
addonName,
5+
categories = [],
6+
}) {
37
return (
4-
<ol>
5-
<li>
6-
<strong>Installing the repository</strong>:
7-
<ul>
8-
<li>Go to <code>Settings</code> &gt; <code>File Manager</code> &gt; <code>Add source</code></li>
9-
<li>
10-
Enter the URL of the repository (<code>{repoUrl}</code>) and give it a name (<code>{repoName}</code>).
11-
</li>
12-
<li>Go back to the main menu and select <code>Add-ons</code> &gt; <code>Install from zip file</code></li>
13-
<li>Select the repository you just added and install the zip file.</li>
14-
</ul>
15-
</li>
16-
<li>
17-
<strong>Installing the addon</strong>:
18-
<ul>
19-
<li>Go to <code>Add-ons</code> &gt; <code>Install from repository</code></li>
20-
{categories.length > 0 ? (
8+
<ol>
9+
<li>
10+
<strong>Installing the repository</strong>:
11+
<ul>
2112
<li>
22-
Navigate through the repository categories to find the addon. Look for:
23-
<ul>
24-
{categories.map((cat) => (
25-
<li key={cat}>{cat}</li>
26-
))}
27-
</ul>
13+
Go to <code>Settings</code> &gt; <code>File Manager</code> &gt;{' '}
14+
<code>Add source</code>
2815
</li>
29-
) : (
30-
<li>Depending on the repository, you may need to navigate through different categories to find the addon.</li>
31-
)}
32-
<li>Select {addonName} and click <code>Install</code>.</li>
33-
</ul>
34-
</li>
35-
</ol>
36-
);
37-
}
16+
<li>
17+
Enter the URL of the repository (<code>{repoUrl}</code>) and give it
18+
a name (<code>{repoName}</code>).
19+
</li>
20+
<li>
21+
Go back to the main menu and select <code>Add-ons</code> &gt;{' '}
22+
<code>Install from zip file</code>
23+
</li>
24+
<li>
25+
Select the repository you just added and install the zip file.
26+
</li>
27+
</ul>
28+
</li>
29+
<li>
30+
<strong>Installing the addon</strong>:
31+
<ul>
32+
<li>
33+
Go to <code>Add-ons</code> &gt; <code>Install from repository</code>
34+
</li>
35+
{categories.length > 0 ? (
36+
<li>
37+
Navigate through the repository categories to find the addon. Look
38+
for:
39+
<ul>
40+
{categories.map((cat) => (
41+
<li key={cat}>{cat}</li>
42+
))}
43+
</ul>
44+
</li>
45+
) : (
46+
<li>
47+
Depending on the repository, you may need to navigate through
48+
different categories to find the addon.
49+
</li>
50+
)}
51+
<li>
52+
Select {addonName} and click <code>Install</code>.
53+
</li>
54+
</ul>
55+
</li>
56+
</ol>
57+
);
58+
}

0 commit comments

Comments
 (0)