diff --git a/helpers/DATA/plymouth/background.png b/helpers/DATA/plymouth/background.png index 4909d165a820f96bcf81e10cb6c4046d6a2382ec..77aa5586cd0b6d94850e7b8020be9137d01b61ec 100644 Binary files a/helpers/DATA/plymouth/background.png and b/helpers/DATA/plymouth/background.png differ diff --git a/helpers/DATA/plymouth/script.script b/helpers/DATA/plymouth/script.script index 847154b7077e3c9132e9073a31eac1542b7c2fb5..d7149d094b6000aab80282cfc128e1b9f7e80ea6 100644 --- a/helpers/DATA/plymouth/script.script +++ b/helpers/DATA/plymouth/script.script @@ -23,10 +23,11 @@ if (bits_per_pixel == 4) { } -logo.sprite = Sprite(logo.image); +resized_logo_image = logo.image.Scale(screen_height / 3, screen_height / 3); +logo.sprite = Sprite(resized_logo_image); logo.opacity_angle = 0; -logo.sprite.SetX (Window.GetX() + Window.GetWidth() / 2 - logo.image.GetWidth() / 2); -logo.sprite.SetY (Window.GetY() + (Window.GetHeight() / 3) * 2 - logo.image.GetHeight() / 2); +logo.sprite.SetX (Window.GetX() + Window.GetWidth() / 2 - resized_logo_image.GetWidth() / 2); +logo.sprite.SetY (Window.GetY() + (Window.GetHeight() / 2) - resized_logo_image.GetHeight() / 2); logo.sprite.SetOpacity (1); fun refresh_callback () @@ -85,6 +86,7 @@ fun dialog_setup() fun dialog_opacity(opacity) { + logo.sprite.SetOpacity (0); dialog.box.sprite.SetOpacity (opacity); dialog.lock.sprite.SetOpacity (opacity); dialog.entry.sprite.SetOpacity (opacity); diff --git a/helpers/DATA/plymouth/trisquel_logo.png b/helpers/DATA/plymouth/trisquel_logo.png index 637c3065689ef7da8e399bcfa56b2245ee5618a9..9c1ecea3831dd12d8cf94b8eba2d1e573211b50b 100644 Binary files a/helpers/DATA/plymouth/trisquel_logo.png and b/helpers/DATA/plymouth/trisquel_logo.png differ diff --git a/helpers/make-plymouth b/helpers/make-plymouth index 086516292aeee7d147fd85d2d32b4ab34e965db6..c3e2de2aca7b5907e97f47734e91b46ceb996af0 100644 --- a/helpers/make-plymouth +++ b/helpers/make-plymouth @@ -1,6 +1,6 @@ #/bin/sh # -# Copyright (C) 2008-2018 Ruben Rodriguez <ruben@trisquel.info> +# Copyright (C) 2008-2020 Ruben Rodriguez <ruben@trisquel.info> # Copyright (C) 2019 Mason Hock <mason@masonhock.com> # # This program is free software; you can redistribute it and/or modify @@ -18,7 +18,7 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # -VERSION=6 +VERSION=7 QUILT=skip . ./config