diff options
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | scripts/create-release-file.py | 6 | ||||
-rw-r--r-- | src-tauri/src/github/release_notes.rs | 4 | ||||
-rw-r--r-- | src-tauri/tauri.conf.json | 4 |
4 files changed, 9 insertions, 9 deletions
@@ -10,11 +10,11 @@ A [Northstar](https://northstar.tf/) installer, updater, and soon to be mod-mana ## Roadmap ---> See https://github.com/GeckoEidechse/FlightCore/issues/1 +--> See https://github.com/R2NorthstarTools/FlightCore/issues/1 ## Download -Head to over to [releases](https://github.com/GeckoEidechse/FlightCore/releases) and download +Head to over to [releases](https://github.com/R2NorthstarTools/FlightCore/releases) and download - **Windows:** `FlightCore_X.Y.Z_x64_en-US.msi` or - **Linux:** `flight-core_X.Y.Z_amd64.AppImage` . diff --git a/scripts/create-release-file.py b/scripts/create-release-file.py index 84184d8c..de9336d3 100644 --- a/scripts/create-release-file.py +++ b/scripts/create-release-file.py @@ -12,7 +12,7 @@ PATH_TO_LINUX_SIG = f"./artifact/appimage/flight-core_{version_number_stripped_v PATH_TO_WINDOWS_SIG = f"./artifact/msi/FlightCore_{version_number_stripped_v}_x64_en-US.msi.zip.sig" # Text to show in update notification -RELEASE_TEXT = "See the following link for release notes: https://github.com/GeckoEidechse/FlightCore/releases" +RELEASE_TEXT = "See the following link for release notes: https://github.com/R2NorthstarTools/FlightCore/releases" # Read signatures with open(PATH_TO_LINUX_SIG, "rt") as f: @@ -30,11 +30,11 @@ release_dict = { "platforms": { "linux-x86_64": { "signature": linux_sig, - "url": f"https://github.com/GeckoEidechse/FlightCore/releases/download/{version_number}/flight-core_{version_number_stripped_v}_amd64.AppImage.tar.gz" + "url": f"https://github.com/R2NorthstarTools/FlightCore/releases/download/{version_number}/flight-core_{version_number_stripped_v}_amd64.AppImage.tar.gz" }, "windows-x86_64": { "signature": windows_sig, - "url": f"https://github.com/GeckoEidechse/FlightCore/releases/download/{version_number}/FlightCore_{version_number_stripped_v}_x64_en-US.msi.zip" + "url": f"https://github.com/R2NorthstarTools/FlightCore/releases/download/{version_number}/FlightCore_{version_number_stripped_v}_x64_en-US.msi.zip" } } } diff --git a/src-tauri/src/github/release_notes.rs b/src-tauri/src/github/release_notes.rs index 9a87c49b..f5389d77 100644 --- a/src-tauri/src/github/release_notes.rs +++ b/src-tauri/src/github/release_notes.rs @@ -12,7 +12,7 @@ pub struct ReleaseInfo { async fn fetch_github_releases_api(url: &str) -> Result<String, String> { println!("Fetching releases notes from GitHub API"); - let user_agent = "GeckoEidechse/FlightCore"; + let user_agent = "R2NorthstarTools/FlightCore"; let client = reqwest::Client::new(); let res = client .get(url) @@ -33,7 +33,7 @@ async fn fetch_github_releases_api(url: &str) -> Result<String, String> { pub async fn check_is_flightcore_outdated() -> Result<bool, String> { // Get newest version number from GitHub API println!("Checking GitHub API"); - let url = "https://api.github.com/repos/GeckoEidechse/FlightCore/releases/latest"; + let url = "https://api.github.com/repos/R2NorthstarTools/FlightCore/releases/latest"; let res = fetch_github_releases_api(url).await?; let json_response: serde_json::Value = diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index c9dd9f5e..b7095654 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -29,7 +29,7 @@ "icons/icon.icns", "icons/icon.ico" ], - "identifier": "com.github.geckoeidechse.flightcore", + "identifier": "com.github.r2northstartools.flightcore", "longDescription": "", "macOS": { "entitlements": null, @@ -54,7 +54,7 @@ "active": true, "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEVBNjM3NzJGRDgxMTU4NUUKUldSZVdCSFlMM2RqNmdhK3pIZjhEYWg2WnZGSFJqdkhLSHNOSjNhaW5VQVFLaHV3YWFDTnFKWWQK", "endpoints": [ - "https://github.com/GeckoEidechse/FlightCore/releases/latest/download/latest-release.json" + "https://github.com/R2NorthstarTools/FlightCore/releases/latest/download/latest-release.json" ], "dialog": true }, |