-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
504 lines (442 loc) · 21.5 KB
/
index.html
File metadata and controls
504 lines (442 loc) · 21.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="apple-touch-icon" sizes="180x180" href="https://raw.githubusercontent.com/SpotCompiled/.github/main/SpotC%20Icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://raw.githubusercontent.com/SpotCompiled/.github/main/SpotC%20Icon.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://raw.githubusercontent.com/SpotCompiled/.github/main/SpotC%20Icon.png">
<link rel="mask-icon" href="https://raw.githubusercontent.com/SpotCompiled/.github/main/SpotC%20Icon.png" color="#1DB954">
<link rel="shortcut icon" href="https://raw.githubusercontent.com/SpotCompiled/.github/main/SpotC%20Icon.png">
<meta name="msapplication-TileColor" content="#000000">
<meta name="theme-color" content="#ffffff">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SpotCompiled</title>
<style>
:root {
--background: #ffffff;
--foreground: #000000;
--card: #ffffff;
--card-foreground: #000000;
--primary: #1DB954;
--primary-foreground: #ffffff;
--secondary: #f4f4f5; /* Fallback */
--secondary-foreground: #000000;
--muted-foreground: rgba(0, 0, 0, 0.6);
--border: rgba(0, 0, 0, 0.1);
--radius: 0.5rem;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #000000;
--foreground: #ffffff;
--card: #000000;
--card-foreground: #ffffff;
--primary: #1DB954;
--primary-foreground: #000000;
--secondary: rgba(255, 255, 255, 0.1);
--secondary-foreground: #ffffff;
--muted-foreground: rgba(255, 255, 255, 0.6);
--border: rgba(255, 255, 255, 0.2);
}
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
border: 0 solid var(--border);
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
background-color: var(--background);
color: var(--foreground);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.header {
background: #000000;
color: #ffffff;
padding: 4rem 1.5rem 3rem;
text-align: center;
}
.header h1 {
font-size: 3rem;
font-weight: 800;
letter-spacing: -0.05em;
}
.header p {
color: rgba(255, 255, 255, 0.7);
margin-top: 0.75rem;
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
font-size: 1.125rem;
}
.header .jump-buttons {
display: flex;
justify-content: center;
gap: 0.5rem;
flex-wrap: wrap;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.section {
background: var(--card);
color: var(--card-foreground);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.5rem;
}
.section h2 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1.5rem;
letter-spacing: -0.025em;
}
.button {
background-color: var(--primary);
color: var(--primary-foreground);
padding: 0.75rem 1.25rem;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 0.95rem;
font-weight: 500;
cursor: pointer;
border-radius: var(--radius);
transition: opacity 0.2s ease-in-out;
border: 1px solid transparent;
}
.button:hover {
opacity: 0.85;
}
.button.secondary {
background-color: var(--secondary);
color: var(--secondary-foreground);
border-color: var(--border);
}
.button.secondary:hover {
background-color: var(--border);
}
.links-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 1.5rem;
}
.app-card {
text-align: center;
background: var(--card);
padding: 1.5rem;
border-radius: var(--radius);
border: 1px solid var(--border);
transition: border-color 0.2s;
display: flex;
flex-direction: column;
}
.app-card:hover {
border-color: var(--primary);
}
.app-card img.icon {
width: 80px;
height: 80px;
border-radius: 1rem;
margin: 0 auto;
}
.app-card h3 {
margin: 1rem 0 0.5rem;
font-size: 1.25rem;
font-weight: 600;
}
.app-card p {
color: var(--muted-foreground);
flex-grow: 1;
margin-bottom: 1.5rem;
font-size: 0.95rem;
}
.app-card .button {
width: 100%;
}
.notice {
color: #f5c518; /* A non-red notice color for contrast */
font-weight: 500;
font-size: 0.9rem;
background-color: rgba(245, 197, 24, 0.1);
padding: 0.5rem 1rem;
border-radius: 0.375rem;
border: 1px solid rgba(245, 197, 24, 0.2);
margin-top: -1rem;
margin-bottom: 1.5rem;
}
.screenshots {
display: flex;
overflow-x: auto;
gap: 1rem;
margin: 1rem 0;
height: 350px;
padding-bottom: 1rem;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.screenshots::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
}
.screenshots img {
height: 100%;
width: auto;
border-radius: var(--radius);
flex-shrink: 0;
}
.changelog {
background: var(--secondary);
color: var(--muted-foreground);
padding: 1rem;
border-radius: calc(var(--radius) - 2px);
text-align: left;
font-size: 0.9em;
margin: 1.5rem 0;
max-height: 200px;
overflow-y: auto;
border: 1px solid var(--border);
}
.changelog a {
color: var(--primary);
text-decoration: none;
font-weight: 500;
}
.changelog a:hover {
text-decoration: underline;
}
#credits-section ul, #adding-section ol {
padding-left: 1.25rem;
margin-top: 1rem;
}
#credits-section li, #adding-section li {
margin-bottom: 0.5rem;
color: var(--muted-foreground);
}
#credits-section li a, #adding-section a, #adding-section code {
color: var(--foreground);
font-weight: 500;
text-decoration: none;
}
#adding-section code {
font-family: monospace;
background-color: var(--secondary);
padding: 0.15rem 0.3rem;
border-radius: 0.25rem;
font-size: 0.9em;
}
#credits-section li a:hover, #adding-section a:hover {
text-decoration: underline;
}
#adding-section h3 {
font-size: 1.125rem;
font-weight: 600;
margin-top: 1.5rem;
}
.footer {
padding: 2rem 1.5rem;
text-align: center;
font-size: 0.85em;
color: var(--muted-foreground);
margin-top: 2rem;
border-top: 1px solid var(--border);
}
.footer p {
margin: 0 auto;
max-width: 800px;
}
.github-icon {
position: absolute;
top: 1.5rem;
right: 1.5rem;
}
.github-icon img {
width: 28px;
height: 28px;
border-radius: 50%;
transition: transform 0.2s, opacity 0.2s;
opacity: 0.7;
}
.github-icon:hover img {
transform: scale(1.1);
opacity: 1;
}
@media (prefers-color-scheme: dark) {
#github-icon-img {
background-color: #fff;
}
}
</style>
<script>
function scrollToSection(sectionId) {
const section = document.getElementById(sectionId);
if (section) {
const yOffset = -20;
const y = section.getBoundingClientRect().top + window.pageYOffset + yOffset;
window.scrollTo({top: y, behavior: 'smooth'});
}
}
</script>
<script>
async function fetchChangelog(repo, elementId, downloadButtonId) {
const ghUrl = `https://api.github.com/repos/SpotCompiled/${repo}/releases/latest`;
let sourceUrl = `https://raw.githubusercontent.com/SpotCompiled/SpotC-Repo/refs/heads/main/Scarlet%20Repo.json`;
try {
const ghResponse = await fetch(ghUrl);
const ghData = await ghResponse.json();
const changelogElement = document.getElementById(elementId);
if (repo === 'SpotilifeC') {
sourceUrl = `https://raw.githubusercontent.com/SpotCompiled/SpotC-Repo/refs/heads/main/AltStore%20Repo.json`;
}
const sourceResponse = await fetch(sourceUrl);
const sourceData = await sourceResponse.json();
let app = "";
if (repo === 'SpotC-Plus-Plus') {
app = sourceData.apps.find(app => app.name === 'SpotC++');
} else if (repo === 'SpotveeC') {
app = sourceData.apps.find(app => app.name === 'SpotveeC');
} else if (repo === 'SpotilifeC') {
app = sourceData.apps.find(app => app.name === 'SpotilifeC');
}
const latestVersion = ghData.tag_name;
const downloadUrl = app.downloadURL;
let cleanChangelog = ghData.body;
const endIndex = ghData.body.indexOf('***');
if (endIndex !== -1) {
cleanChangelog = ghData.body.substring(0, endIndex);
}
let changelogLines = cleanChangelog.split('\n');
const changelogIndex = changelogLines.findIndex(line => line.toLowerCase().includes('changelog'));
if (changelogIndex !== -1) {
changelogLines = changelogLines.slice(changelogIndex + 1);
}
let htmlChangelog = changelogLines.join('<br>');
htmlChangelog = htmlChangelog.replace(/\[([^\]]+)\]\(([^\)]+)\)/g, '<a href="$2">$1</a>')
const finalHtmlChangelog = htmlChangelog.replace(/<\s*\/?\s*br\s*\/?\s*>\s*<\s*\/?\s*br\s*\/?\s*>/gi, "<br>");
const downloadButton = document.getElementById(downloadButtonId);
downloadButton.href = downloadUrl;
changelogElement.innerHTML = `<strong>Version ${latestVersion} </strong><strong>Changelog:<br></strong><br>${finalHtmlChangelog}`;
} catch (error) {
console.error('Error fetching changelog:', error);}
}
document.addEventListener('DOMContentLoaded', () => {
fetchChangelog('SpotC-Plus-Plus', 'changelog-spotcpp', 'download-button-spotcpp');
fetchChangelog('SpotveeC', 'changelog-spotveec', 'download-button-spotveec');
fetchChangelog('SpotilifeC', 'changelog-spotilifec', 'download-button-spotilifec');
});
</script>
</head>
<body>
<header class="header">
<a href="https://github.com/SpotCompiled" class="github-icon" target="_blank" rel="noopener noreferrer" aria-label="GitHub Repository">
<img id="github-icon-img" src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="GitHub">
</a>
<h1>SpotCompiled</h1>
<p>Compiled Spotify IPAs with enhanced features for a better listening experience.</p>
<div class="jump-buttons">
<button class="button secondary" onclick="scrollToSection('about-section')">About</button>
<button class="button secondary" onclick="scrollToSection('apps-section')">Apps</button>
<button class="button secondary" onclick="scrollToSection('adding-section')">Add Repo</button>
<button class="button secondary" onclick="scrollToSection('credits-section')">Credits</button>
</div>
</header>
<main class="container">
<section class="section" id="about-section">
<h2>About SpotCompiled</h2>
<p style="color: var(--muted-foreground);">SpotCompiled provides compiled Spotify IPAs with various enhancements, including ad-free experiences, unlimited skips, and more. The main projects include SpotC++, SpotveeC, and SpotilifeC, designed to be easily sideloaded onto your device.</p>
</section>
<section class="section" id="apps-section">
<h2>Apps</h2>
<div class="links-grid">
<div class="app-card">
<img class="icon" src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/SpotC++%20AppIcon.png" alt="SpotC++ Icon">
<h3>SpotC++</h3>
<p>The ultimate compilation of Spotify enhancements.</p>
<div class="screenshots">
<img src="https://raw.githubusercontent.com/SpotCompiled/SpotC-AltStore-Repo/main/SpotveeC%20ScreenShot%201.png" alt="Screenshot 1">
<img src="https://raw.githubusercontent.com/SpotCompiled/SpotC-AltStore-Repo/main/SpotveeC%20ScreenShot%202.png" alt="Screenshot 2">
<img src="https://raw.githubusercontent.com/SpotCompiled/SpotC-AltStore-Repo/main/SpotveeC%20ScreenShot%203.png" alt="Screenshot 3">
<img src="https://raw.githubusercontent.com/SpotCompiled/SpotC-AltStore-Repo/main/SpotveeC%20ScreenShot%204.png" alt="Screenshot 4">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Sposify%20Settings%201.png" alt="Settings Screenshot 1">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Sposify%20Settings%202.png" alt="Settings Screenshot 2">
</div>
<div class="changelog" id="changelog-spotcpp">Loading changelog...</div>
<a id="download-button-spotcpp" class="button" href="https://github.com/SpotCompiled/SpotC-Plus-Plus/releases/latest" target="_blank" rel="noopener noreferrer">Download SpotC++</a>
</div>
<div class="app-card">
<img class="icon" src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/SpotilifeC%20AppIcon.png" alt="SpotveeC Icon">
<h3>SpotveeC</h3>
<p>Experience enhanced Spotify features with SpotveeC.</p>
<div class="screenshots">
<img src="https://raw.githubusercontent.com/SpotCompiled/SpotC-AltStore-Repo/main/SpotveeC%20ScreenShot%201.png" alt="Screenshot 1">
<img src="https://raw.githubusercontent.com/SpotCompiled/SpotC-AltStore-Repo/main/SpotveeC%20ScreenShot%202.png" alt="Screenshot 2">
<img src="https://raw.githubusercontent.com/SpotCompiled/SpotC-AltStore-Repo/main/SpotveeC%20ScreenShot%203.png" alt="Screenshot 3">
<img src="https://raw.githubusercontent.com/SpotCompiled/SpotC-AltStore-Repo/main/SpotveeC%20ScreenShot%204.png" alt="Screenshot 4">
</div>
<div class="changelog" id="changelog-spotveec">Loading changelog...</div>
<a id="download-button-spotveec" class="button" href="https://github.com/SpotCompiled/SpotveeC/releases/latest" target="_blank" rel="noopener noreferrer">Download SpotveeC</a>
</div>
<div class="app-card">
<img class="icon" src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/SpotilifeC%20AppIcon.png" alt="SpotilifeC Icon">
<h3>SpotilifeC</h3>
<p>Enjoy Spotify without ads and with unlimited skips.</p>
<p class="notice">SpotilifeC is outdated. We recommend using SpotveeC instead for the latest features and support.</p>
<div class="screenshots">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Spotilife%20Playing%20SS.png" alt="Screenshot 1">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Spotilife%20PlayList%20SS.png" alt="Screenshot 2">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Spotilife%20Library%20View%20SS.png" alt="Screenshot 3">
</div>
<div class="changelog" id="changelog-spotilifec">Loading changelog...</div>
<a id="download-button-spotilifec" class="button" href="https://github.com/SpotCompiled/SpotilifeC/releases/latest" target="_blank" rel="noopener noreferrer">Download SpotilifeC</a>
</div>
</div>
</section>
<section class="section" id="adding-section">
<h2>Adding to Sideloading Apps</h2>
<div class="repo-instructions">
<h3>AltStore / SideStore</h3>
<p style="color: var(--muted-foreground);">You can add our repository for automatic updates. <a href="altstore://source?url=https://spotc-repo.yodaluca.dev/AltStore%20Repo.json">Click here to add the repo automatically</a>, or follow the steps below:</p>
<ol>
<li>In AltStore/SideStore, navigate to the "Browse" tab and tap "Sources" in the top corner.</li>
<li>Tap the "+" button and enter the source URL: <code>https://spotc-repo.yodaluca.dev/AltStore Repo.json</code></li>
<li>The "SpotC" apps will now appear in your browse tab for easy installation and updates.</li>
</ol>
</div>
<div class="repo-instructions">
<h3>Scarlet / Others</h3>
<p style="color: var(--muted-foreground);">Add our repo to Scarlet for automatic updates:</p>
<ol>
<li>In Scarlet, press and hold the download icon in the top right.</li>
<li>Select "Manage Repos" and then "Add Repo".</li>
<li>Enter the URL: <code>https://spotc-repo.yodaluca.dev/Scarlet Repo.json</code></li>
<li>SpotC apps will now be available to install and update from within the app.</li>
</ol>
</div>
</section>
<section class="section" id="credits-section">
<h2>Credits</h2>
<p style="color: var(--muted-foreground);">Special thanks to the following projects and individuals for their contributions:</p>
<ul>
<li><a href="https://armconverter.com/decryptedappstore/us/spotify" target="_blank" rel="noopener noreferrer">IOS God's Decrypted App Store</a> & <a href="https://appdb.to/app/ios/324684580" target="_blank" rel="noopener noreferrer">AppDB</a> - <em>Decrypted Vanilla Spotify IPA</em></li>
<li><a href="https://julio.hackyouriphone.org/" target="_blank" rel="noopener noreferrer">julioverne</a> - <em>For Spotilife</em></li>
<li><a href="https://github.com/whoeevee/EeveeSpotify" target="_blank" rel="noopener noreferrer">Whoeevee</a> - <em>For EeveeSpotify</em></li>
<li><a href="https://repo.dynastic.co/package/com.spos" target="_blank" rel="noopener noreferrer">aesthyrica</a> - <em>For Sposify</em></li>
<li><a href="https://level3tjg.me/repo/" target="_blank" rel="noopener noreferrer">level3tjg</a> - <em>For Sposify Fix</em></li>
<li><a href="https://appdb.to/app/cydia/1900000540" target="_blank" rel="noopener noreferrer">Am1nCmd</a> - <em>For Screenshots</em></li>
<li><a href="https://github.com/RobyRew" target="_blank" rel="noopener noreferrer">@RobyRew</a> - <em>For helping setup a lot of things</em></li>
</ul>
</section>
</main>
<footer class="footer">
<p>We are not affiliated, associated, authorized, endorsed by, or in any way officially connected with Spotify or any of its subsidiaries or affiliates. All product and company names are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.</p>
</footer>
</body>
</html>