Skip to content
This repository was archived by the owner on Apr 4, 2026. It is now read-only.

Commit 82096df

Browse files
committed
fixed updater and translations download
1 parent 1e4264c commit 82096df

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.30)
2-
project(QontrolPanel VERSION 1.9.5 LANGUAGES C CXX)
2+
project(QontrolPanel VERSION 1.9.6 LANGUAGES C CXX)
33

44
set(CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}/install" CACHE PATH "Installation directory" FORCE)
55
set(CMAKE_CXX_STANDARD 20)

src/soundpanelbridge.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ void SoundPanelBridge::downloadLatestTranslations()
308308
m_failedDownloads = 0;
309309

310310
QStringList languageCodes = getLanguageCodes();
311-
QString baseUrl = "https://github.com/floraaubry/QontrolPanel/raw/refs/heads/main/i18n/compiled/QontrolPanel_%1.qm";
311+
QString baseUrl = "https://github.com/Odizinne/QontrolPanel/raw/refs/heads/main/i18n/compiled/QontrolPanel_%1.qm";
312312

313313
m_totalDownloads = languageCodes.size();
314314
emit translationDownloadStarted();

src/updater.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ void Updater::checkForUpdates()
5151
// Clear previous release notes
5252
setReleaseNotes("");
5353

54-
QString urlString = "https://api.github.com/repos/floraaubry/QontrolPanel/releases/latest";
54+
QString urlString = "https://api.github.com/repos/Odizinne/QontrolPanel/releases/latest";
5555
QUrl url{urlString};
5656
QNetworkRequest request{url};
5757
request.setHeader(QNetworkRequest::UserAgentHeader, "QontrolPanel-Updater");

0 commit comments

Comments
 (0)