From e187e696b5075c78e42672233cadc05886131b51 Mon Sep 17 00:00:00 2001 From: IFo Hancroft Date: Mon, 6 Oct 2025 19:33:07 +0300 Subject: [PATCH] Added GPL-3.0-or-later to the list of licenses (#24447) * Added GPL-3.0-or-later to the list of licenses * Incremented number of licenses --- src/App/License.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App/License.h b/src/App/License.h index f6c177361a..07b43d62fe 100644 --- a/src/App/License.h +++ b/src/App/License.h @@ -40,7 +40,7 @@ using TLicenseArr = std::array; constexpr int posnOfIdentifier = 0; constexpr int posnOfFullName = 1; constexpr int posnOfUrl = 2; -constexpr int countOfLicenses {18}; +constexpr int countOfLicenses {19}; // clang-format off constexpr std::array licenseItems {{ { "AllRightsReserved", "All rights reserved", "https://en.wikipedia.org/wiki/All_rights_reserved" }, @@ -61,6 +61,7 @@ constexpr std::array licenseItems {{ { "CERN_OHS_S", "CERN Open Hardware Licence strongly-reciprocal", "https://cern-ohl.web.cern.ch/" }, { "CERN_OHS_W", "CERN Open Hardware Licence weakly-reciprocal", "https://cern-ohl.web.cern.ch/" }, { "CERN_OHS_P", "CERN Open Hardware Licence permissive", "https://cern-ohl.web.cern.ch/" }, + { "GPL-3.0-or-later", "GNU General Public License 3.0 or later", "https://www.gnu.org/licenses/gpl-3.0.html" }, }}; // clang-format on