From ff7f350bb6a918596ec3e21c444b71d7e201afdc Mon Sep 17 00:00:00 2001 From: Aaron Rainbolt Date: Mon, 1 Jan 2024 09:20:00 -0600 Subject: [PATCH 1/3] Position the main window where it belongs --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index a1b5125..50f4baa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -40,6 +40,7 @@ int main(int argc, char *argv[]) for (QScreen *screen : QApplication::screens()) { if (screen == QApplication::primaryScreen()) { w = new InstallerPrompt(); + w->setGeometry(screen->geometry()); w->showFullScreen(); continue; } From adfa711e79953566eebf36eff6b8acdac2df6b24 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Mon, 1 Jan 2024 13:50:58 -0600 Subject: [PATCH 2/3] s/lubuntu/Lubuntu/g --- src/translations/lubuntu-installer-prompt_es.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/translations/lubuntu-installer-prompt_es.ts b/src/translations/lubuntu-installer-prompt_es.ts index 09d2e5c..47208b0 100644 --- a/src/translations/lubuntu-installer-prompt_es.ts +++ b/src/translations/lubuntu-installer-prompt_es.ts @@ -52,7 +52,7 @@ <html><head/><body><p><span style=" font-size:12pt;">Try Lubuntu without installing it on your system. Allows you to use programs, browse the Web, and even temporarily install apps without modifying your system. Changes made within the live environment will be lost when the computer shuts down.</span></p></body></html> - <html> <head/> <body> <p> <span style = "font-size: 12pt;"> Pruebe lubuntu sin instalarlo en su sistema. Le permite usar programas, navegar por la web e incluso instalar aplicaciones temporalmente sin modificar su sistema. Los cambios realizados en el entorno en vivo se perderán cuando la computadora se apague. </span> </p> </body> </html> + <html> <head/> <body> <p> <span style = "font-size: 12pt;"> Pruebe Lubuntu sin instalarlo en su sistema. Le permite usar programas, navegar por la web e incluso instalar aplicaciones temporalmente sin modificar su sistema. Los cambios realizados en el entorno en vivo se perderán cuando la computadora se apague. </span> </p> </body> </html> @@ -62,7 +62,7 @@ <html><head/><body><p><span style=" font-size:12pt;">Install Lubuntu onto your system. You can install Lubuntu by itself, or alongside an existing operating system.</span></p></body></html> - <html> <head/> <body> <p> <span style = "font-size: 12pt;"> Instale lubuntu en su sistema. Puede instalar Lubuntu por sí mismo, o junto con un sistema operativo existente. </span> </p> </body> </html> + <html> <head/> <body> <p> <span style = "font-size: 12pt;"> Instale Lubuntu en su sistema. Puede instalar Lubuntu por sí mismo, o junto con un sistema operativo existente. </span> </p> </body> </html> From ff35d92784925065ea78d33f4ca32b663406546a Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Mon, 1 Jan 2024 13:51:18 -0600 Subject: [PATCH 3/3] Pre-release commit. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 26e1eb9..71113a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(lubuntu-installer-prompt VERSION 1.1.1 LANGUAGES CXX) +project(lubuntu-installer-prompt VERSION 1.1.2 LANGUAGES CXX) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTOMOC ON)