mirror of
https://github.com/SwingTheVine/Wplace-BlueMarble.git
synced 2026-04-21 19:31:56 +00:00
Added GreasyFork version
This commit is contained in:
parent
08033ade52
commit
6218c3c95b
10 changed files with 1959 additions and 74 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -100,7 +100,11 @@ jobs:
|
||||||
|
|
||||||
- name: Update compression badge
|
- name: Update compression badge
|
||||||
run: |
|
run: |
|
||||||
dist_size=$(find dist -type f -exec cat {} + | wc -c)
|
dist_size=$(find dist -type f \
|
||||||
|
! -name "BlueMarble-Standalone.user.js" \
|
||||||
|
! -name "BlueMarble-For-GreasyFork.user.js" \
|
||||||
|
-exec cat {} + | wc -c)
|
||||||
|
|
||||||
src_size=$(find src dist/assets -type f -exec cat {} + | wc -c)
|
src_size=$(find src dist/assets -type f -exec cat {} + | wc -c)
|
||||||
percentage=$(awk "BEGIN {printf \"%.2f\", 100 - ($dist_size * 100) / $src_size}")
|
percentage=$(awk "BEGIN {printf \"%.2f\", 100 - ($dist_size * 100) / $src_size}")
|
||||||
echo "Compression: $percentage"
|
echo "Compression: $percentage"
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ console.log(`${consoleStyle.BLUE}Starting build...${consoleStyle.RESET}`);
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
|
|
||||||
console.log(`${consoleStyle.BLUE}Building 1 of 2...${consoleStyle.RESET}`);
|
console.log(`${consoleStyle.BLUE}Building 1 of 3...${consoleStyle.RESET}`);
|
||||||
|
|
||||||
// Tries to bump the version
|
// Tries to bump the version
|
||||||
try {
|
try {
|
||||||
|
|
@ -141,7 +141,10 @@ fs.writeFileSync(
|
||||||
'utf8'
|
'utf8'
|
||||||
);
|
);
|
||||||
|
|
||||||
console.log(`${consoleStyle.BLUE}Building 2 of 2...${consoleStyle.RESET}`);
|
console.log(`${consoleStyle.BLUE}Building 2 of 3...${consoleStyle.RESET}`);
|
||||||
|
|
||||||
|
const standaloneName = 'BlueMarble-Standalone.user.js'; // Standalone flavor name of flie
|
||||||
|
const standaloneBMUpdateURL = `https://raw.githubusercontent.com/SwingTheVine/Wplace-BlueMarble/main/dist/${standaloneName}`;
|
||||||
|
|
||||||
// Fetches the completed, main Blue Marble userscript files
|
// Fetches the completed, main Blue Marble userscript files
|
||||||
const mainBMjs = fs.readFileSync('dist/BlueMarble.user.js', 'utf8');
|
const mainBMjs = fs.readFileSync('dist/BlueMarble.user.js', 'utf8');
|
||||||
|
|
@ -151,10 +154,10 @@ let mainBMcss = fs.readFileSync('dist/BlueMarble.user.css', 'utf8');
|
||||||
mainBMcss = mainBMcss.replace(/\r?\n/g, '').trim();
|
mainBMcss = mainBMcss.replace(/\r?\n/g, '').trim();
|
||||||
|
|
||||||
// Injects the CSS into the Blue Marble JavaScript
|
// Injects the CSS into the Blue Marble JavaScript
|
||||||
let compactBMjs = mainBMjs.replace('GM_getResourceText("CSS-BM-File")', `\`${mainBMcss}\``);
|
let standaloneBMjs = mainBMjs.replace('GM_getResourceText("CSS-BM-File")', `\`${mainBMcss}\``);
|
||||||
|
|
||||||
// Removes the metadata in the header that points to the old CSS location
|
// Removes the metadata in the header that points to the old CSS location
|
||||||
compactBMjs = compactBMjs.replace(/\/\/\s+\@resource\s+CSS-BM-File.*\r?\n?/g, '');
|
standaloneBMjs = standaloneBMjs.replace(/\/\/\s+\@resource\s+CSS-BM-File.*\r?\n?/g, '');
|
||||||
|
|
||||||
// Obtains the Roboto Mono font to inject
|
// Obtains the Roboto Mono font to inject
|
||||||
const robotoMonoLatin = fs.readFileSync('build/assets/RobotoMonoLatin.woff2');
|
const robotoMonoLatin = fs.readFileSync('build/assets/RobotoMonoLatin.woff2');
|
||||||
|
|
@ -162,18 +165,34 @@ const robotoMonoLatinBase64 = robotoMonoLatin.toString('base64');
|
||||||
const fontfaces = `@font-face{font-family:'Roboto Mono';font-style:normal;font-weight:400;src:url(data:font/woff2;base64,${robotoMonoLatinBase64})format('woff2');}`;
|
const fontfaces = `@font-face{font-family:'Roboto Mono';font-style:normal;font-weight:400;src:url(data:font/woff2;base64,${robotoMonoLatinBase64})format('woff2');}`;
|
||||||
|
|
||||||
// Injects Roboto Mono into the JavaScript file
|
// Injects Roboto Mono into the JavaScript file
|
||||||
compactBMjs = compactBMjs.replace(/robotoMonoInjectionPoint[^'"]*/g, fontfaces);
|
standaloneBMjs = standaloneBMjs.replace(/robotoMonoInjectionPoint[^'"]*/g, fontfaces);
|
||||||
// compactBMjs = compactBMjs.replace(/https:\/\/fonts.googleapis.com\/[^'"]*/g, fontfaces);
|
|
||||||
|
|
||||||
// Obtains the Favicon to inject
|
// Obtains the Favicon to inject
|
||||||
const favicon = fs.readFileSync('dist/assets/Favicon.png');
|
const favicon = fs.readFileSync('dist/assets/Favicon.png');
|
||||||
const faviconBase64DataURI = `data:image/png;base64,${favicon.toString('base64')}`;
|
const faviconBase64DataURI = `data:image/png;base64,${favicon.toString('base64')}`;
|
||||||
|
|
||||||
// Replaces the 2 different types of icon requests with base64
|
// Replaces the 2 different types of icon requests with base64
|
||||||
compactBMjs = compactBMjs.replace(/\/\/\s+\@icon\s+https.*\r?\n?/g, `// @icon64 ${faviconBase64DataURI}\n`);
|
standaloneBMjs = standaloneBMjs.replace(/\/\/\s+\@icon\s+https.*\r?\n?/g, `// @icon64 ${faviconBase64DataURI}\n`);
|
||||||
compactBMjs = compactBMjs.replace(/https[^'"]+dist\/assets\/Favicon\.png[^'"]*/gi, faviconBase64DataURI);
|
standaloneBMjs = standaloneBMjs.replace(/https[^'"]+dist\/assets\/Favicon\.png[^'"]*/gi, faviconBase64DataURI);
|
||||||
|
|
||||||
|
// Updates the update/download URLs
|
||||||
|
standaloneBMjs = standaloneBMjs.replace(/\/\/\s+\@updateURL\s+https.*\r?\n?/g, `// @updateURL ${standaloneBMUpdateURL}\n`);
|
||||||
|
standaloneBMjs = standaloneBMjs.replace(/\/\/\s+\@downloadURL\s+https.*\r?\n?/g, `// @downloadURL ${standaloneBMUpdateURL}\n`);
|
||||||
|
|
||||||
// Generates the Blue Marble JS file that contains all external resources
|
// Generates the Blue Marble JS file that contains all external resources
|
||||||
fs.writeFileSync('dist/BlueMarbleStandalone.user.js', compactBMjs, 'utf-8');
|
fs.writeFileSync(`dist/${standaloneName}`, standaloneBMjs, 'utf-8');
|
||||||
|
|
||||||
|
console.log(`${consoleStyle.BLUE}Building 3 of 3...${consoleStyle.RESET}`);
|
||||||
|
|
||||||
|
const greasyForkName = 'BlueMarble-For-GreasyFork.user.js'; // GreasyFork flavor name of file
|
||||||
|
const greasyForkUpdateURL = `https://raw.githubusercontent.com/SwingTheVine/Wplace-BlueMarble/main/dist/${greasyForkName}`;
|
||||||
|
|
||||||
|
let greasyForkBMjs = metaContent + resultEsbuildJS.text; // Gets the unobfuscated code and adds the metadata banner
|
||||||
|
|
||||||
|
// Updates the update/download URLs
|
||||||
|
greasyForkBMjs = greasyForkBMjs.replace(/\/\/\s+\@updateURL\s+https.*\r?\n?/g, `// @updateURL ${greasyForkUpdateURL}\n`);
|
||||||
|
greasyForkBMjs = greasyForkBMjs.replace(/\/\/\s+\@downloadURL\s+https.*\r?\n?/g, `// @downloadURL ${greasyForkUpdateURL}\n`);
|
||||||
|
|
||||||
|
fs.writeFileSync(`dist/${greasyForkName}`, greasyForkBMjs, 'utf-8');
|
||||||
|
|
||||||
console.log(`${consoleStyle.GREEN + consoleStyle.BOLD + consoleStyle.UNDERLINE}Building complete!${consoleStyle.RESET}`);
|
console.log(`${consoleStyle.GREEN + consoleStyle.BOLD + consoleStyle.UNDERLINE}Building complete!${consoleStyle.RESET}`);
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ const pkg = JSON.parse(fs.readFileSync('package.json', 'utf-8'));
|
||||||
const version = pkg.version;
|
const version = pkg.version;
|
||||||
|
|
||||||
let meta = fs.readFileSync('src/BlueMarble.meta.js', 'utf-8');
|
let meta = fs.readFileSync('src/BlueMarble.meta.js', 'utf-8');
|
||||||
meta = meta.replace(/@version\s+[\d.]+/, `@version ${version}`);
|
meta = meta.replace(/@version\s+[\d.]+/, `@version ${version}`);
|
||||||
|
|
||||||
fs.writeFileSync('src/BlueMarble.meta.js', meta);
|
fs.writeFileSync('src/BlueMarble.meta.js', meta);
|
||||||
console.log(`${consoleStyle.GREEN}Updated${consoleStyle.RESET} userscript version to ${consoleStyle.MAGENTA}${version}${consoleStyle.RESET}`);
|
console.log(`${consoleStyle.GREEN}Updated${consoleStyle.RESET} userscript version to ${consoleStyle.MAGENTA}${version}${consoleStyle.RESET}`);
|
||||||
1853
dist/BlueMarble-For-GreasyFork.user.js
vendored
Normal file
1853
dist/BlueMarble-For-GreasyFork.user.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
43
dist/BlueMarble.user.js
vendored
43
dist/BlueMarble.user.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -51,7 +51,7 @@
|
||||||
<a href="https://discord.gg/tpeBPy46hf" target="_blank" rel="noopener noreferrer"><img alt="Contact Me" src="https://img.shields.io/badge/Contact_Me-gray?style=flat&logo=Discord&logoColor=white&logoSize=auto&labelColor=cornflowerblue"></a>
|
<a href="https://discord.gg/tpeBPy46hf" target="_blank" rel="noopener noreferrer"><img alt="Contact Me" src="https://img.shields.io/badge/Contact_Me-gray?style=flat&logo=Discord&logoColor=white&logoSize=auto&labelColor=cornflowerblue"></a>
|
||||||
<a href="https://bluemarble.lol/" target="_blank" rel="noopener noreferrer"><img alt="Blue Marble Website" src="https://img.shields.io/badge/Blue_Marble_Website-crqch-blue?style=flat&logo=globe&logoColor=white"></a>
|
<a href="https://bluemarble.lol/" target="_blank" rel="noopener noreferrer"><img alt="Blue Marble Website" src="https://img.shields.io/badge/Blue_Marble_Website-crqch-blue?style=flat&logo=globe&logoColor=white"></a>
|
||||||
<a href="" target="_blank" rel="noopener noreferrer"><img alt="WakaTime" src="https://img.shields.io/badge/Coding_Time-111hrs_12mins-blue?style=flat&logo=wakatime&logoColor=black&logoSize=auto&labelColor=white"></a>
|
<a href="" target="_blank" rel="noopener noreferrer"><img alt="WakaTime" src="https://img.shields.io/badge/Coding_Time-111hrs_12mins-blue?style=flat&logo=wakatime&logoColor=black&logoSize=auto&labelColor=white"></a>
|
||||||
<a href="" target="_blank" rel="noopener noreferrer"><img alt="Total Patches" src="https://img.shields.io/badge/Total_Patches-569-black?style=flat"></a>
|
<a href="" target="_blank" rel="noopener noreferrer"><img alt="Total Patches" src="https://img.shields.io/badge/Total_Patches-575-black?style=flat"></a>
|
||||||
<a href="" target="_blank" rel="noopener noreferrer"><img alt="Total Lines of Code" src="https://img.shields.io/badge/Lines_Of_Code-498-blue?style=flat"></a>
|
<a href="" target="_blank" rel="noopener noreferrer"><img alt="Total Lines of Code" src="https://img.shields.io/badge/Lines_Of_Code-498-blue?style=flat"></a>
|
||||||
<a href="" target="_blank" rel="noopener noreferrer"><img alt="Total Comments" src="https://img.shields.io/badge/Lines_Of_Comments-498-blue?style=flat"></a>
|
<a href="" target="_blank" rel="noopener noreferrer"><img alt="Total Comments" src="https://img.shields.io/badge/Lines_Of_Comments-498-blue?style=flat"></a>
|
||||||
<a href="" target="_blank" rel="noopener noreferrer"><img alt="Compression" src="https://img.shields.io/badge/Compression-70.19%25-blue"></a>
|
<a href="" target="_blank" rel="noopener noreferrer"><img alt="Compression" src="https://img.shields.io/badge/Compression-70.19%25-blue"></a>
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "wplace-bluemarble",
|
"name": "wplace-bluemarble",
|
||||||
"version": "0.88.71",
|
"version": "0.88.77",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "wplace-bluemarble",
|
"name": "wplace-bluemarble",
|
||||||
"version": "0.88.71",
|
"version": "0.88.77",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"esbuild": "^0.25.0",
|
"esbuild": "^0.25.0",
|
||||||
"jsdoc": "^4.0.5",
|
"jsdoc": "^4.0.5",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "wplace-bluemarble",
|
"name": "wplace-bluemarble",
|
||||||
"version": "0.88.71",
|
"version": "0.88.77",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"homepage": "https://bluemarble.lol/",
|
"homepage": "https://bluemarble.lol/",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
||||||
|
|
@ -1,27 +1,30 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Blue Marble
|
// @name Blue Marble
|
||||||
// @namespace https://github.com/SwingTheVine/
|
// @name:en Blue Marble
|
||||||
// @version 0.88.71
|
// @namespace https://github.com/SwingTheVine/
|
||||||
// @description A userscript to automate and/or enhance the user experience on Wplace.live. Make sure to comply with the site's Terms of Service, and rules! This script is not affiliated with Wplace.live in any way, use at your own risk. This script is not affiliated with TamperMonkey. The author of this userscript is not responsible for any damages, issues, loss of data, or punishment that may occur as a result of using this script. This script is provided "as is" under the MPL-2.0 license. The "Blue Marble" icon is licensed under CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. The image is owned by NASA.
|
// @version 0.88.77
|
||||||
// @author SwingTheVine
|
// @description A userscript to automate and/or enhance the user experience on Wplace.live. Make sure to comply with the site's Terms of Service, and rules! This script is not affiliated with Wplace.live in any way, use at your own risk. This script is not affiliated with TamperMonkey. The author of this userscript is not responsible for any damages, issues, loss of data, or punishment that may occur as a result of using this script. This script is provided "as is" under the MPL-2.0 license. The "Blue Marble" icon is licensed under CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. The image is owned by NASA.
|
||||||
// @license MPL-2.0
|
// @description:en A userscript to automate and/or enhance the user experience on Wplace.live. Make sure to comply with the site's Terms of Service, and rules! This script is not affiliated with Wplace.live in any way, use at your own risk. This script is not affiliated with TamperMonkey. The author of this userscript is not responsible for any damages, issues, loss of data, or punishment that may occur as a result of using this script. This script is provided "as is" under the MPL-2.0 license. The "Blue Marble" icon is licensed under CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. The image is owned by NASA.
|
||||||
// @supportURL https://discord.gg/tpeBPy46hf
|
// @author SwingTheVine
|
||||||
// @homepageURL https://bluemarble.lol/
|
// @license MPL-2.0
|
||||||
// @icon https://raw.githubusercontent.com/SwingTheVine/Wplace-BlueMarble/0c760b903739e6214f7b8990ffc4089a93e73bd2/dist/assets/Favicon.png
|
// @donate https://ko-fi.com/swingthevine
|
||||||
// @updateURL https://raw.githubusercontent.com/SwingTheVine/Wplace-BlueMarble/main/dist/BlueMarble.user.js
|
// @supportURL https://discord.gg/tpeBPy46hf
|
||||||
// @downloadURL https://raw.githubusercontent.com/SwingTheVine/Wplace-BlueMarble/main/dist/BlueMarble.user.js
|
// @homepageURL https://bluemarble.lol/
|
||||||
// @match https://wplace.live/*
|
// @icon https://raw.githubusercontent.com/SwingTheVine/Wplace-BlueMarble/0c760b903739e6214f7b8990ffc4089a93e73bd2/dist/assets/Favicon.png
|
||||||
// @grant GM_getResourceText
|
// @updateURL https://raw.githubusercontent.com/SwingTheVine/Wplace-BlueMarble/main/dist/BlueMarble.user.js
|
||||||
// @grant GM_addStyle
|
// @downloadURL https://raw.githubusercontent.com/SwingTheVine/Wplace-BlueMarble/main/dist/BlueMarble.user.js
|
||||||
// @grant GM.setValue
|
// @match https://wplace.live/*
|
||||||
// @grant GM_getValue
|
// @grant GM_getResourceText
|
||||||
// @grant GM_xmlhttpRequest
|
// @grant GM_addStyle
|
||||||
// @connect telemetry.thebluecorner.net
|
// @grant GM.setValue
|
||||||
// @resource CSS-BM-File https://raw.githubusercontent.com/SwingTheVine/Wplace-BlueMarble/0c760b903739e6214f7b8990ffc4089a93e73bd2/dist/BlueMarble.user.css
|
// @grant GM_getValue
|
||||||
|
// @grant GM_xmlhttpRequest
|
||||||
|
// @connect telemetry.thebluecorner.net
|
||||||
|
// @resource CSS-BM-File https://raw.githubusercontent.com/SwingTheVine/Wplace-BlueMarble/0c760b903739e6214f7b8990ffc4089a93e73bd2/dist/BlueMarble.user.css
|
||||||
|
// @antifeature tracking Anonymous opt-in telemetry data
|
||||||
// @noframes
|
// @noframes
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
// Wplace --> https://wplace.live
|
// Wplace --> https://wplace.live
|
||||||
// License --> https://www.mozilla.org/en-US/MPL/2.0/
|
// License --> https://www.mozilla.org/en-US/MPL/2.0/
|
||||||
// Donate --> https://ko-fi.com/swingthevine
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue