Skip to content
This repository has been archived by the owner on Jan 9, 2025. It is now read-only.

Commit

Permalink
Merge pull request #235 from Redot-Engine/fix-download-links-stable
Browse files Browse the repository at this point in the history
[fix] updated download links
  • Loading branch information
tindrew authored Nov 25, 2024
2 parents cc86dcd + ce93ceb commit 957912b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions content/news/release-4-3-stable.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Keep in mind this is not a comprehensive list of the impactful changes, its just

The link to our github release here: [Github Release](https://github.com/Redot-Engine/redot-engine/releases/tag/redot-4.3-stable)

Finally, we'd like to thank the core devs on the project(in alphabetical order): ChocolateChipAussie, decryptedchaos, McDubh, trashguy, skogi, and Spartan322 for their tireless work in getting us to this point. Also, a special thanks to all the many contributors who helped along the way. We appreciate everything.
Finally, we'd like to thank the core devs on the project(in alphabetical order): ChocolateChipAussie, decryptedchaos, McDubh, skogi, Spartan322 and trashguy for their tireless work in getting us to this point. Also, a special thanks to all the many contributors who helped along the way. We appreciate everything.

## The Future

Expand All @@ -62,7 +62,7 @@ One of the first major projects under Redot Experimental is the Redot Launcher,
Game development should be accessible to everyone.

This simple statement became the idea behind the Redot Academy, one of the ways in which we wanted to support our community. Originally started by one of our community members, the Academy offered free live classes in Redot game development.
Unfortunately, due to scheduling problems, this part has been put on hold. T
Unfortunately, due to scheduling problems, this part has been put on hold.

However, the idea of our Academy lives on.

Expand Down
14 changes: 7 additions & 7 deletions lib/platformDownloadLink.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export const getPlatformDownloadLink = (platform: string): string => {
const downloadLinks: { [key: string]: string } = {
windows: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-rc.4/Redot_v4.3-rc.4_win64.exe.zip",
linux: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-rc.4/Redot_v4.3-rc.4_linux.x86_64.zip",
android: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-rc.4/Redot_v4.3-rc.4_android_editor.apk",
mac: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-rc.4/Redot_v4.3-rc.4_macos.zip",
windows: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-stable/Redot_v4.3-stable_win64.exe.zip",
linux: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-stable/Redot_v4.3-stable_linux.x86_64.zip",
android: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-stable/Redot_v4.3-stable_android_editor.apk",
mac: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-stable/Redot_v4.3-stable_macos.zip",
};

return (
Expand All @@ -14,9 +14,9 @@ export const getPlatformDownloadLink = (platform: string): string => {

export const getMonoPlatformDownloadLink = (platform: string): string => {
const downloadLinks: { [key: string]: string } = {
windows: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-rc.4/Redot_v4.3-rc.4_mono_win64.zip",
linux: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-rc.4/Redot_v4.3-rc.4_mono_linux_x86_64.zip",
mac: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-rc.4/Redot_v4.3-rc.4_mono_macos.zip",
windows: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-stable/Redot_v4.3-stable_mono_win64.zip",
linux: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-stable/Redot_v4.3-stable_mono_linux_x86_64.zip",
mac: "https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-stable/Redot_v4.3-stable_mono_macos.zip",
};

return (
Expand Down

0 comments on commit 957912b

Please sign in to comment.