Skip to content

Commit 75c9ef2

Browse files
committed
5.2.7 - Archive
1 parent 1bf6993 commit 75c9ef2

File tree

11 files changed

+33
-27
lines changed

11 files changed

+33
-27
lines changed

index.js

-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,6 @@ const routes = [
136136
{ path: "/vk", file: "settings.html" },
137137
{ path: "/rx", file: "tabs.html" },
138138
{ path: "/", file: "index.html" },
139-
{ path: "/tos", file: "tos.html" },
140-
{ path: "/privacy", file: "privacy.html" },
141139
];
142140

143141
// biome-ignore lint/complexity/noForEach:

static/404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ <h3>Page not found.</h3>
4343
<script src="/assets/js/i.js?v=02"></script>
4444
<script src="/assets/ultra/bundle.js?v=10-02-2024"></script>
4545
<script src="/assets/ultra/config.js?v=10-02-2024"></script>
46-
<script src="/assets/js/m.js?v=06"></script>
46+
<script src="/assets/js/m.js?v=07"></script>
4747
</html>

static/apps.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
</div>
5151
<div class="pinned-apps"></div>
5252
<div class="container-apps"></div>
53-
<script src="assets/js/c.js?v=02"></script>
54-
<script src="/assets/js/m.js?v=06"></script>
53+
<script src="assets/js/c.js?v=04"></script>
54+
<script src="/assets/js/m.js?v=07"></script>
5555
<script
5656
async
5757
src="https://www.googletagmanager.com/gtag/js?id=G-WKJQ5QHQTJ"

static/assets/js/c.js

+21-6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ const a = window.location.pathname === "/yz";
44
const c = window.location.pathname === "/gt";
55
const t = window.top.location.pathname === "/rx";
66

7+
function Span(name) {
8+
return name.split("").map(char => {
9+
const span = document.createElement("span");
10+
span.textContent = char;
11+
return span;
12+
});
13+
}
14+
715
function saveToLocal(path) {
816
sessionStorage.setItem("GoUrl", path);
917
}
@@ -195,7 +203,11 @@ function CreateCustomApp(customApp) {
195203
image.loading = "lazy";
196204

197205
const paragraph = document.createElement("p");
198-
paragraph.textContent = customApp.name;
206+
207+
for (const span of Span(customApp.name)) {
208+
paragraph.appendChild(span);
209+
}
210+
199211

200212
linkElem.appendChild(image);
201213
linkElem.appendChild(paragraph);
@@ -317,7 +329,10 @@ fetch(path)
317329
}
318330

319331
const paragraph = document.createElement("p");
320-
paragraph.textContent = app.name;
332+
333+
for (const span of Span(app.name)) {
334+
paragraph.appendChild(span);
335+
}
321336

322337
if (app.error) {
323338
paragraph.style.color = "red";
@@ -369,9 +384,9 @@ function showCategory() {
369384
const selectedCategories = Array.from(
370385
document.querySelectorAll("#category option:checked"),
371386
).map(option => option.value);
372-
const games = document.getElementsByClassName("column");
387+
const g = document.getElementsByClassName("column");
373388

374-
for (const game of games) {
389+
for (const game of g) {
375390
const categories = game.getAttribute("data-category").split(" ");
376391

377392
if (
@@ -388,9 +403,9 @@ function showCategory() {
388403
function searchBar() {
389404
const input = document.getElementById("searchbarbottom");
390405
const filter = input.value.toLowerCase();
391-
const games = document.getElementsByClassName("column");
406+
const g = document.getElementsByClassName("column");
392407

393-
for (const game of games) {
408+
for (const game of g) {
394409
const name = game.getElementsByTagName("p")[0].textContent.toLowerCase();
395410

396411
if (name.includes(filter)) {

static/assets/js/home.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if (
1414
const popup = open("about:blank", "_blank");
1515
if (!popup || popup.closed) {
1616
alert(
17-
"Please allow popups for this site. Doing so will allow us to open the site in a about:blank tab and preventing this site from showing up in your history. You can turn this off in the site settings.\n\nBy using Interstellar services, you confirm you have read and agreed to the terms listed in our Terms of Service and Privacy Policy, which can be found on the bottom of the settings page.",
17+
"Please allow popups for this site. Doing so will allow us to open the site in a about:blank tab and preventing this site from showing up in your history. You can turn this off in the site settings.",
1818
);
1919
} else {
2020
const doc = popup.document;

static/assets/js/m.js

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ if (themes[themeid]) {
6262
document.head.appendChild(customThemeEle);
6363
}
6464

65-
// Tab Cloaker
6665
document.addEventListener("DOMContentLoaded", () => {
6766
const icon = document.getElementById("tab-favicon");
6867
const name = document.getElementById("t");

static/assets/js/settings.js

-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ function saveEventKey() {
110110
// biome-ignore lint/correctness/noSelfAssign:
111111
window.location = window.location;
112112
}
113-
// Tab Cloaker
114113
const dropdown = document.getElementById("dropdown");
115114
const options = dropdown.getElementsByTagName("option");
116115

static/games.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@
3737
</div>
3838
<div class="pinned-apps"></div>
3939
<div class="container-apps"></div>
40-
<script src="/assets/js/c.js?v=02"></script>
40+
<script src="/assets/js/c.js?v=04"></script>
4141
<script src="./assets/ultra/bundle.js?v=10-02-2024"></script>
4242
<script src="./assets/ultra/config.js?v=10-02-2024"></script>
4343
<script src="assets/js/f.js"></script>
44-
<script src="/assets/js/m.js?v=06"></script>
44+
<script src="/assets/js/m.js?v=07"></script>
4545
<script
4646
async
4747
src="https://www.googletagmanager.com/gtag/js?id=G-WKJQ5QHQTJ"

static/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ <h1 class="title">&#73;&#110;&#116;&#101;&#114;&#115;&#116;&#101;&#108;&#108;&#9
3232
</div>
3333
</div>
3434
<script src="assets/js/i.js?v=02"></script>
35-
<script src="/assets/js/home.js?v=26"></script>
35+
<script src="/assets/js/home.js?v=00"></script>
3636
<script src="./assets/ultra/bundle.js?v=10-02-2024"></script>
3737
<script src="./assets/ultra/config.js?v=10-02-2024"></script>
3838
<script src="assets/js/f.js"></script>
39-
<script src="/assets/js/m.js?v=06"></script>
39+
<script src="/assets/js/m.js?v=07"></script>
4040
<!-- DO NOT REMOVE-->
4141
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WKJQ5QHQTJ"></script>
4242
<script>

static/settings.html

+3-8
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ <h3>Set Panic Key</h3>
6767
</button>
6868
</div>
6969
<div class="settings-card">
70-
<h3>Tab Cloaker</h3>
70+
<h3>&#84;&#97;&#98;&#32;&#67;&#108;&#111;&#97;&#107;&#101;&#114;</h3>
7171
<p>Change the title and icon of the page.</p>
7272
<select id="dropdown" onchange="handleDropdownChange(this)">
7373
<option value="Classroom">Default</option>
@@ -257,16 +257,11 @@ <h3>Information</h3>
257257
>, or
258258
<a href="https://docs.gointerstellar.app/faq">check our FAQ</a>!
259259
</p>
260-
<p>
261-
By using Interstellar services, you confirm you have read and agreed
262-
to the terms listed in our
263-
<a href="/tos">Terms of Service and Privacy Policy</a>.
264-
</p>
265260
</div>
266261
</div>
267262
</div>
268-
<script src="/assets/js/m.js?v=06"></script>
269-
<script src="/assets/js/settings.js?v=09"></script>
263+
<script src="/assets/js/m.js?v=07"></script>
264+
<script src="/assets/js/settings.js?v=010"></script>
270265
<!-- DO NOT REMOVE-->
271266
<script
272267
async

static/tabs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<script src="assets/js/t.js?v=03"></script>
9494
<script src="./assets/ultra/bundle.js?v=10-02-2024"></script>
9595
<script src="./assets/ultra/config.js?v=10-02-2024"></script>
96-
<script src="/assets/js/m.js?v=06"></script>
96+
<script src="/assets/js/m.js?v=07"></script>
9797
<!-- DO NOT REMOVE-->
9898
<script
9999
async

0 commit comments

Comments
 (0)