aboutsummaryrefslogtreecommitdiff
path: root/src-tauri
diff options
context:
space:
mode:
Diffstat (limited to 'src-tauri')
-rw-r--r--src-tauri/src/github/release_notes.rs4
-rw-r--r--src-tauri/tauri.conf.json4
2 files changed, 4 insertions, 4 deletions
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
},