Skip to content

Commit f35150b

Browse files
authored
Merge branch 'STForScratch:main' into main
2 parents 263649b + c5c672e commit f35150b

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

changelog/changes.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
],
1515
"fixed": [
1616
"Fix settings page modals in dark mode.",
17-
"Fix hide advertisements colors."
17+
"Fix hide advertisements colors.",
18+
"Fix odd sizing of features on settings page."
1819
]
1920
}

features/forum-homepage-emojis.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
if (window.location.href.startsWith("https://scratch.mit.edu/discuss/")) {
22
// Headers
3-
document.querySelector("#category_head_4").textContent =
3+
document.querySelector("#category_head_4").lastChild.textContent =
44
"🙋‍♂️ Welcome to Scratch";
5-
document.querySelector("#category_head_5").textContent =
5+
document.querySelector("#category_head_5").lastChild.textContent =
66
"🧑‍💻 Making Scratch Projects";
7-
document.querySelector("#category_head_2").textContent = "😺 About Scratch";
8-
document.querySelector("#category_head_7").textContent =
7+
document.querySelector("#category_head_2").lastChild.textContent = "😺 About Scratch";
8+
document.querySelector("#category_head_7").lastChild.textContent =
99
"⚽ Interests Beyond Scratch";
10-
document.querySelector("#category_head_6").textContent =
10+
document.querySelector("#category_head_6").lastChild.textContent =
1111
"🌏 Scratch Around the World";
1212

1313
//Categories

features/most-popular-project.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ function addBox(title, id, views, instructions) {
7777
thumbnail.style.width = "300px";
7878
p.style.textAlign = "left";
7979
p.style.float = "left";
80+
p.style.whiteSpace = "pre-line";
8081
boxContent.style.height = "250px";
8182
boxContent.style.overflowY = "hidden";
8283
thumbnail.style.textAlign = "right";

features/unlisted-projects/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ async function createButton(el) {
7373
let span = document.createElement("span");
7474
btn.role = "button";
7575
btn.className = "button";
76-
span.style.backgroundColor = "#ff9f00";
76+
span.style.backgroundColor = "#ff8c1a";
7777
btn.classList = classList;
7878
btn.style.display = "none";
7979
btn.classList.add("scratchtools-unlisted");

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "__MSG_extName__",
33
"short_name": "__MSG_extName__",
44
"manifest_version": 3,
5-
"version": "2.30.0",
6-
"version_name": "2.30.0",
5+
"version": "2.30.1",
6+
"version_name": "2.30.1-beta",
77
"default_locale": "en",
88
"description": "__MSG_extDescription__",
99
"author": "rgantzos",

0 commit comments

Comments
 (0)