From 73ba178463d23515d0f67b0d2e9b09283b5949e0 Mon Sep 17 00:00:00 2001 From: EndrII Date: Sat, 4 Nov 2023 23:58:04 +0100 Subject: [PATCH 01/10] ref #780 ExtraPluginTest fixed --- src/Deploy/src/Distributions/deb.cpp | 4 ++-- src/Deploy/src/configparser.cpp | 2 +- src/Deploy/src/dependenciesscanner.cpp | 2 +- src/Deploy/src/deploycore.cpp | 2 +- src/Deploy/src/elf_type.cpp | 2 +- src/Deploy/src/extracter.cpp | 12 ++++++------ src/Deploy/src/filemanager.cpp | 4 ++-- src/Deploy/src/ignorerule.cpp | 2 +- src/Deploy/src/packing.cpp | 4 ++-- src/Deploy/src/pluginsparser.cpp | 2 +- src/Deploy/src/qmlqt5.cpp | 10 +++++----- src/Deploy/src/qmlqt6.cpp | 10 +++++----- submodules/QuasarAppLib | 2 +- testcases/quicknanobrowser/main.cpp | 2 +- tests/tstMain.cpp | 5 +++-- tests/units/linux/checkqttest.cpp | 4 ++-- tests/units/linux/distrostructtest.cpp | 2 +- tests/units/linux/extrapluginstest.cpp | 9 +++++++++ tests/units/linux/iconstest.cpp | 2 +- tests/units/linux/qmlextracttest.cpp | 2 +- tests/units/linux/qmlscanertest.cpp | 6 +++--- tests/units/linux/releativelinktest.cpp | 2 +- tests/units/testbase.cpp | 2 +- tests/units/testutils.cpp | 8 ++++---- 24 files changed, 56 insertions(+), 46 deletions(-) diff --git a/src/Deploy/src/Distributions/deb.cpp b/src/Deploy/src/Distributions/deb.cpp index 7380cd35..7f617a40 100644 --- a/src/Deploy/src/Distributions/deb.cpp +++ b/src/Deploy/src/Distributions/deb.cpp @@ -116,7 +116,7 @@ QProcessEnvironment Deb::processEnvirement() const { QList Deb::runCmd() { QList res; - for (const auto& inout: qAsConst(inouts)) { + for (const auto& inout: std::as_const(inouts)) { res.push_back({"dpkg-deb", QStringList{"--build", "--verbose"} << inout.input << inout.output}); } @@ -125,7 +125,7 @@ QList Deb::runCmd() { QStringList Deb::outPutFiles() const { QStringList result; - for (const auto& inout: qAsConst(inouts)) { + for (const auto& inout: std::as_const(inouts)) { result.push_back(inout.output); } return result; diff --git a/src/Deploy/src/configparser.cpp b/src/Deploy/src/configparser.cpp index c0543276..6abd29cc 100644 --- a/src/Deploy/src/configparser.cpp +++ b/src/Deploy/src/configparser.cpp @@ -966,7 +966,7 @@ bool ConfigParser::setTargetsInDir(const QString &dir, bool recursive) { } bool result = false; - for (const auto &file : qAsConst(list)) { + for (const auto &file : std::as_const(list)) { if (file.isDir()) { result |= setTargetsInDir(file.absoluteFilePath(), recursive); diff --git a/src/Deploy/src/dependenciesscanner.cpp b/src/Deploy/src/dependenciesscanner.cpp index c63e211b..c0b2e1d4 100644 --- a/src/Deploy/src/dependenciesscanner.cpp +++ b/src/Deploy/src/dependenciesscanner.cpp @@ -125,7 +125,7 @@ void DependenciesScanner::recursiveDep(LibInfo &lib, QSet &res, QSetcopyFiles(plugins, targetPath + distro.getPluginsOutDir(), 1, DeployCore::debugExtensions(), &listItems); - for (const auto &item : qAsConst(listItems)) { + for (const auto &item : std::as_const(listItems)) { extractPluginLib(item, i.key()); } @@ -281,7 +281,7 @@ bool Extracter::copyTr() { if (info.isDir()) { QDir dir(info.absoluteFilePath()); auto availableQm = dir.entryInfoList({"*.qm"}, QDir::Files); - for (const auto & trFile : qAsConst(availableQm)) { + for (const auto & trFile : std::as_const(availableQm)) { if (!_fileManager->copyFile(trFile.absoluteFilePath(), cnf->getPackageTargetDir(i.key()) + i->getTrOutDir())) { return false; @@ -415,7 +415,7 @@ void Extracter::extractLib(const QString &file, allDependencies = _scaner->scan(file).getAllDep(); } - for (const auto &line : qAsConst(allDependencies)) { + for (const auto &line : std::as_const(allDependencies)) { if (mask.size() && !line.getName().contains(mask, DeployCore::getCaseSensitivity())) { continue; @@ -500,7 +500,7 @@ bool Extracter::extractQml() { return false; } } else { - for (const auto& plugin: qAsConst(plugins)) { + for (const auto& plugin: std::as_const(plugins)) { const auto qmlFiles = QDir(plugin).entryInfoList(QDir::Files); for (const auto& qmlFile: qmlFiles) { toCopyQmlFiles.push_back(qmlFile.absoluteFilePath()); @@ -520,7 +520,7 @@ bool Extracter::extractQml() { } - for (const auto &item : qAsConst(listItems)) { + for (const auto &item : std::as_const(listItems)) { extractPluginLib(item, i.key()); } diff --git a/src/Deploy/src/filemanager.cpp b/src/Deploy/src/filemanager.cpp index df8d91da..365cb36c 100644 --- a/src/Deploy/src/filemanager.cpp +++ b/src/Deploy/src/filemanager.cpp @@ -180,7 +180,7 @@ bool FileManager::fileActionPrivate(const QString &file, const QString &target, bool copy = !masks; if (masks) { - for (const auto &mask : qAsConst(*masks)) { + for (const auto &mask : std::as_const(*masks)) { if (info.absoluteFilePath().contains(mask, DeployCore::getCaseSensitivity())) { copy = true; break; @@ -432,7 +432,7 @@ void FileManager::clear(const QString& targetDir, bool force) { } QMultiMap sortedOldData; - for (const auto& i : qAsConst(_deployedFiles)) { + for (const auto& i : std::as_const(_deployedFiles)) { sortedOldData.insert(i.size(), QFileInfo(i)); } diff --git a/src/Deploy/src/ignorerule.cpp b/src/Deploy/src/ignorerule.cpp index 91bd7134..2ca7f79f 100644 --- a/src/Deploy/src/ignorerule.cpp +++ b/src/Deploy/src/ignorerule.cpp @@ -9,7 +9,7 @@ #include bool IgnoreRule::checkOnlytext(const QString &lib) { - for (const auto &ignore : qAsConst(_data)) { + for (const auto &ignore : std::as_const(_data)) { if (lib.contains(ignore.label)) { return true; } diff --git a/src/Deploy/src/packing.cpp b/src/Deploy/src/packing.cpp index 6d70e4a5..974a57e9 100644 --- a/src/Deploy/src/packing.cpp +++ b/src/Deploy/src/packing.cpp @@ -83,7 +83,7 @@ bool Packing::create() { return false; } - for (auto package : qAsConst(_pakages)) { + for (auto package : std::as_const(_pakages)) { if (!package) { internalError(); @@ -207,7 +207,7 @@ bool Packing::extractTemplates() { return false; } - for (auto package : qAsConst(_pakages)) { + for (auto package : std::as_const(_pakages)) { if (!package) return false; diff --git a/src/Deploy/src/pluginsparser.cpp b/src/Deploy/src/pluginsparser.cpp index 1ed2d4ea..1c6294e6 100644 --- a/src/Deploy/src/pluginsparser.cpp +++ b/src/Deploy/src/pluginsparser.cpp @@ -163,7 +163,7 @@ void PluginsParser::addPlugins(const QStringList& list, const QString& package, QHash>& container) { const DeployConfig* cnf = DeployCore::_config; - for (const auto &plugin: qAsConst(list)) { + for (const auto &plugin: std::as_const(list)) { if (QFileInfo(cnf->qtDir.getPlugins() + "/" + plugin).isDir()) { auto listPlugins = QDir(cnf->qtDir.getPlugins() + "/" + plugin).entryInfoList(QDir::Files | QDir::NoDotAndDotDot); diff --git a/src/Deploy/src/qmlqt5.cpp b/src/Deploy/src/qmlqt5.cpp index 243159cf..e7e7aede 100644 --- a/src/Deploy/src/qmlqt5.cpp +++ b/src/Deploy/src/qmlqt5.cpp @@ -79,7 +79,7 @@ bool QMLQt5::extractImportsFromDir(const QString &path, bool recursive) { for (const auto &info: files) { auto imports = extractImportsFromFile(info.absoluteFilePath()); - for (const auto &import : qAsConst(imports)) { + for (const auto &import : std::as_const(imports)) { if (!_imports.contains(import)) { _imports.insert(import); extractImportsFromDir(getPathFromImport(import), recursive); @@ -87,10 +87,10 @@ bool QMLQt5::extractImportsFromDir(const QString &path, bool recursive) { } } - for (const auto& module: qAsConst(qmlmodule)) { + for (const auto& module: std::as_const(qmlmodule)) { QStringList imports = extractImportsFromQmlModule(module.absoluteFilePath()); - for (const auto &import : qAsConst(imports)) { + for (const auto &import : std::as_const(imports)) { if (!_imports.contains(import)) { _imports.insert(import); extractImportsFromDir(getPathFromImport(import), recursive); @@ -155,7 +155,7 @@ bool QMLQt5::deployPath(const QString &path, QStringList &res) { QDir dir(path); auto infoList = dir.entryInfoList(QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs); - for (const auto &info : qAsConst(infoList)) { + for (const auto &info : std::as_const(infoList)) { if (DeployCore::isDebugFile(info.fileName())) { QuasarAppUtils::Params::log("Skip debug library " + info.absoluteFilePath()); @@ -222,7 +222,7 @@ bool QMLQt5::scan(QStringList &res, const QString& _qmlProjectDir) { return false; } - for (const auto &import : qAsConst(_imports)) { + for (const auto &import : std::as_const(_imports)) { res.push_back(getPathFromImport(import)); } diff --git a/src/Deploy/src/qmlqt6.cpp b/src/Deploy/src/qmlqt6.cpp index e81eccfd..0de6eac1 100644 --- a/src/Deploy/src/qmlqt6.cpp +++ b/src/Deploy/src/qmlqt6.cpp @@ -69,7 +69,7 @@ bool QMLQt6::extractImportsFromDir(const QString &path, bool recursive) { for (const auto &info: files) { auto imports = extractImportsFromFile(info.absoluteFilePath()); - for (const auto &import : qAsConst(imports)) { + for (const auto &import : std::as_const(imports)) { if (!_imports.contains(import)) { _imports.insert(import); extractImportsFromDir(getPathFromImport(import), false); @@ -77,11 +77,11 @@ bool QMLQt6::extractImportsFromDir(const QString &path, bool recursive) { } } - for (const auto& module: qAsConst(qmlmodule)) { + for (const auto& module: std::as_const(qmlmodule)) { QStringList imports = extractImportsFromQmlModule(module.absoluteFilePath()); imports += extractImportsFromFile(module.absoluteFilePath()); - for (const auto &import : qAsConst(imports)) { + for (const auto &import : std::as_const(imports)) { if (!_imports.contains(import)) { _imports.insert(import); extractImportsFromDir(getPathFromImport(import), false); @@ -153,7 +153,7 @@ bool QMLQt6::deployPath(const QString &path, QStringList &res) { QDir dir(path); auto infoList = dir.entryInfoList(QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs); - for (const auto &info : qAsConst(infoList)) { + for (const auto &info : std::as_const(infoList)) { if (DeployCore::isDebugFile(info.fileName())) { QuasarAppUtils::Params::log("Skip debug library " + info.absoluteFilePath()); @@ -218,7 +218,7 @@ bool QMLQt6::scan(QStringList &res, const QString& _qmlProjectDir) { return false; } - for (const auto &import : qAsConst(_imports)) { + for (const auto &import : std::as_const(_imports)) { res.push_back(getPathFromImport(import)); } diff --git a/submodules/QuasarAppLib b/submodules/QuasarAppLib index a23bbe92..334e209f 160000 --- a/submodules/QuasarAppLib +++ b/submodules/QuasarAppLib @@ -1 +1 @@ -Subproject commit a23bbe92689b472c69b73d0e49646de991a0390f +Subproject commit 334e209ff4ba23bf50927c6bbeb8993fe13f9f03 diff --git a/testcases/quicknanobrowser/main.cpp b/testcases/quicknanobrowser/main.cpp index f21b0362..d3f3bbb0 100644 --- a/testcases/quicknanobrowser/main.cpp +++ b/testcases/quicknanobrowser/main.cpp @@ -60,7 +60,7 @@ static QUrl startupUrl() QUrl ret; QStringList args(qApp->arguments()); args.takeFirst(); - for (const QString &arg : qAsConst(args)) { + for (const QString &arg : std::as_const(args)) { if (arg.startsWith(QLatin1Char('-'))) continue; ret = Utils::fromUserInput(arg); diff --git a/tests/tstMain.cpp b/tests/tstMain.cpp index 60fbc15a..e4df385e 100644 --- a/tests/tstMain.cpp +++ b/tests/tstMain.cpp @@ -78,7 +78,7 @@ // Check exampletests #define TestCase(name, testClass) \ void name() { \ - initTest(new testClass()); \ + initTest(new testClass); \ } /** @@ -314,11 +314,12 @@ void tstMain::initTest(Test *test) { delete e; } - delete test; _app->exit(0); }); _app->exec(); + + delete test; } QTEST_APPLESS_MAIN(tstMain) diff --git a/tests/units/linux/checkqttest.cpp b/tests/units/linux/checkqttest.cpp index dbce3f2d..59860634 100644 --- a/tests/units/linux/checkqttest.cpp +++ b/tests/units/linux/checkqttest.cpp @@ -47,7 +47,7 @@ void CheckQtTest::test() { }; - for (const auto &i: qAsConst(cases)) { + for (const auto &i: std::as_const(cases)) { QVERIFY(DeployCore::isQtLib(i.first) == i.second); } delete deployer; @@ -109,7 +109,7 @@ void CheckQtTest::test() { }; - for (const auto &i: qAsConst(cases)) { + for (const auto &i: std::as_const(cases)) { auto dexription = QString("The isQtLib(%0) function should be return %1").arg( i.first).arg(i.second); QVERIFY2(DeployCore::isQtLib(i.first) == i.second, dexription.toLatin1().data()); diff --git a/tests/units/linux/distrostructtest.cpp b/tests/units/linux/distrostructtest.cpp index ec6e05d7..a9fe0f4b 100644 --- a/tests/units/linux/distrostructtest.cpp +++ b/tests/units/linux/distrostructtest.cpp @@ -41,7 +41,7 @@ void DistroStructTest::test() { {"\\\\res\\\\\\type\\\\\\\\\\","/../../"}, }; - for (const auto &i: qAsConst(cases)) { + for (const auto &i: std::as_const(cases)) { if (distro.getRelativePath(i.first) != i.second) QVERIFY(false); } diff --git a/tests/units/linux/extrapluginstest.cpp b/tests/units/linux/extrapluginstest.cpp index a827310d..11779f3b 100644 --- a/tests/units/linux/extrapluginstest.cpp +++ b/tests/units/linux/extrapluginstest.cpp @@ -36,6 +36,11 @@ void ExtraPluginTest::test() { }); + +#if QT_VERSION >= QT_VERSION_CHECK(6, 6, 0) + pluginTree += utils.createTree({"./" + DISTRO_DIR + "/plugins/sqldrivers/libqsqlmimer.so"}); +#endif + #else QString bin = TestBinDir + "QtWidgetsProject.exe"; QString qmake = TestQtDir + "bin/qmake.exe"; @@ -50,6 +55,10 @@ void ExtraPluginTest::test() { "./" + DISTRO_DIR + "/libpq.dll", }); + +#if QT_VERSION >= QT_VERSION_CHECK(6, 6, 0) + pluginTree.insert("./" + DISTRO_DIR + "/plugins/sqldrivers/qsqlmimer.dll"); +#endif #endif auto comapareTree = TestModule.qtLibs(); diff --git a/tests/units/linux/iconstest.cpp b/tests/units/linux/iconstest.cpp index 88798d05..b6de3065 100644 --- a/tests/units/linux/iconstest.cpp +++ b/tests/units/linux/iconstest.cpp @@ -76,7 +76,7 @@ void IconsTest::test() { "-icon", ":/testResurces/testRes/TestIcon.png", }); - for (const auto &target : qAsConst(binMulti)) { + for (const auto &target : std::as_const(binMulti)) { QFileInfo tarInfo(target); targetsMap = deploy->_config.getTargetsListByFilter(tarInfo.baseName()); diff --git a/tests/units/linux/qmlextracttest.cpp b/tests/units/linux/qmlextracttest.cpp index e75f4549..f667a784 100644 --- a/tests/units/linux/qmlextracttest.cpp +++ b/tests/units/linux/qmlextracttest.cpp @@ -26,7 +26,7 @@ void QMLExtractTest::test() { QMLQt5 scaner("./"); - for (const auto &file : qAsConst(qmlFiles)) { + for (const auto &file : std::as_const(qmlFiles)) { auto fileImports = scaner.extractImportsFromFile(file); diff --git a/tests/units/linux/qmlscanertest.cpp b/tests/units/linux/qmlscanertest.cpp index ec127282..cea2b247 100644 --- a/tests/units/linux/qmlscanertest.cpp +++ b/tests/units/linux/qmlscanertest.cpp @@ -33,7 +33,7 @@ void QmlScanerTest::test() { QVERIFY(results.size() == imports.size()); - for (const auto &import: qAsConst(imports)) { + for (const auto &import: std::as_const(imports)) { auto path = scaner6.getPathFromImport(import); QVERIFY(results.contains(path)); } @@ -42,7 +42,7 @@ void QmlScanerTest::test() { QVERIFY(results.size() == imports.size()); - for (const auto & import: qAsConst(imports)) { + for (const auto & import: std::as_const(imports)) { auto path = scaner6.getPathFromImport(import); QVERIFY(results.contains(path)); } @@ -62,7 +62,7 @@ void QmlScanerTest::test() { QVERIFY(results.size() == imports.size()); - for (const auto &import: qAsConst(imports)) { + for (const auto &import: std::as_const(imports)) { auto path = scaner6.getPathFromImport(import); QVERIFY(results.contains(path)); } diff --git a/tests/units/linux/releativelinktest.cpp b/tests/units/linux/releativelinktest.cpp index 86674942..03339158 100644 --- a/tests/units/linux/releativelinktest.cpp +++ b/tests/units/linux/releativelinktest.cpp @@ -35,7 +35,7 @@ void ReleativeLinkTest::test() { }; - for (const auto &i: qAsConst(cases)) { + for (const auto &i: std::as_const(cases)) { if (PathUtils::getRelativeLink(i[0], i[1]) != i[2]) QVERIFY(false); } diff --git a/tests/units/testbase.cpp b/tests/units/testbase.cpp index bf18a5b2..25443b07 100644 --- a/tests/units/testbase.cpp +++ b/tests/units/testbase.cpp @@ -109,7 +109,7 @@ void TestBase::checkResults(const QSet &tree, bool noWarnings, bool onl } QJsonObject obj; - for (const auto &i : qAsConst(resultTree)) { + for (const auto &i : std::as_const(resultTree)) { obj[i]; } diff --git a/tests/units/testutils.cpp b/tests/units/testutils.cpp index 1350753c..f6e82310 100644 --- a/tests/units/testutils.cpp +++ b/tests/units/testutils.cpp @@ -35,7 +35,7 @@ QSet TestUtils::getTree(const QString &path, int limit, int depch) { QDir dir(info.absoluteFilePath()); auto list = dir.entryInfoList(QDir::AllEntries | QDir::NoDotAndDotDot); - for (const auto &i: qAsConst(list)) { + for (const auto &i: std::as_const(list)) { result.unite(getTree(i.absoluteFilePath(), limit, depch + 1)); } @@ -62,7 +62,7 @@ QSet TestUtils::getFilesSet(const QString &path, int limit, int depch) QDir dir(info.absoluteFilePath()); auto list = dir.entryInfoList(QDir::AllEntries | QDir::NoDotAndDotDot); - for (const auto &i: qAsConst(list)) { + for (const auto &i: std::as_const(list)) { result.unite(getFilesSet(i.absoluteFilePath(), limit, depch + 1)); } @@ -109,11 +109,11 @@ QHash TestUtils::compareTree(const QSet &leftTree, const auto valuel = leftTree - rightTree; auto valuer = rightTree - leftTree; - for(auto &i :qAsConst(valuel)) { + for(auto &i :std::as_const(valuel)) { result.insert(i, 1); } - for(auto &i :qAsConst(valuer)) { + for(auto &i :std::as_const(valuer)) { result.insert(i, -1); } From 51b9d7545835cb16dc38a0ce5d213ffb75970293 Mon Sep 17 00:00:00 2001 From: EndrII Date: Sun, 5 Nov 2023 11:24:37 +0100 Subject: [PATCH 02/10] fix #780 added support qt 6.6 --- submodules/QuasarAppLib | 2 +- tests/modules/modulesqt6_6.cpp | 92 +++++++++++++++++++++++++ tests/modules/modulesqt6_6.h | 24 +++++++ tests/tstMain.cpp | 2 +- tests/units/linux/qmlfiledialogtest.cpp | 17 ++++- tests/units/modules.h | 5 +- 6 files changed, 138 insertions(+), 4 deletions(-) create mode 100644 tests/modules/modulesqt6_6.cpp create mode 100644 tests/modules/modulesqt6_6.h diff --git a/submodules/QuasarAppLib b/submodules/QuasarAppLib index 334e209f..3b797f9a 160000 --- a/submodules/QuasarAppLib +++ b/submodules/QuasarAppLib @@ -1 +1 @@ -Subproject commit 334e209ff4ba23bf50927c6bbeb8993fe13f9f03 +Subproject commit 3b797f9a7883bec4083dc8abf6159b0146f313d3 diff --git a/tests/modules/modulesqt6_6.cpp b/tests/modules/modulesqt6_6.cpp new file mode 100644 index 00000000..1ad399ad --- /dev/null +++ b/tests/modules/modulesqt6_6.cpp @@ -0,0 +1,92 @@ +/* + * Copyright (C) 2023-2023 QuasarApp. + * Distributed under the lgplv3 software license, see the accompanying + * Everyone is permitted to copy and distribute verbatim copies + * of this license document, but changing it is not allowed. + */ + +#include "modulesqt6_6.h" + +ModulesQt6_6::ModulesQt6_6() +{ + +} + +QSet ModulesQt6_6::qmlLibs(const QString &distDir) const { + TestUtils utils; + auto Tree = ModulesQt6_5::qmlLibs(distDir); + +#ifdef Q_OS_WIN + +#else + +#endif + + return Tree; +} + +QSet ModulesQt6_6::qmlVirtualKeyBoadrLibs(const QString &distDir) const { + + TestUtils utils; + + auto Tree = ModulesQt6_5::qmlVirtualKeyBoadrLibs(distDir); + return Tree; +} + +QSet ModulesQt6_6::qtWebEngine(const QString &distDir) const +{ + TestUtils utils; + + auto Tree = ModulesQt6_5::qtWebEngine(distDir); + +#ifdef Q_OS_WIN + Tree += utils.createTree( + { + "./" + distDir + "/resources/v8_context_snapshot.bin" + + } + ); +#else + Tree += utils.createTree( + { + "./" + distDir + "/resources/v8_context_snapshot.bin", + "./" + distDir + "/lib/libQt6WebChannelQuick.so", + "./" + distDir + "/qml/QtWebChannel/libwebchannelplugin.so", + "./" + distDir + "/qml/QtWebChannel/libwebchannelquickplugin.so", + + } + ); +#endif + + return Tree; +} + +QSet ModulesQt6_6::qtLibs(const QString &distDir) const { + auto Tree = ModulesQt6_5::qtLibs(distDir); + TestUtils utils; + + + return Tree; +} + +QSet ModulesQt6_6::qtWebEngineWidgets(const QString &distDir) const +{ + TestUtils utils; + + auto Tree = ModulesQt6_5::qtWebEngineWidgets(distDir); +#ifdef Q_OS_WIN + Tree += utils.createTree( + { + "./" + distDir + "/resources/v8_context_snapshot.bin" + + } + ); +#else + Tree += utils.createTree( + { + "./" + distDir + "/resources/v8_context_snapshot.bin" + } + ); +#endif + return Tree; +} diff --git a/tests/modules/modulesqt6_6.h b/tests/modules/modulesqt6_6.h new file mode 100644 index 00000000..5cfe6568 --- /dev/null +++ b/tests/modules/modulesqt6_6.h @@ -0,0 +1,24 @@ +/* + * Copyright (C) 2023-2023 QuasarApp. + * Distributed under the lgplv3 software license, see the accompanying + * Everyone is permitted to copy and distribute verbatim copies + * of this license document, but changing it is not allowed. + */ + +#ifndef MODULESQT6_6_H +#define MODULESQT6_6_H + +#include "modulesqt6_5.h" + +class ModulesQt6_6: public ModulesQt6_5 +{ +public: + ModulesQt6_6(); + QSet qmlLibs(const QString &distDir = DISTRO_DIR) const override; + QSet qmlVirtualKeyBoadrLibs(const QString &distDir = DISTRO_DIR) const override; + QSet qtWebEngine(const QString &distDir = DISTRO_DIR) const override; + QSet qtWebEngineWidgets(const QString &distDir = DISTRO_DIR) const override; + QSet qtLibs(const QString &distDir = DISTRO_DIR) const override; +}; + +#endif // MODULESQT6_5_H diff --git a/tests/tstMain.cpp b/tests/tstMain.cpp index e4df385e..4c8fd170 100644 --- a/tests/tstMain.cpp +++ b/tests/tstMain.cpp @@ -159,8 +159,8 @@ private slots: TestCase(ziparrchivetest, ZIPArchiveTest ) TestCase(zipmultitest, ZIPMultiTest ) TestCase(ziptest, ZIPTest ) - TestCase(systemLibTest, SystemLibTest) TestCase(qmlfiledialogtest, QmlFileDialogTest) + TestCase(systemLibTest, SystemLibTest) #endif diff --git a/tests/units/linux/qmlfiledialogtest.cpp b/tests/units/linux/qmlfiledialogtest.cpp index de4cf0ff..b134f5b6 100644 --- a/tests/units/linux/qmlfiledialogtest.cpp +++ b/tests/units/linux/qmlfiledialogtest.cpp @@ -36,10 +36,25 @@ void QmlFileDialogTest::test() { "./" + DISTRO_DIR + "/qml/QtCore/qmldir", "./" + DISTRO_DIR + "/qml/QtQuick/Dialogs/libqtquickdialogsplugin.so", "./" + DISTRO_DIR + "/qml/QtQuick/Dialogs/plugins.qmltypes", - "./" + DISTRO_DIR + "/qml/QtQuick/Dialogs/qmldir" + "./" + DISTRO_DIR + "/qml/QtQuick/Dialogs/qmldir", } ); +#if QT_VERSION >= QT_VERSION_CHECK(6, 6, 0) + compareTree += utils.createTree( + { + "./" + DISTRO_DIR + "/lib/libQt6QuickLayouts.so", + "./" + DISTRO_DIR + "/qml/QtQuick/Dialogs/quickimpl/libqtquickdialogs2quickimplplugin.so", + "./" + DISTRO_DIR + "/qml/QtQuick/Dialogs/quickimpl/plugins.qmltypes", + "./" + DISTRO_DIR + "/qml/QtQuick/Dialogs/quickimpl/qmldir", + "./" + DISTRO_DIR + "/qml/QtQuick/Layouts/libqquicklayoutsplugin.so", + "./" + DISTRO_DIR + "/qml/QtQuick/Layouts/plugins.qmltypes", + "./" + DISTRO_DIR + "/qml/QtQuick/Layouts/qmldir" + + } + ); +#endif + auto bin = TestBinDir + "QMLFileDialog"; runTestParams({"-bin", bin, "clear" , diff --git a/tests/units/modules.h b/tests/units/modules.h index d0eabc37..05919e1e 100644 --- a/tests/units/modules.h +++ b/tests/units/modules.h @@ -11,7 +11,10 @@ #include #include -#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) +#if QT_VERSION >= QT_VERSION_CHECK(6, 6, 0) + #include "modulesqt6_6.h" + class Modules: public ModulesQt6_6 +#elif QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) #include "modulesqt6_5.h" class Modules: public ModulesQt6_5 From c95d35bce7ecbdbe1d0e394723afe53be2a9d379 Mon Sep 17 00:00:00 2001 From: Barry Allen <52690323+NLLK@users.noreply.github.com> Date: Mon, 11 Dec 2023 11:04:04 +0600 Subject: [PATCH 03/10] fix typos in md/ru/Options.md Signed-off-by: Barry Allen <52690323+NLLK@users.noreply.github.com> --- md/ru/Options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md/ru/Options.md b/md/ru/Options.md index 715c0c85..7961ef68 100644 --- a/md/ru/Options.md +++ b/md/ru/Options.md @@ -79,7 +79,7 @@ cqtdeployer -option1 value1 -option2 list,of,values flag1 flag2 flag3 |-----------------------------|-----------------------------------------------------------| | -bin [list,params] | Развертываемый файл или папка. пример -bin ~/my/project/bin/,~/my/project/bin.exe. Для файлов: эти файлы будут безоговорочно скопированы в целевой каталог, независимо от их формата или суффикса. Для папок: CQtDeployer войдет в эти папки и нерекурсивно скопирует все развертываемые файлы в целевой каталог. Затем CQtDeployer извлечет все зависимости скопированных файлов. CQtDeployer будет искать зависимости в системной среде и в путях libDir. **Примечание**. Если CQtDeployer не может найти требуемый файл, CQtDeployer попытается найти требуемый файл в системной среде PATH. | | -binPrefix [prefixPath] | Устанавливает путь префикса для опции bin. Пример: **-bin path/MyExecutable** - это тоже что и **-bin MyExecutable -binPrefix path** | -| -confFile [params] | Путь к файлу json со всеми конфигурациями развертывания. С помощью этого файла можно добавить нужные опции, тем самым упрастить вызов комманды в консоле. Однако пораметры в кансоле имеют больший приоритет чем в файле. Для получения дополнительной информации об этом флаге см. [Вики](DeployConfigFile) | +| -confFile [params] | Путь к файлу json со всеми конфигурациями развертывания. С помощью этого файла можно добавить нужные опции, тем самым упрастить вызов комманды в консоли. Однако пораметры в консоли имеют больший приоритет чем в файле. Для получения дополнительной информации об этом флаге см. [Вики](DeployConfigFile) | | -qmlDir [params] | Папка qml. пример -qmlDir ~/my/project/qml | | -qmake [params] | Путь к qmake. пример | | | -qmake ~/Qt/5.14.0/gcc_64/bin/qmake | From ebeaf115342d4abe0b0394552cf0adc6eb3ce742 Mon Sep 17 00:00:00 2001 From: Barry Allen <52690323+NLLK@users.noreply.github.com> Date: Mon, 11 Dec 2023 13:18:33 +0600 Subject: [PATCH 04/10] Update md/ru/CustomScripts.md Signed-off-by: Barry Allen <52690323+NLLK@users.noreply.github.com> --- md/ru/CustomScripts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md/ru/CustomScripts.md b/md/ru/CustomScripts.md index 96d823f9..a9ab9fb8 100644 --- a/md/ru/CustomScripts.md +++ b/md/ru/CustomScripts.md @@ -65,4 +65,4 @@ CQT_RUN_COMMAND ``` -Или вы можете получить последнюю версию этих скриптов из github [репозитория](https://github.com/QuasarApp/CQtDeployer/tree/main/Deploy/ScriptsTemplates). +Или вы можете получить последнюю версию этих скриптов из github [репозитория](https://github.com/QuasarApp/CQtDeployer/tree/main/src/Deploy/src/ScriptsTemplates). From aad8ae2dc6ffb043a2de109da501f264c6014f85 Mon Sep 17 00:00:00 2001 From: Babanov Date: Mon, 11 Dec 2023 13:42:20 +0600 Subject: [PATCH 05/10] fix broken links --- md/en/CustomScripts.md | 2 +- md/ru/CustomScripts.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/md/en/CustomScripts.md b/md/en/CustomScripts.md index d0583e2e..2a71fff9 100644 --- a/md/en/CustomScripts.md +++ b/md/en/CustomScripts.md @@ -66,4 +66,4 @@ CQT_RUN_COMMAND ``` -Or you can get last version of this scripts from the github [repository](https://github.com/QuasarApp/CQtDeployer/tree/main/Deploy/ScriptsTemplates). +Or you can get last version of this scripts from the github [repository](https://github.com/QuasarApp/CQtDeployer/tree/main/src/Deploy/src/ScriptsTemplates). diff --git a/md/ru/CustomScripts.md b/md/ru/CustomScripts.md index 96d823f9..a9ab9fb8 100644 --- a/md/ru/CustomScripts.md +++ b/md/ru/CustomScripts.md @@ -65,4 +65,4 @@ CQT_RUN_COMMAND ``` -Или вы можете получить последнюю версию этих скриптов из github [репозитория](https://github.com/QuasarApp/CQtDeployer/tree/main/Deploy/ScriptsTemplates). +Или вы можете получить последнюю версию этих скриптов из github [репозитория](https://github.com/QuasarApp/CQtDeployer/tree/main/src/Deploy/src/ScriptsTemplates). From 75fadce9f7e9bc0fa810a599841b8c90ba5842de Mon Sep 17 00:00:00 2001 From: EndrII Date: Sun, 31 Dec 2023 09:24:12 +0100 Subject: [PATCH 06/10] update copyright --- CMakeLists.txt | 2 +- src/CQtDeployer/CMakeLists.txt | 2 +- src/CQtDeployer/Deploy/snapcraft.yaml.in | 2 +- src/CQtDeployer/main.cpp | 2 +- src/Deploy/CMakeLists.txt | 2 +- src/Deploy/src/configparser.cpp | 2 +- src/Deploy/src/configparser.h | 2 +- src/Deploy/src/defines.h | 2 +- src/Deploy/src/dependenciesscanner.cpp | 2 +- src/Deploy/src/dependenciesscanner.h | 2 +- src/Deploy/src/dependencymap.cpp | 2 +- src/Deploy/src/dependencymap.h | 2 +- src/Deploy/src/deploy.cpp | 2 +- src/Deploy/src/deploy.h | 2 +- src/Deploy/src/deploy_global.h.in | 2 +- src/Deploy/src/deployconfig.cpp | 2 +- src/Deploy/src/deployconfig.h | 2 +- src/Deploy/src/deploycore.cpp | 2 +- src/Deploy/src/deploycore.h | 2 +- src/Deploy/src/distromodule.cpp | 2 +- src/Deploy/src/distromodule.h | 2 +- src/Deploy/src/distrostruct.cpp | 2 +- src/Deploy/src/distrostruct.h | 2 +- src/Deploy/src/elf_type.cpp | 2 +- src/Deploy/src/elf_type.h | 2 +- src/Deploy/src/envirement.cpp | 2 +- src/Deploy/src/envirement.h | 2 +- src/Deploy/src/extra.cpp | 2 +- src/Deploy/src/extra.h | 2 +- src/Deploy/src/extracter.cpp | 2 +- src/Deploy/src/extracter.h | 2 +- src/Deploy/src/filemanager.cpp | 2 +- src/Deploy/src/filemanager.h | 2 +- src/Deploy/src/generalfiles_type.cpp | 2 +- src/Deploy/src/generalfiles_type.h | 2 +- src/Deploy/src/igetlibinfo.h | 2 +- src/Deploy/src/ignorerule.cpp | 2 +- src/Deploy/src/ignorerule.h | 2 +- src/Deploy/src/iqml.cpp | 2 +- src/Deploy/src/iqml.h | 2 +- src/Deploy/src/libinfo.cpp | 2 +- src/Deploy/src/libinfo.h | 2 +- src/Deploy/src/metafilemanager.cpp | 2 +- src/Deploy/src/metafilemanager.h | 2 +- src/Deploy/src/packagecontrol.cpp | 2 +- src/Deploy/src/packagecontrol.h | 2 +- src/Deploy/src/packing.cpp | 2 +- src/Deploy/src/packing.h | 2 +- src/Deploy/src/pathutils.cpp | 2 +- src/Deploy/src/pathutils.h | 2 +- src/Deploy/src/pe_type.cpp | 2 +- src/Deploy/src/pe_type.h | 2 +- src/Deploy/src/pluginsparser.cpp | 2 +- src/Deploy/src/pluginsparser.h | 2 +- src/Deploy/src/qmlqt5.cpp | 2 +- src/Deploy/src/qmlqt5.h | 2 +- src/Deploy/src/qmlqt6.cpp | 2 +- src/Deploy/src/qmlqt6.h | 2 +- src/Deploy/src/qtdir.cpp | 2 +- src/Deploy/src/qtdir.h | 2 +- src/Deploy/src/targetdata.h | 2 +- src/Deploy/src/targetinfo.cpp | 2 +- src/Deploy/src/targetinfo.h | 2 +- src/Deploy/src/zipcompresser.cpp | 2 +- src/Deploy/src/zipcompresser.h | 2 +- src/QtELFReader/CMakeLists.txt | 2 +- src/QtELFReader/src/elfreader_global.h.in | 2 +- submodules/QuasarAppLib | 2 +- testcases/CMakeLists.txt | 2 +- testcases/TestQMLWidgets/CMakeLists.txt | 2 +- testcases/TestQtWidgets/CMakeLists.txt | 2 +- tests/CMakeLists.txt | 2 +- tests/modules/modulesqt513.cpp | 2 +- tests/modules/modulesqt513.h | 2 +- tests/modules/modulesqt514.cpp | 2 +- tests/modules/modulesqt514.h | 2 +- tests/modules/modulesqt515.cpp | 2 +- tests/modules/modulesqt515.h | 2 +- tests/modules/modulesqt5152.cpp | 2 +- tests/modules/modulesqt5152.h | 2 +- tests/modules/modulesqt6_3.cpp | 2 +- tests/modules/modulesqt6_3.h | 2 +- tests/modules/modulesqt6_4.cpp | 2 +- tests/modules/modulesqt6_4.h | 2 +- tests/modules/modulesqt6_5.cpp | 2 +- tests/modules/modulesqt6_5.h | 2 +- tests/modules/modulesqt6_6.cpp | 2 +- tests/modules/modulesqt6_6.h | 2 +- tests/tstMain.cpp | 2 +- tests/units/linux/QIFWtest.cpp | 2 +- tests/units/linux/QIFWtest.h | 2 +- tests/units/linux/QIFWtestcustom.cpp | 2 +- tests/units/linux/QIFWtestcustom.h | 2 +- tests/units/linux/QIFWtestmulti.cpp | 2 +- tests/units/linux/QIFWtestmulti.h | 2 +- tests/units/linux/allowemptypackagestest.cpp | 2 +- tests/units/linux/allowemptypackagestest.h | 2 +- tests/units/linux/binprefixtest.cpp | 2 +- tests/units/linux/binprefixtest.h | 2 +- tests/units/linux/checkqttest.cpp | 2 +- tests/units/linux/checkqttest.h | 2 +- tests/units/linux/cleartest.cpp | 2 +- tests/units/linux/cleartest.h | 2 +- tests/units/linux/confifiletest.cpp | 2 +- tests/units/linux/confifiletest.h | 2 +- tests/units/linux/customplatformtest.cpp | 2 +- tests/units/linux/customplatformtest.h | 2 +- tests/units/linux/customscripttest.cpp | 2 +- tests/units/linux/customscripttest.h | 2 +- tests/units/linux/customtest.cpp | 2 +- tests/units/linux/customtest.h | 2 +- tests/units/linux/debcustomtest.cpp | 2 +- tests/units/linux/debcustomtest.h | 2 +- tests/units/linux/debmultitest.cpp | 2 +- tests/units/linux/debmultitest.h | 2 +- tests/units/linux/debtest.cpp | 2 +- tests/units/linux/debtest.h | 2 +- tests/units/linux/dependencymaptest.cpp | 2 +- tests/units/linux/dependencymaptest.h | 2 +- tests/units/linux/deploygeneralfilestest.cpp | 2 +- tests/units/linux/deploygeneralfilestest.h | 2 +- tests/units/linux/deploytargettest.cpp | 2 +- tests/units/linux/deploytargettest.h | 2 +- tests/units/linux/disablerunscripttest.cpp | 2 +- tests/units/linux/disablerunscripttest.h | 2 +- tests/units/linux/disableshortcutstest.cpp | 2 +- tests/units/linux/disableshortcutstest.h | 2 +- tests/units/linux/distrostructtest.cpp | 2 +- tests/units/linux/distrostructtest.h | 2 +- tests/units/linux/emptypackagestest.cpp | 2 +- tests/units/linux/emptypackagestest.h | 2 +- tests/units/linux/extractlibtest.cpp | 2 +- tests/units/linux/extractlibtest.h | 2 +- tests/units/linux/extradatatest.cpp | 2 +- tests/units/linux/extradatatest.h | 2 +- tests/units/linux/extradependstest.cpp | 2 +- tests/units/linux/extradependstest.h | 2 +- tests/units/linux/extrapluginstest.cpp | 2 +- tests/units/linux/extrapluginstest.h | 2 +- tests/units/linux/iconstest.cpp | 2 +- tests/units/linux/iconstest.h | 2 +- tests/units/linux/ignoreenvtest.cpp | 2 +- tests/units/linux/ignoreenvtest.h | 2 +- tests/units/linux/ignoreenvwithlibdirtest.cpp | 2 +- tests/units/linux/ignoreenvwithlibdirtest.h | 2 +- tests/units/linux/ignoretest.cpp | 2 +- tests/units/linux/ignoretest.h | 2 +- tests/units/linux/inittest.cpp | 2 +- tests/units/linux/inittest.h | 2 +- tests/units/linux/installdiroptionstest.cpp | 2 +- tests/units/linux/installdiroptionstest.h | 2 +- tests/units/linux/libcreator.cpp | 2 +- tests/units/linux/libcreator.h | 2 +- tests/units/linux/libdirstest.cpp | 2 +- tests/units/linux/libdirstest.h | 2 +- tests/units/linux/md5test.cpp | 2 +- tests/units/linux/md5test.h | 2 +- tests/units/linux/multipackingtest.cpp | 2 +- tests/units/linux/multipackingtest.h | 2 +- tests/units/linux/outdirtest.cpp | 2 +- tests/units/linux/outdirtest.h | 2 +- tests/units/linux/overridingtemplatedebtest.cpp | 2 +- tests/units/linux/overridingtemplatedebtest.h | 2 +- tests/units/linux/overridingtemplateqifwtest.cpp | 2 +- tests/units/linux/overridingtemplateqifwtest.h | 2 +- tests/units/linux/overwritetest.cpp | 2 +- tests/units/linux/overwritetest.h | 2 +- tests/units/linux/overwritewithpackingtest.cpp | 2 +- tests/units/linux/overwritewithpackingtest.h | 2 +- tests/units/linux/packagestest.cpp | 2 +- tests/units/linux/packagestest.h | 2 +- tests/units/linux/pathutilstest.cpp | 2 +- tests/units/linux/pathutilstest.h | 2 +- tests/units/linux/prefixtest.cpp | 2 +- tests/units/linux/prefixtest.h | 2 +- tests/units/linux/qifwachiveformattest.cpp | 2 +- tests/units/linux/qifwachiveformattest.h | 2 +- tests/units/linux/qifwbinarycreatortest.cpp | 2 +- tests/units/linux/qifwbinarycreatortest.h | 2 +- tests/units/linux/qifwouttest.cpp | 2 +- tests/units/linux/qifwouttest.h | 2 +- tests/units/linux/qifwresourcestest.cpp | 2 +- tests/units/linux/qifwresourcestest.h | 2 +- tests/units/linux/qmlcreator.cpp | 2 +- tests/units/linux/qmlcreator.h | 2 +- tests/units/linux/qmlextracttest.cpp | 2 +- tests/units/linux/qmlextracttest.h | 2 +- tests/units/linux/qmlfiledialogtest.cpp | 2 +- tests/units/linux/qmlfiledialogtest.h | 2 +- tests/units/linux/qmlscanertest.cpp | 2 +- tests/units/linux/qmlscanertest.h | 2 +- tests/units/linux/releativelinktest.cpp | 2 +- tests/units/linux/releativelinktest.h | 2 +- tests/units/linux/runscriptstest.cpp | 2 +- tests/units/linux/runscriptstest.h | 2 +- tests/units/linux/settargetdirtest.cpp | 2 +- tests/units/linux/settargetdirtest.h | 2 +- tests/units/linux/striptest.cpp | 2 +- tests/units/linux/striptest.h | 2 +- tests/units/linux/systemlibtest.cpp | 2 +- tests/units/linux/systemlibtest.h | 2 +- tests/units/linux/targetdirtest.cpp | 2 +- tests/units/linux/targetdirtest.h | 2 +- tests/units/linux/trtest.cpp | 2 +- tests/units/linux/trtest.h | 2 +- tests/units/linux/virtualkeybordtest.cpp | 2 +- tests/units/linux/virtualkeybordtest.h | 2 +- tests/units/linux/webenginetest.cpp | 2 +- tests/units/linux/webenginetest.h | 2 +- tests/units/linux/ziparrchivetest.cpp | 2 +- tests/units/linux/ziparrchivetest.h | 2 +- tests/units/linux/zipmultitest.cpp | 2 +- tests/units/linux/zipmultitest.h | 2 +- tests/units/linux/ziptest.cpp | 2 +- tests/units/linux/ziptest.h | 2 +- tests/units/modules.cpp | 2 +- tests/units/modules.h | 2 +- tests/units/qttest.cpp | 2 +- tests/units/qttest.h | 2 +- tests/units/test.cpp | 2 +- tests/units/test.h | 2 +- tests/units/testutils.cpp | 2 +- tests/units/testutils.h | 2 +- tests/units/win/MSVCtest.cpp | 2 +- tests/units/win/MSVCtest.h | 2 +- 225 files changed, 225 insertions(+), 225 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7c031377..492b5aca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2020-2023 QuasarApp. +# Copyright (C) 2020-2024 QuasarApp. # Distributed under the GPLv3 software license, see the accompanying # Everyone is permitted to copy and distribute verbatim copies # of this license document, but changing it is not allowed. diff --git a/src/CQtDeployer/CMakeLists.txt b/src/CQtDeployer/CMakeLists.txt index 2d37a58e..801bdb8b 100644 --- a/src/CQtDeployer/CMakeLists.txt +++ b/src/CQtDeployer/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2021-2023 QuasarApp. +# Copyright (C) 2021-2024 QuasarApp. # Distributed under the GPLv3 software license, see the accompanying # Everyone is permitted to copy and distribute verbatim copies # of this license document, but changing it is not allowed. diff --git a/src/CQtDeployer/Deploy/snapcraft.yaml.in b/src/CQtDeployer/Deploy/snapcraft.yaml.in index e7102e0c..823edeb1 100644 --- a/src/CQtDeployer/Deploy/snapcraft.yaml.in +++ b/src/CQtDeployer/Deploy/snapcraft.yaml.in @@ -1,5 +1,5 @@ # -# Copyright (C) 2018-2023 QuasarApp. +# Copyright (C) 2018-2024 QuasarApp. # Distributed under the lgplv3 software license, see the accompanying # Everyone is permitted to copy and distribute verbatim copies # of this license document, but changing it is not allowed. diff --git a/src/CQtDeployer/main.cpp b/src/CQtDeployer/main.cpp index 28758330..aade5581 100644 --- a/src/CQtDeployer/main.cpp +++ b/src/CQtDeployer/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/CMakeLists.txt b/src/Deploy/CMakeLists.txt index 958fbea9..99c71cac 100644 --- a/src/Deploy/CMakeLists.txt +++ b/src/Deploy/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2020-2023 QuasarApp. +# Copyright (C) 2020-2024 QuasarApp. # Distributed under the GPLv3 software license, see the accompanying # Everyone is permitted to copy and distribute verbatim copies # of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/configparser.cpp b/src/Deploy/src/configparser.cpp index 6abd29cc..258ea18e 100644 --- a/src/Deploy/src/configparser.cpp +++ b/src/Deploy/src/configparser.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/configparser.h b/src/Deploy/src/configparser.h index 2c6dd6d5..8a2bacb3 100644 --- a/src/Deploy/src/configparser.h +++ b/src/Deploy/src/configparser.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/defines.h b/src/Deploy/src/defines.h index ba567de3..1fdd0b35 100644 --- a/src/Deploy/src/defines.h +++ b/src/Deploy/src/defines.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/dependenciesscanner.cpp b/src/Deploy/src/dependenciesscanner.cpp index c0b2e1d4..30fe0d6f 100644 --- a/src/Deploy/src/dependenciesscanner.cpp +++ b/src/Deploy/src/dependenciesscanner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/dependenciesscanner.h b/src/Deploy/src/dependenciesscanner.h index 76019b6e..d6b79f7f 100644 --- a/src/Deploy/src/dependenciesscanner.h +++ b/src/Deploy/src/dependenciesscanner.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/dependencymap.cpp b/src/Deploy/src/dependencymap.cpp index dba479e0..d90e2c0c 100644 --- a/src/Deploy/src/dependencymap.cpp +++ b/src/Deploy/src/dependencymap.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/dependencymap.h b/src/Deploy/src/dependencymap.h index 9878950c..c1c51c8a 100644 --- a/src/Deploy/src/dependencymap.h +++ b/src/Deploy/src/dependencymap.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/deploy.cpp b/src/Deploy/src/deploy.cpp index 91a6c141..adaff6eb 100644 --- a/src/Deploy/src/deploy.cpp +++ b/src/Deploy/src/deploy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/deploy.h b/src/Deploy/src/deploy.h index 64af554f..2b38c16e 100644 --- a/src/Deploy/src/deploy.h +++ b/src/Deploy/src/deploy.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/deploy_global.h.in b/src/Deploy/src/deploy_global.h.in index f1c8e11c..f0acba9c 100644 --- a/src/Deploy/src/deploy_global.h.in +++ b/src/Deploy/src/deploy_global.h.in @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/deployconfig.cpp b/src/Deploy/src/deployconfig.cpp index 4f39b691..944dad6b 100644 --- a/src/Deploy/src/deployconfig.cpp +++ b/src/Deploy/src/deployconfig.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/deployconfig.h b/src/Deploy/src/deployconfig.h index 1930c751..a6876b54 100644 --- a/src/Deploy/src/deployconfig.h +++ b/src/Deploy/src/deployconfig.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/deploycore.cpp b/src/Deploy/src/deploycore.cpp index e9802ee1..73db8dff 100644 --- a/src/Deploy/src/deploycore.cpp +++ b/src/Deploy/src/deploycore.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/deploycore.h b/src/Deploy/src/deploycore.h index 5547b4a4..41f843d1 100644 --- a/src/Deploy/src/deploycore.h +++ b/src/Deploy/src/deploycore.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/distromodule.cpp b/src/Deploy/src/distromodule.cpp index aaff833e..37e54ea7 100644 --- a/src/Deploy/src/distromodule.cpp +++ b/src/Deploy/src/distromodule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/distromodule.h b/src/Deploy/src/distromodule.h index 4d68d8b3..5afe0ac0 100644 --- a/src/Deploy/src/distromodule.h +++ b/src/Deploy/src/distromodule.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/distrostruct.cpp b/src/Deploy/src/distrostruct.cpp index f3c5a1f9..398f278a 100644 --- a/src/Deploy/src/distrostruct.cpp +++ b/src/Deploy/src/distrostruct.cpp @@ -1,6 +1,6 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/distrostruct.h b/src/Deploy/src/distrostruct.h index 345d3fa8..413154e1 100644 --- a/src/Deploy/src/distrostruct.h +++ b/src/Deploy/src/distrostruct.h @@ -1,6 +1,6 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/elf_type.cpp b/src/Deploy/src/elf_type.cpp index 26448cdf..95a08aa5 100644 --- a/src/Deploy/src/elf_type.cpp +++ b/src/Deploy/src/elf_type.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/elf_type.h b/src/Deploy/src/elf_type.h index 65d94978..51542d52 100644 --- a/src/Deploy/src/elf_type.h +++ b/src/Deploy/src/elf_type.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/envirement.cpp b/src/Deploy/src/envirement.cpp index c079126d..82aa81d7 100644 --- a/src/Deploy/src/envirement.cpp +++ b/src/Deploy/src/envirement.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/envirement.h b/src/Deploy/src/envirement.h index 7f3c1da0..ec3f07c6 100644 --- a/src/Deploy/src/envirement.h +++ b/src/Deploy/src/envirement.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/extra.cpp b/src/Deploy/src/extra.cpp index 837b5d71..85be3bfb 100644 --- a/src/Deploy/src/extra.cpp +++ b/src/Deploy/src/extra.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/extra.h b/src/Deploy/src/extra.h index b42679f0..fe295a4b 100644 --- a/src/Deploy/src/extra.h +++ b/src/Deploy/src/extra.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/extracter.cpp b/src/Deploy/src/extracter.cpp index 873ee0f5..73edcb93 100644 --- a/src/Deploy/src/extracter.cpp +++ b/src/Deploy/src/extracter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/extracter.h b/src/Deploy/src/extracter.h index 3db841f3..cb87c5e0 100644 --- a/src/Deploy/src/extracter.h +++ b/src/Deploy/src/extracter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/filemanager.cpp b/src/Deploy/src/filemanager.cpp index 365cb36c..d1994f35 100644 --- a/src/Deploy/src/filemanager.cpp +++ b/src/Deploy/src/filemanager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/filemanager.h b/src/Deploy/src/filemanager.h index 67f1e549..0c478966 100644 --- a/src/Deploy/src/filemanager.h +++ b/src/Deploy/src/filemanager.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/generalfiles_type.cpp b/src/Deploy/src/generalfiles_type.cpp index ccdd875c..5bd0dec7 100644 --- a/src/Deploy/src/generalfiles_type.cpp +++ b/src/Deploy/src/generalfiles_type.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2021-2023 QuasarApp. +//# Copyright (C) 2021-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/generalfiles_type.h b/src/Deploy/src/generalfiles_type.h index 46489e47..43ed0f0e 100644 --- a/src/Deploy/src/generalfiles_type.h +++ b/src/Deploy/src/generalfiles_type.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2021-2023 QuasarApp. +//# Copyright (C) 2021-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/igetlibinfo.h b/src/Deploy/src/igetlibinfo.h index 4991d8b3..2a49d5cb 100644 --- a/src/Deploy/src/igetlibinfo.h +++ b/src/Deploy/src/igetlibinfo.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/ignorerule.cpp b/src/Deploy/src/ignorerule.cpp index 2ca7f79f..89917959 100644 --- a/src/Deploy/src/ignorerule.cpp +++ b/src/Deploy/src/ignorerule.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/ignorerule.h b/src/Deploy/src/ignorerule.h index bdd1eabd..83172498 100644 --- a/src/Deploy/src/ignorerule.h +++ b/src/Deploy/src/ignorerule.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/iqml.cpp b/src/Deploy/src/iqml.cpp index e5c4eea3..154c3d4e 100644 --- a/src/Deploy/src/iqml.cpp +++ b/src/Deploy/src/iqml.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2022-2023 QuasarApp. +//# Copyright (C) 2022-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/iqml.h b/src/Deploy/src/iqml.h index 9638a7a5..eb02b2f7 100644 --- a/src/Deploy/src/iqml.h +++ b/src/Deploy/src/iqml.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2022-2023 QuasarApp. +//# Copyright (C) 2022-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/libinfo.cpp b/src/Deploy/src/libinfo.cpp index acef117d..e2508dc5 100644 --- a/src/Deploy/src/libinfo.cpp +++ b/src/Deploy/src/libinfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/libinfo.h b/src/Deploy/src/libinfo.h index 87084d75..7d160fd1 100644 --- a/src/Deploy/src/libinfo.h +++ b/src/Deploy/src/libinfo.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/metafilemanager.cpp b/src/Deploy/src/metafilemanager.cpp index a9929915..8c8f50b9 100644 --- a/src/Deploy/src/metafilemanager.cpp +++ b/src/Deploy/src/metafilemanager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/metafilemanager.h b/src/Deploy/src/metafilemanager.h index 7e7c80f4..04270b05 100644 --- a/src/Deploy/src/metafilemanager.h +++ b/src/Deploy/src/metafilemanager.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/packagecontrol.cpp b/src/Deploy/src/packagecontrol.cpp index 795b28a5..24190229 100644 --- a/src/Deploy/src/packagecontrol.cpp +++ b/src/Deploy/src/packagecontrol.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/packagecontrol.h b/src/Deploy/src/packagecontrol.h index 870cbcce..5fb3c056 100644 --- a/src/Deploy/src/packagecontrol.h +++ b/src/Deploy/src/packagecontrol.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/packing.cpp b/src/Deploy/src/packing.cpp index 974a57e9..4f68c503 100644 --- a/src/Deploy/src/packing.cpp +++ b/src/Deploy/src/packing.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/packing.h b/src/Deploy/src/packing.h index 0ce26328..6822bc92 100644 --- a/src/Deploy/src/packing.h +++ b/src/Deploy/src/packing.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/pathutils.cpp b/src/Deploy/src/pathutils.cpp index 2874b3dd..f17bf931 100644 --- a/src/Deploy/src/pathutils.cpp +++ b/src/Deploy/src/pathutils.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/pathutils.h b/src/Deploy/src/pathutils.h index 62f985c0..f3fef7c7 100644 --- a/src/Deploy/src/pathutils.h +++ b/src/Deploy/src/pathutils.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/pe_type.cpp b/src/Deploy/src/pe_type.cpp index bb4f3862..f5c5305d 100644 --- a/src/Deploy/src/pe_type.cpp +++ b/src/Deploy/src/pe_type.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/pe_type.h b/src/Deploy/src/pe_type.h index e29e2460..bbd852f0 100644 --- a/src/Deploy/src/pe_type.h +++ b/src/Deploy/src/pe_type.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/pluginsparser.cpp b/src/Deploy/src/pluginsparser.cpp index 1c6294e6..e3f53b4f 100644 --- a/src/Deploy/src/pluginsparser.cpp +++ b/src/Deploy/src/pluginsparser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/pluginsparser.h b/src/Deploy/src/pluginsparser.h index 7e899d30..741d0d1b 100644 --- a/src/Deploy/src/pluginsparser.h +++ b/src/Deploy/src/pluginsparser.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/qmlqt5.cpp b/src/Deploy/src/qmlqt5.cpp index e7e7aede..d9bae297 100644 --- a/src/Deploy/src/qmlqt5.cpp +++ b/src/Deploy/src/qmlqt5.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/qmlqt5.h b/src/Deploy/src/qmlqt5.h index e313bc7d..a2628b84 100644 --- a/src/Deploy/src/qmlqt5.h +++ b/src/Deploy/src/qmlqt5.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/qmlqt6.cpp b/src/Deploy/src/qmlqt6.cpp index 0de6eac1..56c3ec04 100644 --- a/src/Deploy/src/qmlqt6.cpp +++ b/src/Deploy/src/qmlqt6.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/qmlqt6.h b/src/Deploy/src/qmlqt6.h index d02d0951..d3a66a8e 100644 --- a/src/Deploy/src/qmlqt6.h +++ b/src/Deploy/src/qmlqt6.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/qtdir.cpp b/src/Deploy/src/qtdir.cpp index 04411fbb..8bedec0b 100644 --- a/src/Deploy/src/qtdir.cpp +++ b/src/Deploy/src/qtdir.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/qtdir.h b/src/Deploy/src/qtdir.h index 48773bbd..fd849e8d 100644 --- a/src/Deploy/src/qtdir.h +++ b/src/Deploy/src/qtdir.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/targetdata.h b/src/Deploy/src/targetdata.h index 6879fa61..4dc4b3ed 100644 --- a/src/Deploy/src/targetdata.h +++ b/src/Deploy/src/targetdata.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/targetinfo.cpp b/src/Deploy/src/targetinfo.cpp index 261bada1..a7173542 100644 --- a/src/Deploy/src/targetinfo.cpp +++ b/src/Deploy/src/targetinfo.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/targetinfo.h b/src/Deploy/src/targetinfo.h index 7ead6273..4825d121 100644 --- a/src/Deploy/src/targetinfo.h +++ b/src/Deploy/src/targetinfo.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2018-2023 QuasarApp. +//# Copyright (C) 2018-2024 QuasarApp. //# Distributed under the lgplv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/zipcompresser.cpp b/src/Deploy/src/zipcompresser.cpp index b7ec3cb1..605d5f19 100644 --- a/src/Deploy/src/zipcompresser.cpp +++ b/src/Deploy/src/zipcompresser.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/Deploy/src/zipcompresser.h b/src/Deploy/src/zipcompresser.h index a5600a06..3da8281d 100644 --- a/src/Deploy/src/zipcompresser.h +++ b/src/Deploy/src/zipcompresser.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/src/QtELFReader/CMakeLists.txt b/src/QtELFReader/CMakeLists.txt index 7455d2a0..99432926 100644 --- a/src/QtELFReader/CMakeLists.txt +++ b/src/QtELFReader/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2020-2023 QuasarApp. +# Copyright (C) 2020-2024 QuasarApp. # Distributed under the GPLv3 software license, see the accompanying # Everyone is permitted to copy and distribute verbatim copies # of this license document, but changing it is not allowed. diff --git a/src/QtELFReader/src/elfreader_global.h.in b/src/QtELFReader/src/elfreader_global.h.in index ae8118cb..f99b2274 100644 --- a/src/QtELFReader/src/elfreader_global.h.in +++ b/src/QtELFReader/src/elfreader_global.h.in @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/submodules/QuasarAppLib b/submodules/QuasarAppLib index 3b797f9a..37fe8a06 160000 --- a/submodules/QuasarAppLib +++ b/submodules/QuasarAppLib @@ -1 +1 @@ -Subproject commit 3b797f9a7883bec4083dc8abf6159b0146f313d3 +Subproject commit 37fe8a069b88a1b389868b6556e078e1310e9e95 diff --git a/testcases/CMakeLists.txt b/testcases/CMakeLists.txt index 8c6d4117..03f376df 100644 --- a/testcases/CMakeLists.txt +++ b/testcases/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2020-2023 QuasarApp. +# Copyright (C) 2020-2024 QuasarApp. # Distributed under the GPLv3 software license, see the accompanying # Everyone is permitted to copy and distribute verbatim copies # of this license document, but changing it is not allowed. diff --git a/testcases/TestQMLWidgets/CMakeLists.txt b/testcases/TestQMLWidgets/CMakeLists.txt index aece4813..69bf250e 100644 --- a/testcases/TestQMLWidgets/CMakeLists.txt +++ b/testcases/TestQMLWidgets/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2021-2023 QuasarApp. +# Copyright (C) 2021-2024 QuasarApp. # Distributed under the GPLv3 software license, see the accompanying # Everyone is permitted to copy and distribute verbatim copies # of this license document, but changing it is not allowed. diff --git a/testcases/TestQtWidgets/CMakeLists.txt b/testcases/TestQtWidgets/CMakeLists.txt index 569a9c94..9f608a09 100644 --- a/testcases/TestQtWidgets/CMakeLists.txt +++ b/testcases/TestQtWidgets/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2021-2023 QuasarApp. +# Copyright (C) 2021-2024 QuasarApp. # Distributed under the GPLv3 software license, see the accompanying # Everyone is permitted to copy and distribute verbatim copies # of this license document, but changing it is not allowed. diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 1a449389..3452ac90 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,5 +1,5 @@ # -# Copyright (C) 2020-2023 QuasarApp. +# Copyright (C) 2020-2024 QuasarApp. # Distributed under the GPLv3 software license, see the accompanying # Everyone is permitted to copy and distribute verbatim copies # of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt513.cpp b/tests/modules/modulesqt513.cpp index 239aee69..e5d500ef 100644 --- a/tests/modules/modulesqt513.cpp +++ b/tests/modules/modulesqt513.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt513.h b/tests/modules/modulesqt513.h index e4a934ad..7382b774 100644 --- a/tests/modules/modulesqt513.h +++ b/tests/modules/modulesqt513.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt514.cpp b/tests/modules/modulesqt514.cpp index ab7456a1..9b963633 100644 --- a/tests/modules/modulesqt514.cpp +++ b/tests/modules/modulesqt514.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt514.h b/tests/modules/modulesqt514.h index fbc4c075..1f6dad60 100644 --- a/tests/modules/modulesqt514.h +++ b/tests/modules/modulesqt514.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt515.cpp b/tests/modules/modulesqt515.cpp index 56d7719e..b873ad98 100644 --- a/tests/modules/modulesqt515.cpp +++ b/tests/modules/modulesqt515.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2023-2023 QuasarApp. + * Copyright (C) 2023-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt515.h b/tests/modules/modulesqt515.h index d284e3a4..082a2b14 100644 --- a/tests/modules/modulesqt515.h +++ b/tests/modules/modulesqt515.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt5152.cpp b/tests/modules/modulesqt5152.cpp index bf83b819..dc7b983e 100644 --- a/tests/modules/modulesqt5152.cpp +++ b/tests/modules/modulesqt5152.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2023-2023 QuasarApp. + * Copyright (C) 2023-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt5152.h b/tests/modules/modulesqt5152.h index f15df31d..69d89827 100644 --- a/tests/modules/modulesqt5152.h +++ b/tests/modules/modulesqt5152.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt6_3.cpp b/tests/modules/modulesqt6_3.cpp index 7dbf8805..4ca1a037 100644 --- a/tests/modules/modulesqt6_3.cpp +++ b/tests/modules/modulesqt6_3.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2023-2023 QuasarApp. + * Copyright (C) 2023-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt6_3.h b/tests/modules/modulesqt6_3.h index f5074ba2..fb2e7b65 100644 --- a/tests/modules/modulesqt6_3.h +++ b/tests/modules/modulesqt6_3.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt6_4.cpp b/tests/modules/modulesqt6_4.cpp index 41eee606..9a37d27d 100644 --- a/tests/modules/modulesqt6_4.cpp +++ b/tests/modules/modulesqt6_4.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2023-2023 QuasarApp. + * Copyright (C) 2023-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt6_4.h b/tests/modules/modulesqt6_4.h index 2477d56d..31867ee1 100644 --- a/tests/modules/modulesqt6_4.h +++ b/tests/modules/modulesqt6_4.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt6_5.cpp b/tests/modules/modulesqt6_5.cpp index 4cb32003..66b40f79 100644 --- a/tests/modules/modulesqt6_5.cpp +++ b/tests/modules/modulesqt6_5.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2023-2023 QuasarApp. + * Copyright (C) 2023-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt6_5.h b/tests/modules/modulesqt6_5.h index caae203a..f4dbcfdd 100644 --- a/tests/modules/modulesqt6_5.h +++ b/tests/modules/modulesqt6_5.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2023-2023 QuasarApp. + * Copyright (C) 2023-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt6_6.cpp b/tests/modules/modulesqt6_6.cpp index 1ad399ad..31ac9123 100644 --- a/tests/modules/modulesqt6_6.cpp +++ b/tests/modules/modulesqt6_6.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2023-2023 QuasarApp. + * Copyright (C) 2023-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/modules/modulesqt6_6.h b/tests/modules/modulesqt6_6.h index 5cfe6568..f50096e8 100644 --- a/tests/modules/modulesqt6_6.h +++ b/tests/modules/modulesqt6_6.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2023-2023 QuasarApp. + * Copyright (C) 2023-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/tstMain.cpp b/tests/tstMain.cpp index 4c8fd170..74860051 100644 --- a/tests/tstMain.cpp +++ b/tests/tstMain.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/QIFWtest.cpp b/tests/units/linux/QIFWtest.cpp index d3835eae..75c08eea 100644 --- a/tests/units/linux/QIFWtest.cpp +++ b/tests/units/linux/QIFWtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/QIFWtest.h b/tests/units/linux/QIFWtest.h index f2097bc4..eb7c6341 100644 --- a/tests/units/linux/QIFWtest.h +++ b/tests/units/linux/QIFWtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/QIFWtestcustom.cpp b/tests/units/linux/QIFWtestcustom.cpp index b72499f3..76271d58 100644 --- a/tests/units/linux/QIFWtestcustom.cpp +++ b/tests/units/linux/QIFWtestcustom.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/QIFWtestcustom.h b/tests/units/linux/QIFWtestcustom.h index 168712a6..5e9985ef 100644 --- a/tests/units/linux/QIFWtestcustom.h +++ b/tests/units/linux/QIFWtestcustom.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/QIFWtestmulti.cpp b/tests/units/linux/QIFWtestmulti.cpp index 2c73d1e4..db1c9236 100644 --- a/tests/units/linux/QIFWtestmulti.cpp +++ b/tests/units/linux/QIFWtestmulti.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/QIFWtestmulti.h b/tests/units/linux/QIFWtestmulti.h index b3479cf7..a3e565e5 100644 --- a/tests/units/linux/QIFWtestmulti.h +++ b/tests/units/linux/QIFWtestmulti.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/allowemptypackagestest.cpp b/tests/units/linux/allowemptypackagestest.cpp index 8d9698bc..442ce634 100644 --- a/tests/units/linux/allowemptypackagestest.cpp +++ b/tests/units/linux/allowemptypackagestest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/allowemptypackagestest.h b/tests/units/linux/allowemptypackagestest.h index 3e597edf..4dd4917a 100644 --- a/tests/units/linux/allowemptypackagestest.h +++ b/tests/units/linux/allowemptypackagestest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/binprefixtest.cpp b/tests/units/linux/binprefixtest.cpp index 54a7d484..8b9a2f50 100644 --- a/tests/units/linux/binprefixtest.cpp +++ b/tests/units/linux/binprefixtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/binprefixtest.h b/tests/units/linux/binprefixtest.h index 53a89b62..57623586 100644 --- a/tests/units/linux/binprefixtest.h +++ b/tests/units/linux/binprefixtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/checkqttest.cpp b/tests/units/linux/checkqttest.cpp index 59860634..5212b36f 100644 --- a/tests/units/linux/checkqttest.cpp +++ b/tests/units/linux/checkqttest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/checkqttest.h b/tests/units/linux/checkqttest.h index 918b71c2..b4550e17 100644 --- a/tests/units/linux/checkqttest.h +++ b/tests/units/linux/checkqttest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/cleartest.cpp b/tests/units/linux/cleartest.cpp index 26ae7279..3b7d7950 100644 --- a/tests/units/linux/cleartest.cpp +++ b/tests/units/linux/cleartest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/cleartest.h b/tests/units/linux/cleartest.h index b4651625..605af4ea 100644 --- a/tests/units/linux/cleartest.h +++ b/tests/units/linux/cleartest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/confifiletest.cpp b/tests/units/linux/confifiletest.cpp index dc6e9d21..85b4a1f8 100644 --- a/tests/units/linux/confifiletest.cpp +++ b/tests/units/linux/confifiletest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/confifiletest.h b/tests/units/linux/confifiletest.h index 7db14912..755adb46 100644 --- a/tests/units/linux/confifiletest.h +++ b/tests/units/linux/confifiletest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/customplatformtest.cpp b/tests/units/linux/customplatformtest.cpp index 6db036bc..cc24c237 100644 --- a/tests/units/linux/customplatformtest.cpp +++ b/tests/units/linux/customplatformtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/customplatformtest.h b/tests/units/linux/customplatformtest.h index e01db95c..8b97329a 100644 --- a/tests/units/linux/customplatformtest.h +++ b/tests/units/linux/customplatformtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/customscripttest.cpp b/tests/units/linux/customscripttest.cpp index 7a9ad530..b53ed1da 100644 --- a/tests/units/linux/customscripttest.cpp +++ b/tests/units/linux/customscripttest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/customscripttest.h b/tests/units/linux/customscripttest.h index 8822789b..b83c5817 100644 --- a/tests/units/linux/customscripttest.h +++ b/tests/units/linux/customscripttest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/customtest.cpp b/tests/units/linux/customtest.cpp index 960e0527..fe9fe574 100644 --- a/tests/units/linux/customtest.cpp +++ b/tests/units/linux/customtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/customtest.h b/tests/units/linux/customtest.h index dae1c861..b7fddcac 100644 --- a/tests/units/linux/customtest.h +++ b/tests/units/linux/customtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/debcustomtest.cpp b/tests/units/linux/debcustomtest.cpp index e8bd220c..12172851 100644 --- a/tests/units/linux/debcustomtest.cpp +++ b/tests/units/linux/debcustomtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/debcustomtest.h b/tests/units/linux/debcustomtest.h index 25669252..39da611b 100644 --- a/tests/units/linux/debcustomtest.h +++ b/tests/units/linux/debcustomtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/debmultitest.cpp b/tests/units/linux/debmultitest.cpp index 95d4754d..7ac0a467 100644 --- a/tests/units/linux/debmultitest.cpp +++ b/tests/units/linux/debmultitest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/debmultitest.h b/tests/units/linux/debmultitest.h index bfae649b..44eed432 100644 --- a/tests/units/linux/debmultitest.h +++ b/tests/units/linux/debmultitest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/debtest.cpp b/tests/units/linux/debtest.cpp index 2ff9028d..379409ba 100644 --- a/tests/units/linux/debtest.cpp +++ b/tests/units/linux/debtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/debtest.h b/tests/units/linux/debtest.h index 641b7a33..244ef4df 100644 --- a/tests/units/linux/debtest.h +++ b/tests/units/linux/debtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/dependencymaptest.cpp b/tests/units/linux/dependencymaptest.cpp index 20176be1..f1356104 100644 --- a/tests/units/linux/dependencymaptest.cpp +++ b/tests/units/linux/dependencymaptest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/dependencymaptest.h b/tests/units/linux/dependencymaptest.h index e95d870e..4d694e0c 100644 --- a/tests/units/linux/dependencymaptest.h +++ b/tests/units/linux/dependencymaptest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/deploygeneralfilestest.cpp b/tests/units/linux/deploygeneralfilestest.cpp index 843d5df2..ec5047d4 100644 --- a/tests/units/linux/deploygeneralfilestest.cpp +++ b/tests/units/linux/deploygeneralfilestest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/deploygeneralfilestest.h b/tests/units/linux/deploygeneralfilestest.h index 3344ed77..b0b9b9b1 100644 --- a/tests/units/linux/deploygeneralfilestest.h +++ b/tests/units/linux/deploygeneralfilestest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/deploytargettest.cpp b/tests/units/linux/deploytargettest.cpp index a90631a8..9015eb23 100644 --- a/tests/units/linux/deploytargettest.cpp +++ b/tests/units/linux/deploytargettest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/deploytargettest.h b/tests/units/linux/deploytargettest.h index 724ee538..c00ecba4 100644 --- a/tests/units/linux/deploytargettest.h +++ b/tests/units/linux/deploytargettest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/disablerunscripttest.cpp b/tests/units/linux/disablerunscripttest.cpp index 67786771..e635b084 100644 --- a/tests/units/linux/disablerunscripttest.cpp +++ b/tests/units/linux/disablerunscripttest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/disablerunscripttest.h b/tests/units/linux/disablerunscripttest.h index 4566113d..208256fc 100644 --- a/tests/units/linux/disablerunscripttest.h +++ b/tests/units/linux/disablerunscripttest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/disableshortcutstest.cpp b/tests/units/linux/disableshortcutstest.cpp index 8b7adbbf..dd236348 100644 --- a/tests/units/linux/disableshortcutstest.cpp +++ b/tests/units/linux/disableshortcutstest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/disableshortcutstest.h b/tests/units/linux/disableshortcutstest.h index aa9ea1d5..eaa1e20d 100644 --- a/tests/units/linux/disableshortcutstest.h +++ b/tests/units/linux/disableshortcutstest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/distrostructtest.cpp b/tests/units/linux/distrostructtest.cpp index a9fe0f4b..207a53c2 100644 --- a/tests/units/linux/distrostructtest.cpp +++ b/tests/units/linux/distrostructtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/distrostructtest.h b/tests/units/linux/distrostructtest.h index d17f2f9c..7fcb9f29 100644 --- a/tests/units/linux/distrostructtest.h +++ b/tests/units/linux/distrostructtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/emptypackagestest.cpp b/tests/units/linux/emptypackagestest.cpp index 3e7c1ac7..b8dae8df 100644 --- a/tests/units/linux/emptypackagestest.cpp +++ b/tests/units/linux/emptypackagestest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/emptypackagestest.h b/tests/units/linux/emptypackagestest.h index b1965cad..8592415b 100644 --- a/tests/units/linux/emptypackagestest.h +++ b/tests/units/linux/emptypackagestest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/extractlibtest.cpp b/tests/units/linux/extractlibtest.cpp index bec6aa27..97724641 100644 --- a/tests/units/linux/extractlibtest.cpp +++ b/tests/units/linux/extractlibtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/extractlibtest.h b/tests/units/linux/extractlibtest.h index 404e683b..6ad30ab2 100644 --- a/tests/units/linux/extractlibtest.h +++ b/tests/units/linux/extractlibtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/extradatatest.cpp b/tests/units/linux/extradatatest.cpp index 66106d91..94db1108 100644 --- a/tests/units/linux/extradatatest.cpp +++ b/tests/units/linux/extradatatest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/extradatatest.h b/tests/units/linux/extradatatest.h index e3fb14f5..28d521a4 100644 --- a/tests/units/linux/extradatatest.h +++ b/tests/units/linux/extradatatest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/extradependstest.cpp b/tests/units/linux/extradependstest.cpp index aac3f024..425dd207 100644 --- a/tests/units/linux/extradependstest.cpp +++ b/tests/units/linux/extradependstest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/extradependstest.h b/tests/units/linux/extradependstest.h index 15bb166d..82b295cb 100644 --- a/tests/units/linux/extradependstest.h +++ b/tests/units/linux/extradependstest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2023-2023 QuasarApp. +//# Copyright (C) 2023-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/extrapluginstest.cpp b/tests/units/linux/extrapluginstest.cpp index 11779f3b..820bff75 100644 --- a/tests/units/linux/extrapluginstest.cpp +++ b/tests/units/linux/extrapluginstest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/extrapluginstest.h b/tests/units/linux/extrapluginstest.h index ff638675..59fbed2c 100644 --- a/tests/units/linux/extrapluginstest.h +++ b/tests/units/linux/extrapluginstest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/iconstest.cpp b/tests/units/linux/iconstest.cpp index b6de3065..913d3caa 100644 --- a/tests/units/linux/iconstest.cpp +++ b/tests/units/linux/iconstest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/iconstest.h b/tests/units/linux/iconstest.h index 895ca90d..6a91be09 100644 --- a/tests/units/linux/iconstest.h +++ b/tests/units/linux/iconstest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/ignoreenvtest.cpp b/tests/units/linux/ignoreenvtest.cpp index cea5e1c6..a5b9d1f3 100644 --- a/tests/units/linux/ignoreenvtest.cpp +++ b/tests/units/linux/ignoreenvtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/ignoreenvtest.h b/tests/units/linux/ignoreenvtest.h index aef60784..f6d1a390 100644 --- a/tests/units/linux/ignoreenvtest.h +++ b/tests/units/linux/ignoreenvtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/ignoreenvwithlibdirtest.cpp b/tests/units/linux/ignoreenvwithlibdirtest.cpp index 0a66526c..79406bd3 100644 --- a/tests/units/linux/ignoreenvwithlibdirtest.cpp +++ b/tests/units/linux/ignoreenvwithlibdirtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/ignoreenvwithlibdirtest.h b/tests/units/linux/ignoreenvwithlibdirtest.h index 0651de5a..e349b61a 100644 --- a/tests/units/linux/ignoreenvwithlibdirtest.h +++ b/tests/units/linux/ignoreenvwithlibdirtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/ignoretest.cpp b/tests/units/linux/ignoretest.cpp index f905377f..aef615a1 100644 --- a/tests/units/linux/ignoretest.cpp +++ b/tests/units/linux/ignoretest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/ignoretest.h b/tests/units/linux/ignoretest.h index 2c191097..648d9132 100644 --- a/tests/units/linux/ignoretest.h +++ b/tests/units/linux/ignoretest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/inittest.cpp b/tests/units/linux/inittest.cpp index a7637505..cac8bbd0 100644 --- a/tests/units/linux/inittest.cpp +++ b/tests/units/linux/inittest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/inittest.h b/tests/units/linux/inittest.h index e10a94cb..c7402a1a 100644 --- a/tests/units/linux/inittest.h +++ b/tests/units/linux/inittest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/installdiroptionstest.cpp b/tests/units/linux/installdiroptionstest.cpp index 49b97a31..2b8f503d 100644 --- a/tests/units/linux/installdiroptionstest.cpp +++ b/tests/units/linux/installdiroptionstest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/installdiroptionstest.h b/tests/units/linux/installdiroptionstest.h index 29b322c8..526084fd 100644 --- a/tests/units/linux/installdiroptionstest.h +++ b/tests/units/linux/installdiroptionstest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/libcreator.cpp b/tests/units/linux/libcreator.cpp index f2dfce1e..94c2f339 100644 --- a/tests/units/linux/libcreator.cpp +++ b/tests/units/linux/libcreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/units/linux/libcreator.h b/tests/units/linux/libcreator.h index b88b3d16..39dec84f 100644 --- a/tests/units/linux/libcreator.h +++ b/tests/units/linux/libcreator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/units/linux/libdirstest.cpp b/tests/units/linux/libdirstest.cpp index abc65083..d7386da4 100644 --- a/tests/units/linux/libdirstest.cpp +++ b/tests/units/linux/libdirstest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/libdirstest.h b/tests/units/linux/libdirstest.h index 26ea1096..d88d8b71 100644 --- a/tests/units/linux/libdirstest.h +++ b/tests/units/linux/libdirstest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/md5test.cpp b/tests/units/linux/md5test.cpp index 8614fcc3..a1f68a28 100644 --- a/tests/units/linux/md5test.cpp +++ b/tests/units/linux/md5test.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/md5test.h b/tests/units/linux/md5test.h index 0e1d93e2..8fdc8266 100644 --- a/tests/units/linux/md5test.h +++ b/tests/units/linux/md5test.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/multipackingtest.cpp b/tests/units/linux/multipackingtest.cpp index 002c3c43..0b954f7e 100644 --- a/tests/units/linux/multipackingtest.cpp +++ b/tests/units/linux/multipackingtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/multipackingtest.h b/tests/units/linux/multipackingtest.h index b3a1dadd..b84f3104 100644 --- a/tests/units/linux/multipackingtest.h +++ b/tests/units/linux/multipackingtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/outdirtest.cpp b/tests/units/linux/outdirtest.cpp index ed4daaa6..55c0f62d 100644 --- a/tests/units/linux/outdirtest.cpp +++ b/tests/units/linux/outdirtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/outdirtest.h b/tests/units/linux/outdirtest.h index b89f160a..0d2ba937 100644 --- a/tests/units/linux/outdirtest.h +++ b/tests/units/linux/outdirtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/overridingtemplatedebtest.cpp b/tests/units/linux/overridingtemplatedebtest.cpp index 9a49494d..ab9e757b 100644 --- a/tests/units/linux/overridingtemplatedebtest.cpp +++ b/tests/units/linux/overridingtemplatedebtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/overridingtemplatedebtest.h b/tests/units/linux/overridingtemplatedebtest.h index 1de51922..974714c8 100644 --- a/tests/units/linux/overridingtemplatedebtest.h +++ b/tests/units/linux/overridingtemplatedebtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/overridingtemplateqifwtest.cpp b/tests/units/linux/overridingtemplateqifwtest.cpp index 8dad486d..3d6f967f 100644 --- a/tests/units/linux/overridingtemplateqifwtest.cpp +++ b/tests/units/linux/overridingtemplateqifwtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/overridingtemplateqifwtest.h b/tests/units/linux/overridingtemplateqifwtest.h index dfba203d..5c504801 100644 --- a/tests/units/linux/overridingtemplateqifwtest.h +++ b/tests/units/linux/overridingtemplateqifwtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/overwritetest.cpp b/tests/units/linux/overwritetest.cpp index 0d91cbd6..486fdfd4 100644 --- a/tests/units/linux/overwritetest.cpp +++ b/tests/units/linux/overwritetest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/overwritetest.h b/tests/units/linux/overwritetest.h index 7e1a0fa4..f9611e07 100644 --- a/tests/units/linux/overwritetest.h +++ b/tests/units/linux/overwritetest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/overwritewithpackingtest.cpp b/tests/units/linux/overwritewithpackingtest.cpp index d1025f40..462e862b 100644 --- a/tests/units/linux/overwritewithpackingtest.cpp +++ b/tests/units/linux/overwritewithpackingtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/overwritewithpackingtest.h b/tests/units/linux/overwritewithpackingtest.h index 3fa21f0c..7b1429ee 100644 --- a/tests/units/linux/overwritewithpackingtest.h +++ b/tests/units/linux/overwritewithpackingtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/packagestest.cpp b/tests/units/linux/packagestest.cpp index a2e0fd96..41a5f602 100644 --- a/tests/units/linux/packagestest.cpp +++ b/tests/units/linux/packagestest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/packagestest.h b/tests/units/linux/packagestest.h index b4b3be38..bd96cafe 100644 --- a/tests/units/linux/packagestest.h +++ b/tests/units/linux/packagestest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/pathutilstest.cpp b/tests/units/linux/pathutilstest.cpp index 90c2397c..9b5d1523 100644 --- a/tests/units/linux/pathutilstest.cpp +++ b/tests/units/linux/pathutilstest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/pathutilstest.h b/tests/units/linux/pathutilstest.h index 19d58215..8af9d308 100644 --- a/tests/units/linux/pathutilstest.h +++ b/tests/units/linux/pathutilstest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/prefixtest.cpp b/tests/units/linux/prefixtest.cpp index 9afddf92..e2e72a1b 100644 --- a/tests/units/linux/prefixtest.cpp +++ b/tests/units/linux/prefixtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/prefixtest.h b/tests/units/linux/prefixtest.h index a7a4c45d..390fd74b 100644 --- a/tests/units/linux/prefixtest.h +++ b/tests/units/linux/prefixtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qifwachiveformattest.cpp b/tests/units/linux/qifwachiveformattest.cpp index e618e64c..587ec157 100644 --- a/tests/units/linux/qifwachiveformattest.cpp +++ b/tests/units/linux/qifwachiveformattest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qifwachiveformattest.h b/tests/units/linux/qifwachiveformattest.h index d74712b0..8fb8d930 100644 --- a/tests/units/linux/qifwachiveformattest.h +++ b/tests/units/linux/qifwachiveformattest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qifwbinarycreatortest.cpp b/tests/units/linux/qifwbinarycreatortest.cpp index ff33b3bb..83698796 100644 --- a/tests/units/linux/qifwbinarycreatortest.cpp +++ b/tests/units/linux/qifwbinarycreatortest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qifwbinarycreatortest.h b/tests/units/linux/qifwbinarycreatortest.h index fbf602ac..94304a55 100644 --- a/tests/units/linux/qifwbinarycreatortest.h +++ b/tests/units/linux/qifwbinarycreatortest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qifwouttest.cpp b/tests/units/linux/qifwouttest.cpp index 952375d7..9bfc5d06 100644 --- a/tests/units/linux/qifwouttest.cpp +++ b/tests/units/linux/qifwouttest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qifwouttest.h b/tests/units/linux/qifwouttest.h index 3d671784..2094fade 100644 --- a/tests/units/linux/qifwouttest.h +++ b/tests/units/linux/qifwouttest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qifwresourcestest.cpp b/tests/units/linux/qifwresourcestest.cpp index 56dda9f3..a0ca971e 100644 --- a/tests/units/linux/qifwresourcestest.cpp +++ b/tests/units/linux/qifwresourcestest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qifwresourcestest.h b/tests/units/linux/qifwresourcestest.h index a6437a47..ebf826fe 100644 --- a/tests/units/linux/qifwresourcestest.h +++ b/tests/units/linux/qifwresourcestest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qmlcreator.cpp b/tests/units/linux/qmlcreator.cpp index 001a9868..57f3656f 100644 --- a/tests/units/linux/qmlcreator.cpp +++ b/tests/units/linux/qmlcreator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qmlcreator.h b/tests/units/linux/qmlcreator.h index 4025a195..e23a7a98 100644 --- a/tests/units/linux/qmlcreator.h +++ b/tests/units/linux/qmlcreator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qmlextracttest.cpp b/tests/units/linux/qmlextracttest.cpp index f667a784..919aa48a 100644 --- a/tests/units/linux/qmlextracttest.cpp +++ b/tests/units/linux/qmlextracttest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qmlextracttest.h b/tests/units/linux/qmlextracttest.h index 24d15cc5..d984993e 100644 --- a/tests/units/linux/qmlextracttest.h +++ b/tests/units/linux/qmlextracttest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qmlfiledialogtest.cpp b/tests/units/linux/qmlfiledialogtest.cpp index b134f5b6..027defff 100644 --- a/tests/units/linux/qmlfiledialogtest.cpp +++ b/tests/units/linux/qmlfiledialogtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qmlfiledialogtest.h b/tests/units/linux/qmlfiledialogtest.h index 1997f003..b2694417 100644 --- a/tests/units/linux/qmlfiledialogtest.h +++ b/tests/units/linux/qmlfiledialogtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qmlscanertest.cpp b/tests/units/linux/qmlscanertest.cpp index cea2b247..2581a21e 100644 --- a/tests/units/linux/qmlscanertest.cpp +++ b/tests/units/linux/qmlscanertest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/qmlscanertest.h b/tests/units/linux/qmlscanertest.h index 868d2e87..9277adee 100644 --- a/tests/units/linux/qmlscanertest.h +++ b/tests/units/linux/qmlscanertest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/releativelinktest.cpp b/tests/units/linux/releativelinktest.cpp index 03339158..3c9f942f 100644 --- a/tests/units/linux/releativelinktest.cpp +++ b/tests/units/linux/releativelinktest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/releativelinktest.h b/tests/units/linux/releativelinktest.h index b224ef5b..d2790459 100644 --- a/tests/units/linux/releativelinktest.h +++ b/tests/units/linux/releativelinktest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/runscriptstest.cpp b/tests/units/linux/runscriptstest.cpp index abe25213..e0daca08 100644 --- a/tests/units/linux/runscriptstest.cpp +++ b/tests/units/linux/runscriptstest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/runscriptstest.h b/tests/units/linux/runscriptstest.h index 7b74ee26..524cacc3 100644 --- a/tests/units/linux/runscriptstest.h +++ b/tests/units/linux/runscriptstest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/settargetdirtest.cpp b/tests/units/linux/settargetdirtest.cpp index 5fb54b59..52929de9 100644 --- a/tests/units/linux/settargetdirtest.cpp +++ b/tests/units/linux/settargetdirtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/settargetdirtest.h b/tests/units/linux/settargetdirtest.h index 71658ed8..fa6cbca6 100644 --- a/tests/units/linux/settargetdirtest.h +++ b/tests/units/linux/settargetdirtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/striptest.cpp b/tests/units/linux/striptest.cpp index dab88800..bfe68ea3 100644 --- a/tests/units/linux/striptest.cpp +++ b/tests/units/linux/striptest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/striptest.h b/tests/units/linux/striptest.h index 4d08b179..34610e05 100644 --- a/tests/units/linux/striptest.h +++ b/tests/units/linux/striptest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/systemlibtest.cpp b/tests/units/linux/systemlibtest.cpp index 834b9e56..d9c266d6 100644 --- a/tests/units/linux/systemlibtest.cpp +++ b/tests/units/linux/systemlibtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/systemlibtest.h b/tests/units/linux/systemlibtest.h index 7cbb1834..b9268568 100644 --- a/tests/units/linux/systemlibtest.h +++ b/tests/units/linux/systemlibtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/targetdirtest.cpp b/tests/units/linux/targetdirtest.cpp index 17fdde42..20d0e489 100644 --- a/tests/units/linux/targetdirtest.cpp +++ b/tests/units/linux/targetdirtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/targetdirtest.h b/tests/units/linux/targetdirtest.h index 30516206..289340b5 100644 --- a/tests/units/linux/targetdirtest.h +++ b/tests/units/linux/targetdirtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/trtest.cpp b/tests/units/linux/trtest.cpp index 974958c8..756340f2 100644 --- a/tests/units/linux/trtest.cpp +++ b/tests/units/linux/trtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/trtest.h b/tests/units/linux/trtest.h index 7d06a32a..ce65aef2 100644 --- a/tests/units/linux/trtest.h +++ b/tests/units/linux/trtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/virtualkeybordtest.cpp b/tests/units/linux/virtualkeybordtest.cpp index beacc9ca..cda5f25b 100644 --- a/tests/units/linux/virtualkeybordtest.cpp +++ b/tests/units/linux/virtualkeybordtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/virtualkeybordtest.h b/tests/units/linux/virtualkeybordtest.h index d9ce4f98..f6db36a5 100644 --- a/tests/units/linux/virtualkeybordtest.h +++ b/tests/units/linux/virtualkeybordtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/webenginetest.cpp b/tests/units/linux/webenginetest.cpp index 1d368a81..b6831eb1 100644 --- a/tests/units/linux/webenginetest.cpp +++ b/tests/units/linux/webenginetest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/webenginetest.h b/tests/units/linux/webenginetest.h index ef2c9e6f..2d56b057 100644 --- a/tests/units/linux/webenginetest.h +++ b/tests/units/linux/webenginetest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/ziparrchivetest.cpp b/tests/units/linux/ziparrchivetest.cpp index 3b264931..933a52a1 100644 --- a/tests/units/linux/ziparrchivetest.cpp +++ b/tests/units/linux/ziparrchivetest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/ziparrchivetest.h b/tests/units/linux/ziparrchivetest.h index 7f0c7a64..4821ab76 100644 --- a/tests/units/linux/ziparrchivetest.h +++ b/tests/units/linux/ziparrchivetest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/zipmultitest.cpp b/tests/units/linux/zipmultitest.cpp index e48624a5..7c7ab711 100644 --- a/tests/units/linux/zipmultitest.cpp +++ b/tests/units/linux/zipmultitest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/zipmultitest.h b/tests/units/linux/zipmultitest.h index 81b600ce..d65fb9ce 100644 --- a/tests/units/linux/zipmultitest.h +++ b/tests/units/linux/zipmultitest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/ziptest.cpp b/tests/units/linux/ziptest.cpp index bc57ccc6..da73a2b1 100644 --- a/tests/units/linux/ziptest.cpp +++ b/tests/units/linux/ziptest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/linux/ziptest.h b/tests/units/linux/ziptest.h index 30e71c5f..dac6ab54 100644 --- a/tests/units/linux/ziptest.h +++ b/tests/units/linux/ziptest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/modules.cpp b/tests/units/modules.cpp index f00b5398..c9b85baf 100644 --- a/tests/units/modules.cpp +++ b/tests/units/modules.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/units/modules.h b/tests/units/modules.h index 05919e1e..4053a3dd 100644 --- a/tests/units/modules.h +++ b/tests/units/modules.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/units/qttest.cpp b/tests/units/qttest.cpp index 48d7c38b..43217b36 100644 --- a/tests/units/qttest.cpp +++ b/tests/units/qttest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/qttest.h b/tests/units/qttest.h index 889b5568..648dcd3d 100644 --- a/tests/units/qttest.h +++ b/tests/units/qttest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/test.cpp b/tests/units/test.cpp index ea1c3c38..eaa0f045 100644 --- a/tests/units/test.cpp +++ b/tests/units/test.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/test.h b/tests/units/test.h index 0289d7a2..270ea623 100644 --- a/tests/units/test.h +++ b/tests/units/test.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2023 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/testutils.cpp b/tests/units/testutils.cpp index f6e82310..0e4a9a58 100644 --- a/tests/units/testutils.cpp +++ b/tests/units/testutils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/units/testutils.h b/tests/units/testutils.h index 07ec51e1..6bafd598 100644 --- a/tests/units/testutils.h +++ b/tests/units/testutils.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2023 QuasarApp. + * Copyright (C) 2018-2024 QuasarApp. * Distributed under the lgplv3 software license, see the accompanying * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. diff --git a/tests/units/win/MSVCtest.cpp b/tests/units/win/MSVCtest.cpp index c0c2e0df..188f972e 100644 --- a/tests/units/win/MSVCtest.cpp +++ b/tests/units/win/MSVCtest.cpp @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2022 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. diff --git a/tests/units/win/MSVCtest.h b/tests/units/win/MSVCtest.h index 03ba5a59..02905341 100644 --- a/tests/units/win/MSVCtest.h +++ b/tests/units/win/MSVCtest.h @@ -1,5 +1,5 @@ //# -//# Copyright (C) 2020-2022 QuasarApp. +//# Copyright (C) 2020-2024 QuasarApp. //# Distributed under the GPLv3 software license, see the accompanying //# Everyone is permitted to copy and distribute verbatim copies //# of this license document, but changing it is not allowed. From 1dc62ea4daef9096e93c7ec1aa4b7664e4af569b Mon Sep 17 00:00:00 2001 From: EndrII Date: Sun, 31 Dec 2023 10:16:32 +0100 Subject: [PATCH 07/10] update cmake --- src/CQtDeployer/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CQtDeployer/CMakeLists.txt b/src/CQtDeployer/CMakeLists.txt index 801bdb8b..527927c2 100644 --- a/src/CQtDeployer/CMakeLists.txt +++ b/src/CQtDeployer/CMakeLists.txt @@ -122,5 +122,5 @@ if (UNIX) add_dependencies(snapcraft${CURRENT_PROJECT} "deploy${CURRENT_PROJECT}Single") endif() - addReleaseSnap(${CURRENT_PROJECT}) + addReleaseSnap(${CURRENT_PROJECT} latest/edge) endif() From 8ea108eb4cd1209af9e15caec13a43760937d462 Mon Sep 17 00:00:00 2001 From: EndrII Date: Sun, 21 Jan 2024 10:43:37 +0100 Subject: [PATCH 08/10] update quasrapp lib --- src/Deploy/src/configparser.cpp | 38 ++++++++++++++++------------- src/Deploy/src/deploycore.cpp | 42 ++++----------------------------- src/Deploy/src/deploycore.h | 5 ---- src/Deploy/src/distromodule.cpp | 5 ++-- src/Deploy/src/elf_type.cpp | 5 ++-- submodules/QuasarAppLib | 2 +- 6 files changed, 33 insertions(+), 64 deletions(-) diff --git a/src/Deploy/src/configparser.cpp b/src/Deploy/src/configparser.cpp index 258ea18e..a41d2621 100644 --- a/src/Deploy/src/configparser.cpp +++ b/src/Deploy/src/configparser.cpp @@ -23,6 +23,7 @@ #include #include #include +#include /** @@ -740,7 +741,7 @@ bool ConfigParser::parseDeployMode(bool checkBin) { if (!initQmake()) { - if (DeployCore::isSnap()) { + if (QuasarAppUtils::PlatformUtils::isSnap()) { QuasarAppUtils::Params::log("If you are using qmake from the system repository," " then you must use the classic version of CQtDeployer instead of the snap version." " This is due to the fact that the snap version" @@ -1024,9 +1025,11 @@ void ConfigParser::initIgnoreList() envUnix.addEnv(Envirement::recursiveInvairement("/lib", 3)); envUnix.addEnv(Envirement::recursiveInvairement("/usr/lib", 3)); - if (DeployCore::isSnap()) { - envUnix.addEnv(Envirement::recursiveInvairement(DeployCore::transportPathToSnapRoot("/lib"), 3)); - envUnix.addEnv(Envirement::recursiveInvairement(DeployCore::transportPathToSnapRoot("/usr/lib"), 3)); + if (QuasarAppUtils::PlatformUtils::isSnap()) { + envUnix.addEnv(Envirement::recursiveInvairement( + QuasarAppUtils::PlatformUtils::transportPathToSnapRoot("/lib"), 3)); + envUnix.addEnv(Envirement::recursiveInvairement( + QuasarAppUtils::PlatformUtils::transportPathToSnapRoot("/usr/lib"), 3)); } ruleUnix.prority = SystemLib; @@ -1113,7 +1116,7 @@ void ConfigParser::initIgnoreEnvList() { } // forbid pathes of the snap container - if (DeployCore::isSnap()) { + if (QuasarAppUtils::PlatformUtils::isSnap()) { ignoreEnvList.push_back("/lib"); ignoreEnvList.push_back("/usr/lib"); } @@ -1134,7 +1137,7 @@ QString ConfigParser::getPathFrmoQmakeLine(const QString &in) const { auto list = in.split(':'); if (list.size() > 1) { list.removeAt(0); - return DeployCore::transportPathToSnapRoot( + return QuasarAppUtils::PlatformUtils::transportPathToSnapRoot( QFileInfo(list.join(':')).absoluteFilePath().remove('\r')); } @@ -1151,7 +1154,7 @@ bool ConfigParser::initQmakePrivate(const QString &qmake) { // Invoke qmake executable only when qmake paths exclude snapRootFS path. // Because files in snapRootFS is not executable ... - if (!qmake.contains(DeployCore::snapRootFS()) && setQmake(qmake)) { + if (!qmake.contains(QuasarAppUtils::PlatformUtils::snapRootFS()) && setQmake(qmake)) { return true; } @@ -1167,8 +1170,8 @@ bool ConfigParser::initQmakePrivate(const QString &qmake) { QString debianQtRoot = QString("/usr/lib/%0/qt%1"). arg(neededPlatform).arg(qtVersion); - if (DeployCore::isSnap()) { - debianQtRoot = DeployCore::snapRootFS() + debianQtRoot; + if (QuasarAppUtils::PlatformUtils::isSnap()) { + debianQtRoot = QuasarAppUtils::PlatformUtils::snapRootFS() + debianQtRoot; } if (!setQtDir(debianQtRoot)) { @@ -1189,7 +1192,7 @@ bool ConfigParser::initQmakePrivate(const QString &qmake) { } // For snap package of cqtdeplyer it is normal behavior - if (!DeployCore::isSnap()) { + if (!QuasarAppUtils::PlatformUtils::isSnap()) { QuasarAppUtils::Params::log("Failed to execute the qmake process!" " Trying to initialize Qt directories from path: " + dir.absolutePath(), QuasarAppUtils::Warning); @@ -1214,7 +1217,8 @@ bool ConfigParser::initQmake() { return true; } - auto qmake = DeployCore::transportPathToSnapRoot(QuasarAppUtils::Params::getArg("qmake")); + auto qmake = QuasarAppUtils::PlatformUtils::transportPathToSnapRoot( + QuasarAppUtils::Params::getArg("qmake")); QFileInfo info(qmake); @@ -1409,7 +1413,7 @@ bool ConfigParser::initExtraPath() { QDir dir; for (const auto &i : listLibDir) { - QFileInfo info(DeployCore::transportPathToSnapRoot(i)); + QFileInfo info(QuasarAppUtils::PlatformUtils::transportPathToSnapRoot(i)); if (info.isDir()) { if (_config.targets().contains(info.absoluteFilePath())) { QuasarAppUtils::Params::log("Skip the extra library path because it is target!", @@ -1563,7 +1567,7 @@ void ConfigParser::initEnvirement() { QProcessEnvironment env = QProcessEnvironment::systemEnvironment(); auto path = env.value("PATH"); - if (!DeployCore::isSnap()) { + if (!QuasarAppUtils::PlatformUtils::isSnap()) { _config.envirement.addEnv(env.value("LD_LIBRARY_PATH")); _config.envirement.addEnv(path); @@ -1572,8 +1576,8 @@ void ConfigParser::initEnvirement() { QStringList dirs; #ifdef Q_OS_LINUX - dirs.append(getDirsRecursive(DeployCore::transportPathToSnapRoot("/lib"), 5)); - dirs.append(getDirsRecursive(DeployCore::transportPathToSnapRoot("/usr/lib"), 5)); + dirs.append(getDirsRecursive(QuasarAppUtils::PlatformUtils::transportPathToSnapRoot("/lib"), 5)); + dirs.append(getDirsRecursive(QuasarAppUtils::PlatformUtils::transportPathToSnapRoot("/usr/lib"), 5)); #else auto winPath = findWindowsPath(path); @@ -1592,14 +1596,14 @@ void ConfigParser::initEnvirement() { bool ConfigParser::checkSnapPermisions() { - if (!DeployCore::isSnap()) + if (!QuasarAppUtils::PlatformUtils::isSnap()) return true; bool system = QuasarAppUtils::Params::isEndable("deploySystem") || QuasarAppUtils::Params::isEndable("extraLibs"); - if (system && !DeployCore::checkSystemBakupSnapInterface()) { + if (system && !QuasarAppUtils::PlatformUtils::checkSystemBakupSnapInterface()) { QuasarAppUtils::Params::log("You use a deploySystem or extraLibs options," " but not added permision system-backup for cqtdeployer." diff --git a/src/Deploy/src/deploycore.cpp b/src/Deploy/src/deploycore.cpp index 73db8dff..c28b3814 100644 --- a/src/Deploy/src/deploycore.cpp +++ b/src/Deploy/src/deploycore.cpp @@ -16,6 +16,7 @@ #include #include #include +#include //QString DeployCore::qtDir = ""; //QStringList DeployCore::extraPaths = QStringList(); @@ -609,7 +610,7 @@ QString DeployCore::getAppVersion() { } QString DeployCore::getAppVersionName() { - if (isSnap()) { + if (QuasarAppUtils::PlatformUtils::isSnap()) { return "*** Cool Core (snap) ***"; } return "*** Cool Core ***"; @@ -661,9 +662,10 @@ QString DeployCore::findProcess(const QString &env, const QString& proc, bool ig } // working only for the snap version of cqtdeployer ... - if (isSnap()) { + if (QuasarAppUtils::PlatformUtils::isSnap()) { for (const auto& path : list) { - auto files = QDir(transportPathToSnapRoot(path)).entryInfoList(findEntries); + auto files = QDir(QuasarAppUtils::PlatformUtils::transportPathToSnapRoot(path)). + entryInfoList(findEntries); for (const auto& bin : files) { if (bin.baseName().compare(proc, DeployCore::getCaseSensitivity()) == 0) { @@ -1006,40 +1008,6 @@ char DeployCore::getEnvSeparator() { #endif } -bool DeployCore::isSnap() { - return QProcessEnvironment::systemEnvironment().value("SNAP").size(); -} - -QString DeployCore::snapRootFS() { - return "/var/lib/snapd/hostfs"; -} - -QString DeployCore::transportPathToSnapRoot(const QString &path) { - if (isSnap() && checkSystemBakupSnapInterface()) { - - if(QFileInfo(path).isWritable()) { - return path; - } - - if (path.size() && path[0] != QString("/")) { - auto absalutPath = QProcessEnvironment::systemEnvironment().value("PWD") + "/" + path; - if (!absalutPath.contains(DeployCore::snapRootFS())) { - return snapRootFS() + "/" + absalutPath; - } - } - - if (!path.contains(DeployCore::snapRootFS())) { - return snapRootFS() + "/" + path; - } - } - - return path; -} - -bool DeployCore::checkSystemBakupSnapInterface() { - return QDir(DeployCore::snapRootFS()).entryList(QDir::AllEntries | QDir::NoDotAndDotDot).size(); -} - void DeployCore::printInternalError(const char * function, const char* file, int line ) { QuasarAppUtils::Params::log(QString("Internal error ocurred in %0 (%1:%2).").arg(function, file).arg(line), QuasarAppUtils::Error); diff --git a/src/Deploy/src/deploycore.h b/src/Deploy/src/deploycore.h index 41f843d1..edc300e1 100644 --- a/src/Deploy/src/deploycore.h +++ b/src/Deploy/src/deploycore.h @@ -283,11 +283,6 @@ class DEPLOYSHARED_EXPORT DeployCore static QStringList debugExtensions(); static bool isDebugFile(const QString& file); - static bool isSnap(); - static QString snapRootFS(); - static QString transportPathToSnapRoot(const QString &path); - static bool checkSystemBakupSnapInterface(); - /** * @brief getLibCoreName This method remove platfomr specificly prefixes and sufixes of the librarry. * Example : getLibCoreName(libTest.so) return Test diff --git a/src/Deploy/src/distromodule.cpp b/src/Deploy/src/distromodule.cpp index 37e54ea7..a0c35544 100644 --- a/src/Deploy/src/distromodule.cpp +++ b/src/Deploy/src/distromodule.cpp @@ -8,6 +8,7 @@ #include "deployconfig.h" #include "deploycore.h" #include "distromodule.h" +#include DistroModule::DistroModule(const QString& key) { setKey(key); @@ -34,7 +35,7 @@ void DistroModule::setQmlInput(const QSet &qmlInput) { } void DistroModule::addQmlInput(const QString &target) { - _qmlInput.insert(DeployCore::transportPathToSnapRoot(target)); + _qmlInput.insert(QuasarAppUtils::PlatformUtils::transportPathToSnapRoot(target)); } QString DistroModule::name() const { @@ -110,7 +111,7 @@ void DistroModule::setExtraPlugins(const QSet &extraPlugins) { } void DistroModule::addExtraPlugins(const QString &extraPlugin) { - _extraPlugins += DeployCore::transportPathToSnapRoot(extraPlugin); + _extraPlugins += QuasarAppUtils::PlatformUtils::transportPathToSnapRoot(extraPlugin); } diff --git a/src/Deploy/src/elf_type.cpp b/src/Deploy/src/elf_type.cpp index 95a08aa5..67c6b448 100644 --- a/src/Deploy/src/elf_type.cpp +++ b/src/Deploy/src/elf_type.cpp @@ -66,9 +66,10 @@ QString ELF::extractRPath(ElfReader& reader) const { for (const auto &path: pathes) { if (path.contains("/")) { if (result.size()) { - result += DeployCore::getEnvSeparator() + DeployCore::transportPathToSnapRoot(path); + result += DeployCore::getEnvSeparator() + + QuasarAppUtils::PlatformUtils::transportPathToSnapRoot(path); } else { - result += DeployCore::transportPathToSnapRoot(path); + result += QuasarAppUtils::PlatformUtils::transportPathToSnapRoot(path); } } } diff --git a/submodules/QuasarAppLib b/submodules/QuasarAppLib index 37fe8a06..00b80d94 160000 --- a/submodules/QuasarAppLib +++ b/submodules/QuasarAppLib @@ -1 +1 @@ -Subproject commit 37fe8a069b88a1b389868b6556e078e1310e9e95 +Subproject commit 00b80d94547f2bfe96c675950a4e68619b49f4fd From 146140fc153df7efce5fef84b82276c76d6e3291 Mon Sep 17 00:00:00 2001 From: EndrII Date: Sun, 21 Jan 2024 10:48:10 +0100 Subject: [PATCH 09/10] update submodule --- submodules/QuasarAppLib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/QuasarAppLib b/submodules/QuasarAppLib index 00b80d94..ad27b38b 160000 --- a/submodules/QuasarAppLib +++ b/submodules/QuasarAppLib @@ -1 +1 @@ -Subproject commit 00b80d94547f2bfe96c675950a4e68619b49f4fd +Subproject commit ad27b38b10767c96fcd8a8436530cefbaf992af9 From f199926a7f796e1101a8689616a5739d9f58967a Mon Sep 17 00:00:00 2001 From: EndrII Date: Sun, 21 Jan 2024 11:03:03 +0100 Subject: [PATCH 10/10] update qa --- submodules/QuasarAppLib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/QuasarAppLib b/submodules/QuasarAppLib index ad27b38b..b7b0f330 160000 --- a/submodules/QuasarAppLib +++ b/submodules/QuasarAppLib @@ -1 +1 @@ -Subproject commit ad27b38b10767c96fcd8a8436530cefbaf992af9 +Subproject commit b7b0f330c6866cbc01eb663a5dc6de863815cb58