-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
428 lines (366 loc) · 18.6 KB
/
index.html
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
<!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="manifest" 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="#5bbad5">
<link rel="shortcut icon" href="https://raw.githubusercontent.com/SpotCompiled/.github/main/SpotC%20Icon.png">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="https://raw.githubusercontent.com/SpotCompiled/.github/main/SpotC%20Icon.png">
<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>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #1DB954, #1ED760);
color: #333;
}
.fancy-button {
background-color: #179744;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px;
transition: background-color 0.3s, color 0.3s;
}
.fancy-button:hover {
background-color: #1dda63;
color: #fff;
}
.jump-button {
background-color: #179744;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px;
transition: background-color 0.3s;
}
.jump-button:hover {
background-color: #1dda63;
}
.header {
background: #191414;
color: white;
padding: 20px;
text-align: center;
}
.container {
padding: 20px;
}
.section {
margin: 20px 0;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section h2 {
margin-top: 0;
}
.links {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(calc(33.333% - 40px), 1fr));
grid-gap: 20px;
}
.link-item {
text-align: center;
background: #f9f9f9;
padding: 20px;
border-radius: 8px;
transition: box-shadow 0.3s;
position: relative;
}
@media (max-width: 1000px) {
.links {
grid-template-columns: repeat(auto-fill, minmax(calc(50% - 40px), 1fr));
}
}
@media (max-width: 675px) {
.links {
grid-template-columns: repeat(auto-fill, minmax(calc(100% - 40px), 1fr));
}
}
.link-item:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.link-item img {
width: 100px;
height: 100px;
border-radius: 20%;
}
.link-item h3 {
margin: 10px 0 5px;
}
.notice {
color: red;
font-weight: bold;
}
.screenshots {
display: flex;
overflow-x: auto;
overflow-y: hidden;
margin: 10px 0;
height: 500px;
}
.screenshots img {
height: 500px;
width: 450px;
margin-right: 10px;
border-radius: 10% !important;
}
.changelog {
background: #f0f0f0;
padding: 10px;
border-radius: 8px;
text-align: left;
font-size: 0.9em;
}
.credits {
font-size: 0.9em;
color: #555;
}
#disclaimer-section {
background: #111213;
padding: 20px;
text-align: left;
font-size: 0.9em;
color: #555;
margin-top: 20px;
border-radius: 0;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#disclaimer-section p {
margin: 0;
}
.github-icon {
position: absolute;
top: 10px;
left: 10px;
}
.github-icon img {
width: 30px;
height: 30px;
border-radius: 50%;
}
@media (prefers-color-scheme: dark) {
body {
background: linear-gradient(135deg, #0b3d2e, #146b48);
color: #ddd;
}
.header {
background: #000000;
color: #fff;
}
.section {
background: #212121;
color: #fff;
box-shadow: 0 0 10px rgba(66, 66, 66, 0.5);
}
.link-item {
background: #303030;
color: #ddd;
}
.fancy-button {
background-color: #1da86d;
color: #fff;
}
.jump-button {
background-color: #1da86d;
color: #fff;
}
.changelog {
background: #111111;
color: #ddd;
}
.credits {
color: #aaa;
}
#disclaimer-section {
background: #000000;
color: #aaa;
}
}
</style>
<script>
// JavaScript function to handle smooth scrolling
function scrollToSection(sectionId) {
const section = document.getElementById(sectionId);
if (section) {
section.scrollIntoView({
behavior: 'smooth'
});
}
}
</script>
<script>
async function fetchChangelog(repo, elementId, downloadButtonId) {
const url = `https://api.github.com/repos/SpotCompiled/${repo}/releases/latest`;
try {
const response = await fetch(url);
const data = await response.json();
const changelogElement = document.getElementById(elementId);
// Extract latest version
const latestVersion = data.tag_name;
// Extract download URL for IPA file
const downloadUrl = data.assets.find(asset => asset.name.endsWith('.ipa') && !asset.name.includes('ALTSTORE')).browser_download_url;
// Remove everything after "***"
const endIndex = data.body.indexOf('***');
if (endIndex !== -1) {
cleanChangelog = data.body.substring(0, endIndex);
}
// Split the changelog text by newline
let changelogLines = cleanChangelog.split('\n');
// Find the index of the line that contains "## Changelog"
const changelogIndex = changelogLines.findIndex(line => line.toLowerCase().includes('changelog'));
// Remove everything above/including "## Changelog"
if (changelogIndex !== -1) {
changelogLines = changelogLines.slice(changelogIndex + 1);
}
let htmlChangelog = changelogLines.join('<br>');
// Convert markdown links to HTML links
htmlChangelog = htmlChangelog.replace(/\[([^\]]+)\]\(([^\)]+)\)/g, '<a href="$2">$1</a>')
// Replace multiple linebreaks with one
const finalHtmlChangelog = htmlChangelog.replace(/<\s*\/?\s*br\s*\/?\s*>\s*<\s*\/?\s*br\s*\/?\s*>/gi, "<br>");
// Update download button with latest release URL
const downloadButton = document.getElementById(downloadButtonId);
downloadButton.href = downloadUrl;
// Update HTML content with latest version and changelog
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>
<a href="https://github.com/SpotCompiled" class="github-icon" target="_blank">
<img id="github-icon-img" src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="GitHub">
</a>
<div class="header">
<h1>SpotCompiled</h1>
<p>Compiled Spotify IPAs with enhanced features</p>
<button class="jump-button" onclick="scrollToSection('about-section')">About SpotCompiled</button>
<button class="jump-button" onclick="scrollToSection('apps-section')">Apps</button>
<button class="jump-button" onclick="scrollToSection('adding-section')">Adding to AltStore/SideStore</button>
<button class="jump-button" onclick="scrollToSection('credits-section')">Credits</button>
</div>
<div class="container">
<div class="section">
<div class="section" id="about-section">
<h2>About SpotCompiled</h2>
<p>SpotCompiled provides compiled Spotify IPAs with various enhancements, including ad-free experiences, unlimited skips, and more. The main projects include SpotC++, SpotveeC, and SpotilifeC.</p>
</div>
</div>
<div class="section">
<div class="section" id="apps-section">
<h2>Apps</h2>
<div class="links">
<div class="link-item">
<img 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>
<a id="download-button-spotcpp" class="fancy-button" href="https://github.com/SpotCompiled/SpotC-Plus-Plus/releases/latest">Download SpotC++</a>
<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">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Sposify%20Car%20Mode.png" alt="Car Mode Screenshot">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Spotilife%20Playing%20SS.png" alt="Spotilife Playing Screenshot">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Spotilife%20PlayList%20SS.png" alt="Spotilife Playlist Screenshot">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Spotilife%20Library%20View%20SS.png" alt="Spotilife Library View Screenshot">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Sposify%20Lyrics%20Screen.png" alt="Sposify Lyrics Screen Screenshot">
</div>
<div class="changelog" id="changelog-spotcpp">Loading changelog...</div>
</div>
<div class="link-item">
<img 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>
<a id="download-button-spotveec" class="fancy-button" href="https://github.com/SpotCompiled/SpotveeC/releases/latest">Download SpotveeC</a>
<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/Spotilife%20Playing%20SS.png" alt="Playing Screenshot">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Spotilife%20PlayList%20SS.png" alt="Playlist Screenshot">
<img src="https://github.com/SpotCompiled/SpotC-AltStore-Repo/raw/main/Spotilife%20Library%20View%20SS.png" alt="Library View Screenshot">
</div>
<div class="changelog" id="changelog-spotveec">Loading changelog...</div>
</div>
<div class="link-item">
<img 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">Notice: SpotilifeC is outdated. We recommend using SpotveeC instead.</p>
<a id="download-button-spotilifec" class="fancy-button" href="https://github.com/SpotCompiled/SpotilifeC/releases/latest">Download SpotilifeC</a>
<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>
</div>
</div>
</div>
</div>
<div class="section">
<div class="section" id="adding-section">
<h2>Adding to AltStore/SideStore</h2>
<p>You can add our repository to AltStore or SideStore for automatic updates and convenience. Follow the steps below:</p>
<ol>
<li>Tap "Sources" in the top-right corner of the Browse tab.</li>
<li>Tap the "+" button and add the source URL: <a href="https://tiny.one/SpotC">https://tiny.one/SpotC</a></li>
<li>Now any "SpotC" apps will show up in AltStore/SideStore under the "Browse" tab.</li>
</ol>
</div>
</div>
<div class="section credits">
<div class="section" id="credits-section">
<h2>Credits</h2>
<p>Special thanks to the following for their contributions:</p>
<ul>
<li><a href="https://armconverter.com/decryptedappstore/us/spotify">IOS God's Dycrypted App Store</a> and <a href="https://appdb.to/app/ios/324684580">AppDB</a> - <em>Dycrypted Vanilla Spotify IPA</em></li>
<li><a href="https://julio.hackyouriphone.org/">julioverne- Spotilife</a> - <em>For Spotilife tweaked .deb</em></li>
<li><a href="https://github.com/whoeevee/EeveeSpotify">Whoeevee- EeveeSpotify</a> - <em>For EeveeSpotify tweaked .deb</em></li>
<li><a href="https://repo.dynastic.co/package/com.spos">aesthyrica- Sposify</a> - <em>For Sposify tweaked .deb</em></li>
<li><a href="https://chariz.com/get/orion-runtime14">Theos Team- Orion Runtime (iOS 14 - 16)</a> - <em>For Orion Runtime (iOS 14 - 16) tweaked .deb</em></li>
<li><a href="https://github.com/apple/swift-protobuf">Apple inc.- Swift Protobuf</a></li>
<li><a href="https://level3tjg.me/repo/">level3tjg- Sposify Fix</a> - <em>For Sposify Fix tweaked .deb</em></li>
<li><a href="https://appdb.to/app/cydia/1900000540">Am1nCmd- Spotify++</a> - <em>For ScreenShots</em></li>
<li><a href="https://github.com/RobyRew">@RobyRew</a> - <em>For helping me setup a lot of things</em></li>
</ul>
</div>
</div>
</div>
<div id="disclaimer-section">
<p>We are not affiliated, associated, authorized, endorsed by, or in any way officially connected with any other company, agency, or government agency. 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>
</div>
</body>
</html>