Skip to content

Commit 4f46341

Browse files
authored
update links
1 parent 31ab4f8 commit 4f46341

File tree

22 files changed

+77
-77
lines changed

22 files changed

+77
-77
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.com/project'
39+
url: 'https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/project'
4040
runs-on: ubuntu-latest
4141
needs: build
4242
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
scratch-gui modified for use in [TurboWarp](https://turbowarp.org/) then modified for use in [PenguinMod](https://studio.penguinmod.com) 😀
1+
scratch-gui modified for use in [TurboWarp](https://turbowarp.org/) then modified for use in [PenguinMod](https://jwklong.github.io/penguinmod.github.io) 😀
22
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/PenguinMod/penguinmod.github.io/)
33
## Setup
44

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.com/profile?user=JGamerTesting"
16+
"link": "https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/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.com/profile?user=" + username}>
34+
<a style={{ color: "white" }} target="_blank" href={"https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/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.com"
925+
href="https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app"
926926
rel="noopener noreferrer"
927927
target="_blank"
928928
>

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.com/profile?user=" + username}>
12+
<a target="_blank" href={"https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/profile?user=" + username}>
1313
<img
1414
className={classNames(
1515
className,

src/components/prompt/prompt.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ const PromptComponent = props => (
147147
values={{
148148
packager: (
149149
<a
150-
href="https://studio.penguinmod.com/PenguinMod-Packager"
150+
href="https://jwklong.github.io/penguinmod.github.io/PenguinMod-Packager"
151151
target="_blank"
152152
rel="noopener noreferrer"
153153
>

src/components/tw-description/description.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,15 @@ class Renderer {
228228
if (/^\d{6,}$/.test(id)) {
229229
return (
230230
<a
231-
href={`https://studio.penguinmod.com/#${id}`}
231+
href={`https://jwklong.github.io/penguinmod.github.io/#${id}`}
232232
>
233233
{`#${id}`}
234234
</a>
235235
);
236236
}
237237
return (
238238
<a
239-
href={`https://penguinmod.com/search?q=%23${id}`}
239+
href={`https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/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.com/profile?user=${name}`}
251+
href={`https://penguinmod-home-git-new-backend-live-penguinmod.vercel.app/profile?user=${name}`}
252252
target="_blank"
253253
rel="noreferrer"
254254
>

src/components/tw-studioview/studioview.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ StudioView.THUMBNAIL_SRC = 'https://projects.penguinmod.com/api/v1/projects/getp
307307

308308
// The URL for project pages.
309309
// $id is replaced with the project ID.
310-
StudioView.PROJECT_PAGE = 'https://studio.penguinmod.com/#$id';
310+
StudioView.PROJECT_PAGE = 'https://jwklong.github.io/penguinmod.github.io/#$id';
311311

312312
// The amount of "placeholders" to insert before the next page loads.
313313
StudioView.PLACEHOLDER_COUNT = 9;

src/containers/extension-library.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const messages = defineMessages({
3434
// Only trust loading extension links from these origins.
3535
// For user-made libraries.
3636
const TRUSTED_LOADEXT_ORIGINS = [
37-
'https://studio.penguinmod.com', // for development
37+
'https://jwklong.github.io/penguinmod.github.io', // for development
3838
'https://extensions.penguinmod.com',
3939
'https://sharkpools-extensions.vercel.app',
4040
'https://raw.githubusercontent.com/SharkPool-SP/SharkPools-Extensions/main', // Some people cant connect to vercel

0 commit comments

Comments
 (0)