From 6e4a302f319088d7f4fe38654cfe9c9dbc19bfc3 Mon Sep 17 00:00:00 2001 From: Lemmy Date: Sat, 7 Feb 2026 23:14:56 -0500 Subject: [PATCH] www: updated end point url --- Services/Location/LocationService.qml | 2 +- Services/Noctalia/SupporterService.qml | 2 +- Services/Noctalia/TelemetryService.qml | 2 +- Services/Noctalia/UpdateService.qml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Services/Location/LocationService.qml b/Services/Location/LocationService.qml index 83cd1745c..d655d6997 100644 --- a/Services/Location/LocationService.qml +++ b/Services/Location/LocationService.qml @@ -171,7 +171,7 @@ Singleton { // Query geocoding API to convert location name to coordinates function geocodeLocation(locationName, callback, errorCallback) { Logger.d("Location", "Geocoding location name"); - var geoUrl = "https://noctalia.dev:7777/geocode?city=" + encodeURIComponent(locationName); + var geoUrl = "https://api.noctalia.dev/geocode?city=" + encodeURIComponent(locationName); var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function () { if (xhr.readyState === XMLHttpRequest.DONE) { diff --git a/Services/Noctalia/SupporterService.qml b/Services/Noctalia/SupporterService.qml index 1dd9e717c..15605f095 100644 --- a/Services/Noctalia/SupporterService.qml +++ b/Services/Noctalia/SupporterService.qml @@ -142,7 +142,7 @@ Singleton { Process { id: supporterProcess - command: ["curl", "-s", "https://noctalia.dev:7777/supporters"] + command: ["curl", "-s", "https://api.noctalia.dev/supporters"] stdout: StdioCollector { onStreamFinished: { diff --git a/Services/Noctalia/TelemetryService.qml b/Services/Noctalia/TelemetryService.qml index e2c65235d..d6506281a 100644 --- a/Services/Noctalia/TelemetryService.qml +++ b/Services/Noctalia/TelemetryService.qml @@ -16,7 +16,7 @@ Singleton { property int totalRamGb: 0 property string instanceId: "" - readonly property string telemetryEndpoint: Quickshell.env("NOCTALIA_TELEMETRY_ENDPOINT") || "https://noctalia.dev:7777/ping" + readonly property string telemetryEndpoint: Quickshell.env("NOCTALIA_TELEMETRY_ENDPOINT") || "https://api.noctalia.dev/ping" function init() { if (initialized) diff --git a/Services/Noctalia/UpdateService.qml b/Services/Noctalia/UpdateService.qml index bea72c330..6d67b9c54 100644 --- a/Services/Noctalia/UpdateService.qml +++ b/Services/Noctalia/UpdateService.qml @@ -22,7 +22,7 @@ Singleton { // URLs readonly property string discordUrl: "https://discord.noctalia.dev" readonly property string feedbackUrl: Quickshell.env("NOCTALIA_CHANGELOG_FEEDBACK_URL") || "" - readonly property string upgradeLogBaseUrl: Quickshell.env("NOCTALIA_UPGRADELOG_URL") || "https://noctalia.dev:7777/upgradelog" + readonly property string upgradeLogBaseUrl: Quickshell.env("NOCTALIA_UPGRADELOG_URL") || "https://api.noctalia.dev/upgradelog" // Changelog properties property bool initialized: false