Skip to content

Commit ba81a79

Browse files
committed
fix
1 parent b744c54 commit ba81a79

File tree

16 files changed

+63
-63
lines changed

16 files changed

+63
-63
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
deploy:
3737
environment:
3838
name: github-pages
39-
url: 'https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/project'
39+
url: 'https://penguinmod.com/project'
4040
runs-on: ubuntu-latest
4141
needs: build
4242
steps:

src/addons/addons/block-switching/_manifest_entry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const manifest = {
1313
},
1414
{
1515
"name": "JeremyGamer13",
16-
"link": "https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/profile?user=JGamerTesting"
16+
"link": "https://penguinmod.com/profile?user=JGamerTesting"
1717
}
1818
],
1919
"dynamicDisable": true,

src/components/menu-bar/author-info.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const ActualAuthorInfo = ({
3131
</h1>
3232
<div>
3333
<span className={styles.usernameLine}>
34-
<a style={{ color: "white" }} target="_blank" href={"https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/profile?user=" + username}>
34+
<a style={{ color: "white" }} target="_blank" href={"https://penguinmod.com/profile?user=" + username}>
3535
<FormattedMessage
3636
defaultMessage="by {username}"
3737
description="Shows that a project was created by this user"

src/components/menu-bar/menu-bar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ class MenuBar extends React.Component {
922922
<div className={styles.menuBarItem}>
923923
<a
924924
className={styles.feedbackLink}
925-
href="https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app"
925+
href="https://penguinmod.com"
926926
rel="noopener noreferrer"
927927
target="_blank"
928928
>

src/components/menu-bar/share-button.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class ShareButton extends React.Component {
6060
this.handleMessageEvent(e);
6161
}
6262
async handleMessageEvent(e) {
63-
if (!e.origin.startsWith(`https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app`)) {
63+
if (!e.origin.startsWith(`https://penguinmod.com`)) {
6464
//return; // BTODO: uncomment this line for prod (also change the link)
6565
}
6666

@@ -148,7 +148,7 @@ class ShareButton extends React.Component {
148148
}
149149

150150
const url = location.origin;
151-
window.open(`https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/${targetPage}?name=${this.props.projectTitle}${editPiece}${remixPiece}&external=${url}`, '_blank');
151+
window.open(`https://penguinmod.com/${targetPage}?name=${this.props.projectTitle}${editPiece}${remixPiece}&external=${url}`, '_blank');
152152
});
153153
}
154154
render() {

src/components/menu-bar/user-avatar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const UserAvatar = ({
99
imageUrl,
1010
username
1111
}) => (
12-
<a target="_blank" href={"https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/profile?user=" + username}>
12+
<a target="_blank" href={"https://penguinmod.com/profile?user=" + username}>
1313
<img
1414
className={classNames(
1515
className,

src/components/tw-description/description.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ class Renderer {
236236
}
237237
return (
238238
<a
239-
href={`https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/search?q=%23${id}`}
239+
href={`https://penguinmod.com/search?q=%23${id}`}
240240
target="_blank"
241241
rel="noreferrer"
242242
>
@@ -248,7 +248,7 @@ class Renderer {
248248
mention (name) {
249249
return (
250250
<a
251-
href={`https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/profile?user=${name}`}
251+
href={`https://penguinmod.com/profile?user=${name}`}
252252
target="_blank"
253253
rel="noreferrer"
254254
>

src/containers/tw-custom-extension-modal.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class CustomExtensionModal extends React.Component {
5050
name: 'Extension',
5151
description: 'Adds new blocks.',
5252
tags: ['myextensions'],
53-
rawURL: 'https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/line_blue.png',
53+
rawURL: 'https://penguinmod.com/line_blue.png',
5454
featured: true,
5555
deletable: true,
5656
_id: generateRandomId()

src/containers/tw-security-manager.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const isTrustedExtension = url => (
3434
url.startsWith('http://localhost:8000') ||
3535
url.startsWith('http://localhost:6000') || // Launcher Home
3636
url.startsWith('http://localhost:6001') || // Launcher Extensions
37-
url.startsWith('https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/') || // Local Home or Extensions
37+
url.startsWith('https://penguinmod.com/') || // Local Home or Extensions
3838
url.startsWith('http://localhost:5174') || // Local Home or Extensions
3939

4040
extensionsTrustedByUser.has(url)
@@ -66,7 +66,7 @@ const isAlwaysTrustedForFetching = parsed => (
6666
parsed.origin.endsWith('.turbowarp.xyz') ||
6767

6868
// Any PenguinMod service such as projects
69-
parsed.origin === 'https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app' ||
69+
parsed.origin === 'https://penguinmod.com' ||
7070
parsed.origin.endsWith('.penguinmod.com') ||
7171

7272
// GitHub

src/lib/tw-lazy-scratch-blocks.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const load = () => {
9797
this.appendDummyInput('yourMom')
9898
.appendField('your mom')
9999
.appendField(new _ScratchBlocks.FieldImage(
100-
'https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/dump/1039714598959452261.webp',
100+
'https://penguinmod.com/dump/1039714598959452261.webp',
101101
15,
102102
15,
103103
'*',
@@ -109,7 +109,7 @@ const load = () => {
109109
}
110110
this.setColour('#ff0000');
111111
this.setTooltip('your mom :trel:');
112-
this.setHelpUrl('https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/dump/urmom-your-mom.gif');
112+
this.setHelpUrl('https://penguinmod.com/dump/urmom-your-mom.gif');
113113
};
114114
}
115115
const oldLoad = _ScratchBlocks.Blocks[prototypeName].domToMutation;
@@ -119,7 +119,7 @@ const load = () => {
119119
this.appendDummyInput('yourMom')
120120
.appendField('your mom')
121121
.appendField(new _ScratchBlocks.FieldImage(
122-
'https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/dump/1039714598959452261.webp',
122+
'https://penguinmod.com/dump/1039714598959452261.webp',
123123
15,
124124
15,
125125
'*',
@@ -131,7 +131,7 @@ const load = () => {
131131
}
132132
this.setColour('#ff0000');
133133
this.setTooltip('your mom :trel:');
134-
this.setHelpUrl('https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/dump/urmom-your-mom.gif');
134+
this.setHelpUrl('https://penguinmod.com/dump/urmom-your-mom.gif');
135135
};
136136
oldConstructor.call(this, ...args);
137137
};

0 commit comments

Comments
 (0)