diff --git a/README.md b/README.md
index 2d488967..f9a424c2 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
-
+
-[![Downloads](https://img.shields.io/github/downloads/vassbo/freeshow/total)](https://github.com/vassbo/freeshow/releases)
-[![Licence](https://img.shields.io/badge/licence-GPL-blue.svg)](https://github.com/vassbo/freeshow/blob/main/LICENSE)
+[![Downloads](https://img.shields.io/github/downloads/ChurchApps/freeshow/total)](https://github.com/ChurchApps/freeshow/releases)
+[![Licence](https://img.shields.io/badge/licence-GPL-blue.svg)](https://github.com/ChurchApps/freeshow/blob/main/LICENSE)
# FreeShow
@@ -29,10 +29,12 @@ FreeShow is a free and open-source presentation program that makes it easy to sh
FreeShow exists because the creator found that other simular programs was either expensive or complex to use. He wanted to create a program that was easy to use and affordable for everyone, from small churches to large venues. FreeShow is now used by people all over the world.
## Support Us
+
The only reason this program is free is because of the generous support from users. If you want to support us to keep this free, please head over to [ChurchApps](https://churchapps/partner) or [sponsor us on GitHub](https://github.com/sponsors/ChurchApps/). Thank you so much!
## Join the Community
-We have a great community for end-users on [Facebook](https://www.facebook.com/groups/freeshowapp). It's a good way to ask questions, get tips and follow new updates. Come join us!
+
+We have a great community for end-users on [Facebook](https://www.facebook.com/groups/freeshowapp). It's a good way to ask questions, get tips and follow new updates. Come join us!
## Help the development
@@ -45,10 +47,11 @@ You are welcome to contribute to the code!
## Report an issue or request a feature
-Create an [issue on GitHub](https://github.com/vassbo/freeshow/issues).
+Create an [issue on GitHub](https://github.com/ChurchApps/freeshow/issues).
## Join us on Slack
-If you would like to get involved contributing in any way, head over to our [Slack Channel](https://join.slack.com/t/livechurchsolutions/shared_invite/zt-i88etpo5-ZZhYsQwQLVclW12DKtVflg) and introduce yourself. We'd love to hear from you.
+
+If you would like to get involved contributing in any way, head over to our [Slack Channel](https://join.slack.com/t/livechurchsolutions/shared_invite/zt-i88etpo5-ZZhYsQwQLVclW12DKtVflg) and introduce yourself. We'd love to hear from you.
## Give feedback
diff --git a/src/frontend/tests/start.test.ts b/src/frontend/tests/start.test.ts
index 5bf6a483..282a9d68 100644
--- a/src/frontend/tests/start.test.ts
+++ b/src/frontend/tests/start.test.ts
@@ -5,7 +5,7 @@ import tmp from "tmp"
const delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms))
test.beforeEach(async ({ context }) => {
- await context.route("https://api.github.com/repos/vassbo/freeshow/releases", (route) => route.abort())
+ await context.route("https://api.github.com/repos/ChurchApps/freeshow/releases", (route) => route.abort())
})
test("Launch electron app", async () => {
diff --git a/src/frontend/utils/checkForUpdates.ts b/src/frontend/utils/checkForUpdates.ts
index 30f577ae..feed34d0 100644
--- a/src/frontend/utils/checkForUpdates.ts
+++ b/src/frontend/utils/checkForUpdates.ts
@@ -2,7 +2,7 @@ import { get } from "svelte/store"
import { alertMessage, activePopup, dictionary } from "./../stores"
export function checkForUpdates(currentVersion: string) {
- fetch("https://api.github.com/repos/vassbo/freeshow/releases")
+ fetch("https://api.github.com/repos/ChurchApps/freeshow/releases")
.then((response) => response.json())
.then((a) => {
if (get(activePopup) !== null) return