diff --git a/content/news/release-4-3-stable.md b/content/news/release-4-3-stable.md index 6ca6985..d0b3334 100644 --- a/content/news/release-4-3-stable.md +++ b/content/news/release-4-3-stable.md @@ -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 @@ -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. diff --git a/lib/platformDownloadLink.ts b/lib/platformDownloadLink.ts index e5d3541..ec85a71 100644 --- a/lib/platformDownloadLink.ts +++ b/lib/platformDownloadLink.ts @@ -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 ( @@ -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 (