Skip to content

Commit 13e7e8c

Browse files
committed
5.2.6 - Remove flagged terms
1 parent dbb8c58 commit 13e7e8c

File tree

14 files changed

+84
-86
lines changed

14 files changed

+84
-86
lines changed

static/404.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
</head>
1818
<body>
19-
<div class="fixed-nav-bar"></div>
19+
<div class="f-nav"></div>
2020
<div class="main error">
2121
<h1>404</h1>
2222
<h3>Page not found.</h3>
@@ -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=07"></script>
46+
<script src="/assets/js/m.js?v=08"></script>
4747
</html>

static/apps.html

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -20,38 +20,38 @@
2020

2121
</head>
2222
<body>
23-
<div class="fixed-nav-bar"></div>
24-
<div class="input-container">
23+
<div class="f-nav"></div>
24+
<div class="input-c">
2525
<input
2626
type="text"
27-
id="searchbarbottom"
28-
onkeyup="searchBar()"
27+
id="search"
28+
onkeyup="bar()"
2929
placeholder="Search"
3030
/>
3131
<select
3232
title="Category"
3333
id="category"
3434
name="category"
35-
onchange="showCategory()"
35+
onchange="category()"
3636
>
37-
<option value="all">All</option>
38-
<option value="android">Android Emulator</option>
39-
<option value="social">Social</option>
40-
<option value="stream">Streaming</option>
41-
<option value="message">Messaging</option>
42-
<option value="media">TV & Movies</option>
43-
<option value="game">Game Sites</option>
44-
<option value="cloud">Cloud Gaming</option>
45-
<option value="tool">Tools</option>
46-
<option value="ai">AI</option>
47-
<option value="emu">Emulator</option>
48-
<option value="mail">Mail</option>
37+
<option value="all">&#65;&#108;&#108;</option>
38+
<option value="android">&#65;&#110;&#100;&#114;&#111;&#105;&#100;&#32;&#69;&#109;&#117;&#108;&#97;&#116;&#111;&#114;</option>
39+
<option value="social">&#83;&#111;&#99;&#105;&#97;&#108;</option>
40+
<option value="stream">&#83;&#116;&#114;&#101;&#97;&#109;</option>
41+
<option value="message">&#77;&#101;&#115;&#115;&#97;&#103;&#101;</option>
42+
<option value="media">&#84;&#86;&#32;&amp;&#32;&#77;&#111;&#118;&#105;&#101;&#115;</option>
43+
<option value="game">&#71;&#97;&#109;&#101;&#32;&#83;&#105;&#116;&#101;&#115;</option>
44+
<option value="cloud">&#67;&#108;&#111;&#117;&#100;&#32;&#71;&#97;&#109;&#105;&#110;&#103;</option>
45+
<option value="tool">&#84;&#111;&#111;&#108;&#115;</option>
46+
<option value="ai">&#65;&#73;</option>
47+
<option value="emu">&#69;&#109;&#117;&#108;&#97;&#116;&#111;&#114;</option>
48+
<option value="mail">&#77;&#97;&#105;&#108;</option>
4949
</select>
5050
</div>
51-
<div class="pinned-apps"></div>
52-
<div class="container-apps"></div>
53-
<script src="assets/js/c.js?v=04"></script>
54-
<script src="/assets/js/m.js?v=07"></script>
51+
<div class="pinned"></div>
52+
<div class="apps"></div>
53+
<script src="assets/js/c.js?v=05"></script>
54+
<script src="/assets/js/m.js?v=08"></script>
5555
<script
5656
async
5757
src="https://www.googletagmanager.com/gtag/js?id=G-WKJQ5QHQTJ"

static/assets/css/container.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
transform: translateX(-50%) scale(1.3);
4242
}
4343

44-
.container-apps {
44+
.apps {
4545
display: flex;
4646
flex-wrap: wrap;
4747
justify-content: center;
@@ -50,7 +50,7 @@
5050
margin-top: 30px;
5151
}
5252

53-
.pinned-apps {
53+
.pinned {
5454
margin-top: 20px;
5555
display: flex;
5656
flex-wrap: wrap;
@@ -82,7 +82,7 @@ select {
8282
cursor: pointer;
8383
}
8484

85-
.input-container {
85+
.input-c {
8686
position: relative;
8787
margin-top: 150px;
8888
display: flex;

static/assets/css/nav.css

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
33
}
44

5-
.fixed-nav-bar #icon-container {
5+
.f-nav #icon-container {
66
display: flex;
77
align-items: center;
88
}
@@ -13,13 +13,13 @@ img {
1313
padding-top: 5px;
1414
}
1515

16-
.fixed-nav-bar-container {
16+
.f-nav-container {
1717
min-width: 5vw;
1818
min-height: 10vh;
1919
display: inline;
2020
}
2121

22-
.fixed-nav-bar {
22+
.f-nav {
2323
top: 0;
2424
letter-spacing: 2px;
2525
font-size: 22px;
@@ -40,12 +40,12 @@ img {
4040
position: fixed;
4141
}
4242

43-
.fixed-nav-bar .icon:hover {
43+
.f-nav .icon:hover {
4444
transform: translateY(-15%) scale(1.03);
4545
font-weight: 800;
4646
}
4747

48-
.fixed-nav-bar .icon {
48+
.f-nav .icon {
4949
position: absolute;
5050
float: left;
5151
text-transform: uppercase;
@@ -62,7 +62,7 @@ img {
6262
top: 18%;
6363
}
6464

65-
.fixed-nav-bar-right {
65+
.f-nav-right {
6666
position: absolute;
6767
top: 50%;
6868
transform: translateY(-50%);
@@ -73,7 +73,7 @@ img {
7373
right: 2%;
7474
}
7575

76-
.fixed-nav-bar-right .navbar-link {
76+
.f-nav-right .navbar-link {
7777
margin-left: 10px;
7878
text-transform: uppercase;
7979
cursor: pointer;
@@ -88,7 +88,7 @@ img {
8888
}
8989

9090
@media (orientation: portrait) {
91-
.fixed-nav-bar-right .navbar-link {
91+
.f-nav-right .navbar-link {
9292
margin-left: 10px;
9393
text-transform: uppercase;
9494
font-size: 2.5vw;
@@ -102,7 +102,7 @@ img {
102102
transition: all 0.2s ease;
103103
transform: translateX(0%);
104104
}
105-
.fixed-nav-bar-right .navbar-link:hover {
105+
.f-nav-right .navbar-link:hover {
106106
text-transform: uppercase;
107107
cursor: pointer;
108108
font-weight: 800;
@@ -113,7 +113,7 @@ img {
113113
}
114114
}
115115

116-
.fixed-nav-bar-right .navbar-link:hover {
116+
.f-nav-right .navbar-link:hover {
117117
text-transform: uppercase;
118118
cursor: pointer;
119119
font-weight: 800;
@@ -138,13 +138,13 @@ img {
138138
}
139139

140140
@media (max-width: 768px) {
141-
.fixed-nav-bar-right .navbar-link an {
141+
.f-nav-right .navbar-link an {
142142
display: none;
143143
}
144-
.fixed-nav-bar-right .fa-solid {
144+
.f-nav-right .fa-solid {
145145
display: inline;
146146
}
147-
.fixed-nav-bar-right .navbar-link {
147+
.f-nav-right .navbar-link {
148148
font-size: 4.5vw;
149149
}
150150
}

static/assets/css/themes/catppuccin/frappe.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ input:checked + .slider-round {
3737
background-color: #000;
3838
}
3939

40-
.fixed-nav-bar-right .navbar-link {
40+
.f-nav-right .navbar-link {
4141
color: var(--ctp-frappe-mauve) /*mauve*/;
4242
}
4343

44-
.fixed-nav-bar-right:hover .navbar-link:hover {
44+
.f-nav-right:hover .navbar-link:hover {
4545
color: var(--ctp-frappe-blue) /*blue*/;
4646
}

static/assets/css/themes/catppuccin/latte.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ input:checked + .slider-round {
3636
background-color: #000;
3737
}
3838

39-
.fixed-nav-bar-right .navbar-link {
39+
.f-nav-right .navbar-link {
4040
color: var(--ctp-latte-mauve) /*mauve*/;
4141
}
4242

43-
.fixed-nav-bar-right:hover .navbar-link:hover {
43+
.f-nav-right:hover .navbar-link:hover {
4444
color: var(--ctp-latte-blue) /*blue*/;
4545
}

static/assets/css/themes/catppuccin/macchiato.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ input:checked + .slider-round {
3737
background-color: #000;
3838
}
3939

40-
.fixed-nav-bar-right .navbar-link {
40+
.f-nav-right .navbar-link {
4141
color: var(--ctp-macchiato-mauve) /*mauve*/;
4242
}
4343

44-
.fixed-nav-bar-right:hover .navbar-link:hover {
44+
.f-nav-right:hover .navbar-link:hover {
4545
color: var(--ctp-macchiato-blue) /*blue*/;
4646
}

static/assets/css/themes/catppuccin/mocha.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ input:checked + .slider-round {
3737
background-color: #000;
3838
}
3939

40-
.fixed-nav-bar-right .navbar-link {
40+
.f-nav-right .navbar-link {
4141
color: var(--ctp-mocha-mauve) /*mauve*/;
4242
}
4343

44-
.fixed-nav-bar-right:hover .navbar-link:hover {
44+
.f-nav-right:hover .navbar-link:hover {
4545
color: var(--ctp-mocha-blue) /*blue*/;
4646
}

static/assets/js/c.js

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -208,13 +208,12 @@ function CreateCustomApp(customApp) {
208208
paragraph.appendChild(span);
209209
}
210210

211-
212211
linkElem.appendChild(image);
213212
linkElem.appendChild(paragraph);
214213
columnDiv.appendChild(linkElem);
215214
columnDiv.appendChild(btn);
216215

217-
const nonPinnedApps = document.querySelector(".container-apps");
216+
const nonPinnedApps = document.querySelector(".apps");
218217
nonPinnedApps.insertBefore(columnDiv, nonPinnedApps.firstChild);
219218
}
220219

@@ -256,8 +255,8 @@ fetch(path)
256255
}
257256
return a.name.localeCompare(b.name);
258257
});
259-
const nonPinnedApps = document.querySelector(".container-apps");
260-
const pinnedApps = document.querySelector(".pinned-apps");
258+
const nonPinnedApps = document.querySelector(".apps");
259+
const pinnedApps = document.querySelector(".pinned");
261260
let pinList;
262261
if (g) {
263262
pinList = localStorage.getItem("Gpinned") || "";
@@ -329,9 +328,9 @@ fetch(path)
329328
}
330329

331330
const paragraph = document.createElement("p");
332-
331+
333332
for (const span of Span(app.name)) {
334-
paragraph.appendChild(span);
333+
paragraph.appendChild(span);
335334
}
336335

337336
if (app.error) {
@@ -380,7 +379,7 @@ fetch(path)
380379
console.error("Error fetching JSON data:", error);
381380
});
382381

383-
function showCategory() {
382+
function category() {
384383
const selectedCategories = Array.from(
385384
document.querySelectorAll("#category option:checked"),
386385
).map(option => option.value);
@@ -400,8 +399,8 @@ function showCategory() {
400399
}
401400
}
402401

403-
function searchBar() {
404-
const input = document.getElementById("searchbarbottom");
402+
function bar() {
403+
const input = document.getElementById("search");
405404
const filter = input.value.toLowerCase();
406405
const g = document.getElementsByClassName("column");
407406

static/assets/js/m.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ document.addEventListener("DOMContentLoaded", () => {
1818
});
1919

2020
// Nav
21-
const nav = document.querySelector(".fixed-nav-bar");
21+
const nav = document.querySelector(".f-nav");
2222

2323
if (nav) {
2424
const themeId = localStorage.getItem("theme");
@@ -30,7 +30,7 @@ if (nav) {
3030
<div id="icon-container">
3131
<a class="icon" href="/./"><img alt="nav" id="INImg" src="${LogoUrl}"/></a>
3232
</div>
33-
<div class="fixed-nav-bar-right">
33+
<div class="f-nav-right">
3434
<a class="navbar-link" href="/./up"><i class="fa-solid fa-gamepad navbar-icon"></i><an>&#71;&#97;</an><an>&#109;&#101;&#115;</an></a>
3535
<a class="navbar-link" href="/./yz"><i class="fa-solid fa-phone navbar-icon"></i><an>&#65;&#112;</an><an>&#112;&#115;</an></a>
3636
${window.top.location.pathname === "/rx" ? "" : '<a class="navbar-link" href="/./rx"><i class="fa-solid fa-laptop navbar-icon"></i><an>&#84;&#97;</an><an>&#98;&#115;</an></a>'}
@@ -45,12 +45,12 @@ const themeEle = document.createElement("link");
4545
themeEle.rel = "stylesheet";
4646

4747
const themes = {
48-
catppuccinMocha: "/assets/css/themes/catppuccin/mocha.css?v=4",
49-
catppuccinMacchiato: "/assets/css/themes/catppuccin/macchiato.css?v=4",
50-
catppuccinFrappe: "/assets/css/themes/catppuccin/frappe.css?v=4",
51-
catppuccinLatte: "/assets/css/themes/catppuccin/latte.css?v=4",
52-
Inverted: "/assets/css/themes/colors/inverted.css?v=4",
53-
sky: "/assets/css/themes/colors/sky.css?v=4",
48+
catppuccinMocha: "/assets/css/themes/catppuccin/mocha.css?v=00",
49+
catppuccinMacchiato: "/assets/css/themes/catppuccin/macchiato.css?v=00",
50+
catppuccinFrappe: "/assets/css/themes/catppuccin/frappe.css?v=00",
51+
catppuccinLatte: "/assets/css/themes/catppuccin/latte.css?v=00",
52+
Inverted: "/assets/css/themes/colors/inverted.css?v=00",
53+
sky: "/assets/css/themes/colors/sky.css?v=00",
5454
};
5555

5656
if (themes[themeid]) {

0 commit comments

Comments
 (0)