Skip to content

Commit fea4d8b

Browse files
committed
Clean up the entire repository, and rebrand
1 parent 3b5c03d commit fea4d8b

File tree

282 files changed

+118
-86041
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

282 files changed

+118
-86041
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
# If you are forking and want to set up your own website, adjust the repository and branch
1717
# below to match your repository or remove the condition entirely.
18-
if: ${{ github.repository == 'TurboWarp/extensions' && github.ref == 'refs/heads/master' }}
18+
if: ${{ github.repository == 'Nitro-Bolt/extensions' && github.ref == 'refs/heads/master' }}
1919

2020
steps:
2121
- name: Checkout

.github/workflows/label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
# Disabled by default for forks since this is probably not useful.
16-
if: ${{ github.repository == 'TurboWarp/extensions' }}
16+
if: ${{ github.repository == 'Nitro-Bolt/extensions' }}
1717

1818
permissions:
1919
pull-requests: write

.vscode/extension.code-snippets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"New unsandboxed TurboWarp extension": {
2+
"New unsandboxed NitroBolt extension": {
33
"prefix": "~extension",
4-
"description": "A template for an official TurboWarp extension.",
4+
"description": "A template for an official NitroBolt extension.",
55
"isFileTemplate": true,
66
"scope": "javascript",
77
"body": [

CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
extensions.turbowarp.org
1+
extensions.nitrobolt.org

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# TurboWarp Extension Gallery
1+
# NitroBolt Extension Gallery
22

3-
User-contributed unsandboxed extension gallery for TurboWarp.
3+
User-contributed unsandboxed extension gallery for NitroBolt.
44

5-
https://extensions.turbowarp.org/
5+
https://extensions.nitrobolt.org/
66

77
## Contributing
88

REVIEW_PROCESS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Extension review
22

3-
The status quo of having GarboMuffin review everything is an abject failure. The goal in this document is to define the expectations for approving and merging changes.
3+
The status quo of having Cubester review everything is an abject failure. The goal in this document is to define the expectations for approving and merging changes.
44

55
The requirements for merging a pull request are:
66

@@ -52,4 +52,4 @@ Any logic change inside a JavaScript file, even the most trivial one, means that
5252

5353
## Other things
5454

55-
Ping GarboMuffin early and often.
55+
Ping Cubester early and often.

development/builder.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ class HomepageFile extends BuildFile {
361361
this.host =
362362
mode === "development"
363363
? "http://localhost:8000/"
364-
: "https://extensions.turbowarp.org/";
364+
: "https://extensions.nitrobolt.org/";
365365
}
366366

367367
getType() {
@@ -377,7 +377,7 @@ class HomepageFile extends BuildFile {
377377
}
378378

379379
getRunExtensionURL(extensionSlug) {
380-
return `https://turbowarp.org/editor?extension=${this.getFullExtensionURL(
380+
return `https://nitrobolt.org/editor?extension=${this.getFullExtensionURL(
381381
extensionSlug
382382
)}`;
383383
}
@@ -388,7 +388,7 @@ class HomepageFile extends BuildFile {
388388
*/
389389
getRunSampleURL(sampleFile) {
390390
const path = encodeURIComponent(`samples/${sampleFile.getSlug()}`);
391-
return `https://turbowarp.org/editor?project_url=${this.host}${path}`;
391+
return `https://nitrobolt.org/editor?project_url=${this.host}${path}`;
392392
}
393393

394394
read() {
@@ -573,7 +573,7 @@ class SitemapFile extends BuildFile {
573573
if (a.length > b.length) return 1;
574574
return a - b;
575575
})
576-
.map((path) => `https://extensions.turbowarp.org${path}`)
576+
.map((path) => `https://extensions.nitrobolt.org${path}`)
577577
.map((absoluteURL) => `<url><loc>${absoluteURL}</loc></url>`)
578578
.join("\n");
579579

@@ -627,7 +627,7 @@ class SampleFile extends BuildFile {
627627

628628
for (const url of urls) {
629629
if (
630-
!url.startsWith("https://extensions.turbowarp.org/") ||
630+
!url.startsWith("https://extensions.nitrobolt.org/") ||
631631
!url.endsWith(".js")
632632
) {
633633
throw new Error(`Invalid extension URL for sample: ${url}`);
Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
const aliases = {
22
// maps old path to new path
3-
"/LukeManiaStudios/ClonesPlus.js": "/Lily/ClonesPlus.js",
4-
"/LukeManiaStudios/CommentBlocks.js": "/Lily/CommentBlocks.js",
5-
"/LukeManiaStudios/lmsutils.js": "/Lily/lmsutils.js",
6-
"/LukeManiaStudios/LooksPlus.js": "/Lily/LooksPlus.js",
7-
"/LukeManiaStudios/McUtils.js": "/Lily/McUtils.js",
8-
"/LukeManiaStudios/MoreTimers.js": "/Lily/MoreTimers.js",
9-
"/LukeManiaStudios/TempVariables.js": "/Lily/TempVariables.js",
10-
"/LukeManiaStudios/TempVariables2.js": "/Lily/TempVariables2.js",
113
};
124

135
export default aliases;

development/docs-template.ejs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<head>
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
6-
<title><%= headerText %> - TurboWarp Extension Documentation</title>
7-
<link rel="canonical" href="https://extensions.turbowarp.org/<%= slug %>">
6+
<title><%= headerText %> - NitroBolt Extension Documentation</title>
7+
<link rel="canonical" href="https://extensions.nitrobolt.org/<%= slug %>">
88
<style>
99
:root {
1010
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
@@ -180,13 +180,13 @@
180180
<body>
181181
<nav role="navigation">
182182
<div>
183-
<a href="https://extensions.turbowarp.org/">
184-
<img src="/turbowarp.svg" alt="">
185-
<span>TurboWarp Extension Gallery</span>
183+
<a href="https://extensions.nitrobolt.org/">
184+
<img src="/nitrobolt.svg" alt="">
185+
<span>NitroBolt Extension Gallery</span>
186186
</a>
187187

188188
<!-- Only used by desktop app -->
189-
<a class="view-in-browser" href="https://extensions.turbowarp.org/<%= slug %>">
189+
<a class="view-in-browser" href="https://extensions.nitrobolt.org/<%= slug %>">
190190
Read in browser
191191
</a>
192192
</div>
@@ -203,12 +203,12 @@
203203

204204
<footer>
205205
<p>
206-
This page is <a href="https://github.com/TurboWarp/extensions/tree/master/docs">open source</a>.
206+
This page is <a href="https://github.com/Nitro-Bolt/extensions/tree/master/docs">open source</a>.
207207
<% if (usesScratchBlocks) { %>
208208
Blocks rendered with <a href="https://scratchblocks.github.io/">scratchblocks</a>.
209209
<% } %>
210210
</p>
211-
<p>TurboWarp is not affiliated with Scratch, the Scratch Team, or the Scratch Foundation.</p>
211+
<p>NitroBolt is not affiliated with Scratch, the Scratch Team, or the Scratch Foundation.</p>
212212
</footer>
213213
</main>
214214

0 commit comments

Comments
 (0)