From fa2ed7da9304fecf605e7b4256071ed32bb53d95 Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Sat, 11 Jul 2026 10:20:42 +0200 Subject: [PATCH] Update project link in About dialog --- CMakeLists.txt | 2 +- src/main.cpp | 5 ++--- src/mainwindow.cpp | 7 ++++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ebb0f08..c94a95d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ # $Id$ CMAKE_MINIMUM_REQUIRED(VERSION 3.21) -PROJECT(qlscribe VERSION 0.19 LANGUAGES CXX) +PROJECT(qlscribe VERSION 0.20 LANGUAGES CXX) SET(CMAKE_CXX_STANDARD 17) SET(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/src/main.cpp b/src/main.cpp index 4ea5ef4..756e9fc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -57,9 +57,8 @@ int main( int argc, char **argv ) { QApplication app( argc, argv ); app.setApplicationName( "qlscribe" ); - //app.setOrganizationName( "" ); - app.setOrganizationDomain( "qlscribe.sourceforge.org" ); - app.addLibraryPath( "/usr/lib32/qt4/plugins" ); + app.setOrganizationName( "disconnected-by-peer.at" ); + app.setOrganizationDomain( "disconnected-by-peer.at" ); app.setWindowIcon( QIcon( ":/qlscribe64.png" ) ); bool doPrint = false; diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index eb4f9e6..57bcd94 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -547,10 +547,11 @@ void MainWindow::onMenuAbout() { QMessageBox::about( this, tr( "About" ), - tr( "

qlscribe - Qt lisghtScribe

" - "

release 0.19

" + tr( "

qlscribe - Qt LightScribe

" + "

release 0.20

" "

visit project at home page " - "qlscribe.sourceforge.net

" ) ); + "" + "gitea.disconnected-by-peer.at/geos_one/qlscribe

" ) ); } void MainWindow::onMenuQtAbout()