diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e10a1f..9fdc732 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(lubuntu-installer-prompt VERSION 0.1 LANGUAGES CXX) +project(lubuntu-installer-prompt VERSION 1.0.0 LANGUAGES CXX) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTOMOC ON) diff --git a/README.md b/README.md index 20c1127..23c52f5 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,10 @@ # Lubuntu Installer Prompt -This project is in alpha. It may change drastically, or not. It presents a "Try or Install Lubuntu" screen. Eventually we want to extend this to support multiple flavors. +This project is in beta. It presents a "Try or Install Lubuntu" screen. Eventually we want to extend this to support multiple flavors. Releases are signed with Simon Quigley's GPG key: 5C7ABEA20F8630459CC8C8B5E27F2CF8458C2FA4 -Licensing info: - - Everything is GPL-3 by 2022 Lubuntu Developers unless stated otherwise. - - img/background.png is licensed CC-BY-4.0, authored by Aaron Rainbolt , copyright ownership the same as source +All art assets are (C) 2010-2018 Rafael Laguna (GPL-2.0+). Otherwise, the source is (C) 2022-2023 Lubuntu Developers . ## Architecture diff --git a/src/installerprompt.cpp b/src/installerprompt.cpp index 5fb6a95..7a9ae9f 100644 --- a/src/installerprompt.cpp +++ b/src/installerprompt.cpp @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2022-2023 Lubuntu Developers + * Authored by: Simon Quigley + * Aaron Rainbolt + * + * This is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, version 3 of the License. + * + * This is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + #include #include #include diff --git a/src/main.cpp b/src/main.cpp index b710a5b..5467f8a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2022-2023 Lubuntu Developers + * Authored by: Simon Quigley + * Aaron Rainbolt + * + * This is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, version 3 of the License. + * + * This is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + #include "installerprompt.h" #include #include