diff --git a/.liccor.yml b/.liccor.yml index 9efd06c..8500800 100644 --- a/.liccor.yml +++ b/.liccor.yml @@ -2,7 +2,7 @@ source: - . copyright_notice: |- - Copyright 2021 - 2023 gary@drinkingtea.net + Copyright 2021 - 2024 gary@drinkingtea.net This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/cameraclient.cpp b/src/cameraclient.cpp index 2b654c2..71b09ae 100644 --- a/src/cameraclient.cpp +++ b/src/cameraclient.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/cameraclient.hpp b/src/cameraclient.hpp index 4e77591..93de281 100644 --- a/src/cameraclient.hpp +++ b/src/cameraclient.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/consts.hpp b/src/consts.hpp index 81d5cdd..2516e2f 100644 --- a/src/consts.hpp +++ b/src/consts.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -10,4 +10,5 @@ constexpr auto MaxCameraPresets = 9; constexpr auto MaxViews = 9; +constexpr auto Version = "1.0-beta4"; diff --git a/src/main.cpp b/src/main.cpp index 59e7250..9f6fd8a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 8b876a2..83f7a43 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -141,12 +141,12 @@ void MainWindow::setupMenu() { connect(aboutAct, &QAction::triggered, &m_cameraClient, [this] { QMessageBox about(this); about.setText(tr( -R"(Slide Controller 9000 - 1.0-beta4 -Build date: %1 +R"(Slide Controller 9000 - %1 +Build date: %2 -Copyright 2021 - 2023 Gary Talent (gary@drinkingtea.net) +Copyright 2021 - 2024 Gary Talent (gary@drinkingtea.net) Slide Controller 9000 is released under the MPL 2.0 -Built on Qt library under LGPL 2.0)").arg(__DATE__)); +Built on Qt library under LGPL 2.0)").arg(Version, __DATE__)); about.exec(); }); menu->addAction(aboutAct); diff --git a/src/mainwindow.hpp b/src/mainwindow.hpp index 6b5d371..2ad91b6 100644 --- a/src/mainwindow.hpp +++ b/src/mainwindow.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/obsclient.cpp b/src/obsclient.cpp index 3202dbc..973b692 100644 --- a/src/obsclient.cpp +++ b/src/obsclient.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/obsclient.hpp b/src/obsclient.hpp index d8c9329..1914b65 100644 --- a/src/obsclient.hpp +++ b/src/obsclient.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/openlpclient.cpp b/src/openlpclient.cpp index 2870718..d2556bb 100644 --- a/src/openlpclient.cpp +++ b/src/openlpclient.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/openlpclient.hpp b/src/openlpclient.hpp index e6b7c28..d171fe3 100644 --- a/src/openlpclient.hpp +++ b/src/openlpclient.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/settingsdata.cpp b/src/settingsdata.cpp index fa37df7..8c4dc42 100644 --- a/src/settingsdata.cpp +++ b/src/settingsdata.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/settingsdata.hpp b/src/settingsdata.hpp index 093e79d..7e4f250 100644 --- a/src/settingsdata.hpp +++ b/src/settingsdata.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/settingsdialog.cpp b/src/settingsdialog.cpp index 28a13da..ecd3f70 100644 --- a/src/settingsdialog.cpp +++ b/src/settingsdialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/settingsdialog.hpp b/src/settingsdialog.hpp index fd0d7e9..6a1c728 100644 --- a/src/settingsdialog.hpp +++ b/src/settingsdialog.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/slideview.cpp b/src/slideview.cpp index e6f6a78..6d4ec93 100644 --- a/src/slideview.cpp +++ b/src/slideview.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/slideview.hpp b/src/slideview.hpp index ff8fdf1..d9003ac 100644 --- a/src/slideview.hpp +++ b/src/slideview.hpp @@ -1,5 +1,5 @@ /* - * Copyright 2021 - 2023 gary@drinkingtea.net + * Copyright 2021 - 2024 gary@drinkingtea.net * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this