Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qpwgraph for openSUSE:Factory checked in at 2024-01-29 22:33:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qpwgraph (Old) and /work/SRC/openSUSE:Factory/.qpwgraph.new.1815 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qpwgraph" Mon Jan 29 22:33:38 2024 rev:22 rq:1142395 version:0.6.2 Changes: -------- --- /work/SRC/openSUSE:Factory/qpwgraph/qpwgraph.changes 2023-12-12 19:33:04.754340906 +0100 +++ /work/SRC/openSUSE:Factory/.qpwgraph.new.1815/qpwgraph.changes 2024-01-29 22:34:27.525265574 +0100 @@ -1,0 +2,8 @@ +Sun Jan 28 10:38:08 UTC 2024 - ecsos <[email protected]> + +- Update to version 0.6.2: + * Make the main canvas background to mid-gray, when on non-dark + color themes. + * Updated copyright headers into the New Year (2024). + +------------------------------------------------------------------- Old: ---- qpwgraph-v0.6.1.tar.bz2 New: ---- qpwgraph-v0.6.2.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qpwgraph.spec ++++++ --- /var/tmp/diff_new_pack.kqbuaP/_old 2024-01-29 22:34:27.949280920 +0100 +++ /var/tmp/diff_new_pack.kqbuaP/_new 2024-01-29 22:34:27.949280920 +0100 @@ -1,7 +1,7 @@ # # spec file for package qpwgraph # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: qpwgraph -Version: 0.6.1 +Version: 0.6.2 Release: 0 Summary: PipeWire Graph Qt GUI Interface License: GPL-2.0-or-later ++++++ qpwgraph-v0.6.1.tar.bz2 -> qpwgraph-v0.6.2.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/CMakeLists.txt new/qpwgraph-v0.6.2/CMakeLists.txt --- old/qpwgraph-v0.6.1/CMakeLists.txt 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/CMakeLists.txt 2024-01-22 15:59:08.000000000 +0100 @@ -1,11 +1,14 @@ cmake_minimum_required (VERSION 3.15) project(qpwgraph - VERSION 0.6.1 + VERSION 0.6.2 DESCRIPTION "A PipeWire Graph Qt GUI Interface" HOMEPAGE_URL "https://gitlab.freedesktop.org/rncbc/qpwgraph" LANGUAGES C CXX) +set (PROJECT_COPYRIGHT "Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved.") +set (PROJECT_DOMAIN "rncbc.org") + execute_process ( COMMAND git describe --tags --dirty --abbrev=6 WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} @@ -32,6 +35,16 @@ endif () +if (CMAKE_BUILD_TYPE MATCHES "Debug") + set (CONFIG_DEBUG 1) + set (CONFIG_BUILD_TYPE "debug") +else () + set (CONFIG_DEBUG 0) + set (CONFIG_BUILD_TYPE "release") + set (CMAKE_BUILD_TYPE "Release") +endif () + + # Enable ALSA MIDI support option. option (CONFIG_ALSA_MIDI "Enable ALSA MIDI support (default=yes)" 1) @@ -45,16 +58,6 @@ option (CONFIG_QT6 "Enable Qt6 build (default=yes)" 1) -if (CMAKE_BUILD_TYPE MATCHES "Debug") - set (CONFIG_DEBUG 1) - set (CONFIG_BUILD_TYPE "debug") -else () - set (CONFIG_DEBUG 0) - set (CONFIG_BUILD_TYPE "release") - set (CMAKE_BUILD_TYPE "Release") -endif () - - include (GNUInstallDirs) # Check for Qt... diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/ChangeLog new/qpwgraph-v0.6.2/ChangeLog --- old/qpwgraph-v0.6.1/ChangeLog 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/ChangeLog 2024-01-22 15:59:08.000000000 +0100 @@ -2,6 +2,13 @@ -------------------------------------------- +0.6.2 2024-01-22 A Winter'24 Release. + +- Make the main canvas background to mid-gray, when on non-dark + color themes. +- Updated copyright headers into the New Year (2024). + + 0.6.1 2023-12-01 An End-of-Autumn'23 Release. - Introduce Help > Enable ALSA MIDI runtime option, now permitting diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/README.md new/qpwgraph-v0.6.2/README.md --- old/qpwgraph-v0.6.1/README.md 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/README.md 2024-01-22 15:59:08.000000000 +0100 @@ -1,6 +1,6 @@ # qpwgraph - A PipeWire Graph Qt GUI Interface - + **qpwgraph** is a graph manager dedicated to [PipeWire](https://pipewire.org), using the [Qt C++ framework](https://qt.io), based and pretty much like the @@ -12,7 +12,7 @@ ## Prerequisites - **qpwgraph** software prerequisites for building are a C++17 compiler + **qpwgraph** software prerequisites for building are a C++20 compiler (_g++_), the [Qt C++ framework](https://qt.io) (_qt6-qtbase-devel_ or _qt5-qtbase-devel_) and of course the [PipeWire API](https://pipewire.org) C development libraries and headers (_pipewire-devel_). @@ -57,5 +57,5 @@ ## Copyright - Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/debian/changelog new/qpwgraph-v0.6.2/debian/changelog --- old/qpwgraph-v0.6.1/debian/changelog 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/debian/changelog 2024-01-22 15:59:08.000000000 +0100 @@ -1,3 +1,9 @@ +qpwgraph (0.6.2-34.1) unstable; urgency=low + + * A winter'24 release. + + -- Rui Nuno Capela <[email protected]> Mon, 22 Jan 2024 18:00:00 +0000 + qpwgraph (0.6.1-33.1) unstable; urgency=low * An end-of-autumn'23 release. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/debian/copyright new/qpwgraph-v0.6.2/debian/copyright --- old/qpwgraph-v0.6.1/debian/copyright 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/debian/copyright 2024-01-22 15:59:08.000000000 +0100 @@ -4,7 +4,7 @@ Source: https://gitlab.freedesktop.org/rncbc/qpwgraph Files: * -Copyright: 2021-2023 Rui Nuno Capela <[email protected]> +Copyright: 2021-2024 Rui Nuno Capela <[email protected]> License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,7 +20,7 @@ License can be found in /usr/share/common-licenses/GPL-2. Files: src/appdata/* -Copyright: 2021-2023 Rui Nuno Capela <[email protected]> +Copyright: 2021-2024 Rui Nuno Capela <[email protected]> License: FSFAP Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/docs/qpwgraph_patchbay-user_manual.md new/qpwgraph-v0.6.2/docs/qpwgraph_patchbay-user_manual.md --- old/qpwgraph-v0.6.1/docs/qpwgraph_patchbay-user_manual.md 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/docs/qpwgraph_patchbay-user_manual.md 2024-01-22 15:59:08.000000000 +0100 @@ -26,11 +26,11 @@ Used to make the connection temporary. The unpinned connection will not be dropped if the current patchbay is deactivated. -### Auto Pin option +## Auto Pin option If checked, all manual connections will be pinned to the current patchbay and persistant when activated. -### Auto Disconnect option +## Auto Disconnect option If checked, all pinned connections will be automatically disconnected when the current patchbay is deactivated. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/rpm/qpwgraph.spec new/qpwgraph-v0.6.2/rpm/qpwgraph.spec --- old/qpwgraph-v0.6.1/rpm/qpwgraph.spec 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/rpm/qpwgraph.spec 2024-01-22 15:59:08.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package qpwgraph # -# Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. +# Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,8 +16,8 @@ # %define name qpwgraph -%define version 0.6.1 -%define release 33.1 +%define version 0.6.2 +%define release 34.1 %define _prefix /usr @@ -133,6 +133,8 @@ %changelog +* Mon Jan 22 2024 Rui Nuno Capela <[email protected]> 0.6.2 +- A winter'24 release. * Sat Dec 2 2023 Rui Nuno Capela <[email protected]> 0.6.1 - An end-of-autumn'23 release. * Wed Nov 8 2023 Rui Nuno Capela <[email protected]> 0.6.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/CMakeLists.txt new/qpwgraph-v0.6.2/src/CMakeLists.txt --- old/qpwgraph-v0.6.1/src/CMakeLists.txt 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/CMakeLists.txt 2024-01-22 15:59:08.000000000 +0100 @@ -70,7 +70,10 @@ endif () set_target_properties (${PROJECT_NAME} PROPERTIES C_STANDARD 99) -set_target_properties (${PROJECT_NAME} PROPERTIES CXX_STANDARD 17) +set_target_properties (${PROJECT_NAME} PROPERTIES + CXX_STANDARD 20 + CXX_STANDARD_REQUIRED TRUE +) include(FindPkgConfig) pkg_check_modules (PIPEWIRE REQUIRED IMPORTED_TARGET libpipewire-0.3) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/appdata/org.rncbc.qpwgraph.metainfo.xml new/qpwgraph-v0.6.2/src/appdata/org.rncbc.qpwgraph.metainfo.xml --- old/qpwgraph-v0.6.1/src/appdata/org.rncbc.qpwgraph.metainfo.xml 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/appdata/org.rncbc.qpwgraph.metainfo.xml 2024-01-22 15:59:08.000000000 +0100 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- Copyright 2021-2022 Rui Nuno Capela <[email protected]> --> +<!-- Copyright 2021-2024 Rui Nuno Capela <[email protected]> --> <component type="desktop"> <id>org.rncbc.qpwgraph</id> <metadata_license>FSFAP</metadata_license> @@ -17,7 +17,7 @@ </provides> <screenshots> <screenshot type="default"> - <image>https://gitlab.freedesktop.org/rncbc/qpwgraph/-/raw/main/src/images/qpwgraph_screenshot-1.png</image> + <image>https://gitlab.freedesktop.org/rncbc/qpwgraph/-/raw/main/src/images/qpwgraph_screenshot-2.png</image> <caption>The main application window in action</caption> </screenshot> <screenshot> @@ -37,7 +37,7 @@ <developer_name>rncbc aka. Rui Nuno Capela</developer_name> <update_contact>[email protected]</update_contact> <releases> - <release version="0.6.1" date="2023-12-01" urgency="low" /> + <release version="0.6.2" date="2024-01-22" urgency="low" /> </releases> <content_rating type="oars-1.0"/> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/config.h.cmake new/qpwgraph-v0.6.2/src/config.h.cmake --- old/qpwgraph-v0.6.1/src/config.h.cmake 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/config.h.cmake 2024-01-22 15:59:08.000000000 +0100 @@ -14,11 +14,16 @@ /* Define to the homepage of this package. */ #cmakedefine PROJECT_HOMEPAGE_URL "@PROJECT_HOMEPAGE_URL@" +/* Define to the copyright of this package. */ +#cmakedefine PROJECT_COPYRIGHT "@PROJECT_COPYRIGHT@" + +/* Define to the domain of this package. */ +#cmakedefine PROJECT_DOMAIN "@PROJECT_DOMAIN@" + /* Define if debugging is enabled. */ #cmakedefine CONFIG_DEBUG @CONFIG_DEBUG@ - /* Define if ALSA MIDI support is available. */ #cmakedefine CONFIG_ALSA_MIDI @CONFIG_ALSA_MIDI@ Binary files old/qpwgraph-v0.6.1/src/images/qpwgraph_screenshot-1.png and new/qpwgraph-v0.6.2/src/images/qpwgraph_screenshot-1.png differ Binary files old/qpwgraph-v0.6.1/src/images/qpwgraph_screenshot-2.png and new/qpwgraph-v0.6.2/src/images/qpwgraph_screenshot-2.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/qpwgraph.cpp new/qpwgraph-v0.6.2/src/qpwgraph.cpp --- old/qpwgraph-v0.6.1/src/qpwgraph.cpp 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/qpwgraph.cpp 2024-01-22 15:59:08.000000000 +0100 @@ -1,7 +1,7 @@ // qpwgraph.cpp // /**************************************************************************** - Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/qpwgraph.h new/qpwgraph-v0.6.2/src/qpwgraph.h --- old/qpwgraph-v0.6.1/src/qpwgraph.h 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/qpwgraph.h 2024-01-22 15:59:08.000000000 +0100 @@ -1,7 +1,7 @@ // qpwgraph.h // /**************************************************************************** - Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/qpwgraph_canvas.cpp new/qpwgraph-v0.6.2/src/qpwgraph_canvas.cpp --- old/qpwgraph-v0.6.1/src/qpwgraph_canvas.cpp 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/qpwgraph_canvas.cpp 2024-01-22 15:59:08.000000000 +0100 @@ -1,7 +1,7 @@ // qpwgraph_canvas.cpp // /**************************************************************************** - Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -89,6 +89,10 @@ QGraphicsView::setResizeAnchor(QGraphicsView::NoAnchor); QGraphicsView::setDragMode(QGraphicsView::NoDrag); + const QPalette& pal = QGraphicsView::palette(); + if (pal.base().color().value() > 192) + QGraphicsView::setBackgroundRole(QPalette::Mid); + m_editor = new QLineEdit(this); m_editor->setFrame(false); // m_editor->setAlignment(Qt::AlignCenter | Qt::AlignVCenter); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/qpwgraph_canvas.h new/qpwgraph-v0.6.2/src/qpwgraph_canvas.h --- old/qpwgraph-v0.6.1/src/qpwgraph_canvas.h 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/qpwgraph_canvas.h 2024-01-22 15:59:08.000000000 +0100 @@ -1,7 +1,7 @@ // qpwgraph_canvas.h // /**************************************************************************** - Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/qpwgraph_config.cpp new/qpwgraph-v0.6.2/src/qpwgraph_config.cpp --- old/qpwgraph-v0.6.1/src/qpwgraph_config.cpp 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/qpwgraph_config.cpp 2024-01-22 15:59:08.000000000 +0100 @@ -1,7 +1,7 @@ // qpwgraph_config.cpp // /**************************************************************************** - Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/qpwgraph_config.h new/qpwgraph-v0.6.2/src/qpwgraph_config.h --- old/qpwgraph-v0.6.1/src/qpwgraph_config.h 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/qpwgraph_config.h 2024-01-22 15:59:08.000000000 +0100 @@ -1,7 +1,7 @@ // qpwgraph_config.h // /**************************************************************************** - Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/qpwgraph_form.cpp new/qpwgraph-v0.6.2/src/qpwgraph_form.cpp --- old/qpwgraph-v0.6.1/src/qpwgraph_form.cpp 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/qpwgraph_form.cpp 2024-01-22 15:59:08.000000000 +0100 @@ -1,7 +1,7 @@ // qpwgraph_form.cpp // /**************************************************************************** - Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -102,7 +102,7 @@ #if QT_VERSION < QT_VERSION_CHECK(6, 1, 0) QMainWindow::setWindowIcon(QIcon(":/images/qpwgraph.png")); #endif - m_config = new qpwgraph_config("rncbc.org", "qpwgraph"); + m_config = new qpwgraph_config(PROJECT_DOMAIN, PROJECT_NAME); m_ui.graphCanvas->setSettings(m_config->settings()); @@ -895,12 +895,11 @@ void qpwgraph_form::helpAbout (void) { - static const QString title = PROJECT_NAME; - static const QString version = PROJECT_VERSION; - static const QString subtitle = PROJECT_DESCRIPTION; - static const QString website = PROJECT_HOMEPAGE_URL; - static const QString copyright - = "Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved."; + static const QString title = PROJECT_NAME; + static const QString version = PROJECT_VERSION; + static const QString subtitle = PROJECT_DESCRIPTION; + static const QString website = PROJECT_HOMEPAGE_URL; + static const QString copyright = PROJECT_COPYRIGHT; QStringList list; #ifdef CONFIG_DEBUG @@ -941,6 +940,7 @@ text += tr("This program is free software; you can redistribute it and/or modify it") + "<br />\n"; text += tr("under the terms of the GNU General Public License version 2 or later."); text += "</small>"; + text += "<br />\n"; text += "</p>\n"; QMessageBox::about(this, tr("About") + ' ' + title, text); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/qpwgraph_form.h new/qpwgraph-v0.6.2/src/qpwgraph_form.h --- old/qpwgraph-v0.6.1/src/qpwgraph_form.h 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/qpwgraph_form.h 2024-01-22 15:59:08.000000000 +0100 @@ -1,7 +1,7 @@ // qpwgraph_form.h // /**************************************************************************** - Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qpwgraph-v0.6.1/src/qpwgraph_form.ui new/qpwgraph-v0.6.2/src/qpwgraph_form.ui --- old/qpwgraph-v0.6.1/src/qpwgraph_form.ui 2023-12-01 22:20:26.000000000 +0100 +++ new/qpwgraph-v0.6.2/src/qpwgraph_form.ui 2024-01-22 15:59:08.000000000 +0100 @@ -3,7 +3,7 @@ <author>rncbc aka Rui Nuno Capela</author> <comment>qpwgraph - A PipeWire Graph Qt GUI Interface - Copyright (C) 2021-2023, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2021-2024, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License
