diff --git a/constants.json b/constants.json
index 68bfbe3..0ae64ea 100644
--- a/constants.json
+++ b/constants.json
@@ -345,6 +345,12 @@
"YIP"
],
"italicized": true
+ },
+ {
+ "words": [
+ "Miley"
+ ],
+ "color": "rgb(255, 255, 175)"
}
]
}
\ No newline at end of file
diff --git a/pageUpdater.js b/pageUpdater.js
index 25c6e78..dd75dd9 100644
--- a/pageUpdater.js
+++ b/pageUpdater.js
@@ -507,6 +507,8 @@ module.exports = {
data = new cssMinifier().minify(data).styles
} else if (filePath.includes(".js")) {
data = javascriptCache[filePath]
+ } else {
+ data = fs.readFileSync(filePath)
}
res.send(data)
diff --git a/static/favicon.ico b/static/favicon.ico
index e69de29..1b74ed8 100644
Binary files a/static/favicon.ico and b/static/favicon.ico differ
diff --git a/static/index.html b/static/index.html
index 5acabf1..dd9c60e 100644
--- a/static/index.html
+++ b/static/index.html
@@ -19,6 +19,8 @@
Violet's Purgatory
+
+
@@ -100,6 +102,12 @@
{SELECTED_VIDEO}
+
+ Credits
+
+
{PATH_STATS}
{WEATHER_TEXT}
diff --git a/static/js/lanyardSocket.js b/static/js/lanyardSocket.js
index 65e64b4..03a058a 100644
--- a/static/js/lanyardSocket.js
+++ b/static/js/lanyardSocket.js
@@ -42,12 +42,8 @@ function socketeer() {
if (data.op == 4) {
$("#apiConnected").text("true")
globalSpins = data.spins
- if (firsttimeDebounce == true) {
- firsttimeDebounce = false
- $(".globalSpins").innerHTML = globalSpins + 1;
- } else {
- $(".globalSpins").innerHTML = globalSpins;
- }
+ $(".globalSpins").text(globalSpins);
+
} else if (data.op == 0) {
var lanyard = data.d
var statusInfo = discStatuses[lanyard.discord_status]
diff --git a/static/socials/index.html b/static/socials/index.html
index 1d73463..d896609 100644
--- a/static/socials/index.html
+++ b/static/socials/index.html
@@ -31,8 +31,7 @@
Here's most of the sites you can find me on!
{SOCIALS}(Full)
- Gray border = preferred, Yellow = neutral, Red = not preferred.
- Interacting via any site is perfectly fine! E.G. if you use both Fedi and Twitter, Twitter is red, so you should contact me through Fedi instead! But if you don't have Fedi, then just contact me through Twitter!
+ Sites with a Gray border are my most active.
diff --git a/static/style.css b/static/style.css
index b48e13f..26ae4ac 100644
--- a/static/style.css
+++ b/static/style.css
@@ -76,7 +76,7 @@ body, html {
}
a {
- display: inline-block;
+ display: inline;
transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
@@ -84,6 +84,15 @@ a[href] {
color: rgb(175, 225, 255);
}
+a:not(.chip)[href] {
+ text-decoration: none;
+
+ background-image: linear-gradient(rgb(175, 225, 255), rgb(175, 225, 255));
+ background-size: 100% 1px;
+ background-position-y: 100%;
+ background-repeat: no-repeat;
+}
+
h3 {
font-size: 1.5rem;
@@ -267,6 +276,15 @@ ul, ol {
max-width: 90%;
}
+ul {
+ list-style: none;
+}
+
+ul > li::before {
+ content: "-";
+ padding-right: 8px;
+}
+
li {
font-size: 1.2rem;
padding: 5px 0;