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( "
release 0.19
" + tr( "release 0.20
" "visit project at home page " - "qlscribe.sourceforge.net
" ) ); + "" + "gitea.disconnected-by-peer.at/geos_one/qlscribe" ) ); } void MainWindow::onMenuQtAbout()