From 56902bc871b237473cd277e6f130df895ca5ad3c Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Sat, 11 Jul 2026 09:29:49 +0200 Subject: [PATCH] Fix desktop integration metadata --- CMakeLists.txt | 2 +- NEWS | 4 ++++ resources/qlscribe.desktop | 2 +- src/mainwindow.cpp | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d8dced..ebb0f08 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ # $Id$ CMAKE_MINIMUM_REQUIRED(VERSION 3.21) -PROJECT(qlscribe VERSION 0.18 LANGUAGES CXX) +PROJECT(qlscribe VERSION 0.19 LANGUAGES CXX) SET(CMAKE_CXX_STANDARD 17) SET(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/NEWS b/NEWS index d398501..293020f 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,9 @@ NEWS - list of user-visible changes between releases of qlscribe +New in 0.19 +----------- +* Fixed desktop-entry conformance and packaging cache integration. + New in 0.18 ----------- * Fixed the mandatory 32-bit printing daemon build with GCC 15. diff --git a/resources/qlscribe.desktop b/resources/qlscribe.desktop index a972cbc..08b59d0 100644 --- a/resources/qlscribe.desktop +++ b/resources/qlscribe.desktop @@ -2,7 +2,7 @@ Encoding=UTF-8 Name=Qt lightScribe Exec=qlscribe -Icon=qlscribe.png +Icon=qlscribe Terminal=false Type=Application MimeType=application/x-qlscribe; diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 32566b2..eb4f9e6 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -548,7 +548,7 @@ void MainWindow::onMenuAbout() QMessageBox::about( this, tr( "About" ), tr( "

qlscribe - Qt lisghtScribe

" - "

release 0.18

" + "

release 0.19

" "

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

" ) ); }