diff --git a/debian/changelog b/debian/changelog index 34e8464..9590384 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +lubuntu-artwork (25.10.2) questing; urgency=medium + + * Upload Questing Quokka artwork. + * Adjust SDDM theming for new login screen background. + * Fix background aspect ratio distortion. (LP: #2122069) + * Don't end up with the text message stuck as "Login failed" if a wrong + password is entered. (LP: #2122068) + * Fix the code that clears the password box if a wrong password is input. + (LP: #2122062) + + -- Aaron Rainbolt Thu, 04 Sep 2025 12:08:40 -0500 + lubuntu-artwork (25.10.1) questing; urgency=medium * Add hover styling to LXQt menu (contributed by Sean West, thank you!) diff --git a/debian/copyright b/debian/copyright index adaaa3b..81652da 100644 --- a/debian/copyright +++ b/debian/copyright @@ -45,6 +45,14 @@ License: CC0 Files: /usr/share/lubuntu/wallpapers/2210-kudu.png /usr/share/lubuntu/wallpapers/2304-lunar-lobster.png /usr/share/lubuntu/wallpapers/2304-clear-lobster.png + /usr/share/lubuntu/wallpapers/2404-stellar-numbat.png + /usr/share/lubuntu/wallpapers/2404-sddm-numbat.png + /usr/share/lubuntu/wallpapers/2410-oriole.png + /usr/share/lubuntu/wallpapers/2410-sddm-oriole.png + /usr/share/lubuntu/wallpapers/2504-puffin.png + /usr/share/lubuntu/wallpapers/2504-sddm-ocean.png + /usr/share/lubuntu/wallpapers/2510-quokka.png + /usr/share/lubuntu/wallpapers/2510-sddm-quokka.png Copyright: 2022-2023 Aaron Rainbolt 2022-2023 MediaMom Ministries License: CC-BY-SA-4.0 diff --git a/debian/lubuntu-artwork.install b/debian/lubuntu-artwork.install index 6789305..ee9449b 100644 --- a/debian/lubuntu-artwork.install +++ b/debian/lubuntu-artwork.install @@ -8,6 +8,7 @@ usr/share/lubuntu/wallpapers/2310-* usr/share/lubuntu/wallpapers/2404-* usr/share/lubuntu/wallpapers/2410-* usr/share/lubuntu/wallpapers/2504-* +usr/share/lubuntu/wallpapers/2510-* usr/share/lubuntu/wallpapers/lubuntu-default-wallpaper.png usr/share/lxqt/themes/Lubuntu* usr/share/themes/ diff --git a/src/usr/share/lubuntu/wallpapers/2510-quokka-alt.png b/src/usr/share/lubuntu/wallpapers/2510-quokka-alt.png new file mode 100644 index 0000000..eec771d Binary files /dev/null and b/src/usr/share/lubuntu/wallpapers/2510-quokka-alt.png differ diff --git a/src/usr/share/lubuntu/wallpapers/2510-quokka.png b/src/usr/share/lubuntu/wallpapers/2510-quokka.png new file mode 100644 index 0000000..5c30595 Binary files /dev/null and b/src/usr/share/lubuntu/wallpapers/2510-quokka.png differ diff --git a/src/usr/share/lubuntu/wallpapers/2510-sddm-quokka.png b/src/usr/share/lubuntu/wallpapers/2510-sddm-quokka.png new file mode 100644 index 0000000..1ce4f80 Binary files /dev/null and b/src/usr/share/lubuntu/wallpapers/2510-sddm-quokka.png differ diff --git a/src/usr/share/lubuntu/wallpapers/lubuntu-default-wallpaper.png b/src/usr/share/lubuntu/wallpapers/lubuntu-default-wallpaper.png index 74f2eeb..8b9a951 120000 --- a/src/usr/share/lubuntu/wallpapers/lubuntu-default-wallpaper.png +++ b/src/usr/share/lubuntu/wallpapers/lubuntu-default-wallpaper.png @@ -1 +1 @@ -2504-puffin.png \ No newline at end of file +2510-quokka.png \ No newline at end of file diff --git a/src/usr/share/sddm/themes/lubuntu/Main.qml b/src/usr/share/sddm/themes/lubuntu/Main.qml index a8aa697..fa57b5a 100644 --- a/src/usr/share/sddm/themes/lubuntu/Main.qml +++ b/src/usr/share/sddm/themes/lubuntu/Main.qml @@ -35,9 +35,22 @@ Rectangle { TextConstants { id: textConstants } + Timer { + id: loginFailedResetTimer + interval: 2000 + repeat: false + running: false + triggeredOnStart: false + + onTriggered: { + txtMessage.text = textConstants.promptSelectUser + } + } + Background { anchors.fill: parent - source: Qt.resolvedUrl(config.background) + source: Qt.resolvedUrl(config.background) + fillMode: Image.PreserveAspectCrop onStatusChanged: { var defaultBackground = Qt.resolvedUrl(config.defaultBackground) if (status == Image.Error && source != defaultBackground) { @@ -53,7 +66,8 @@ Rectangle { onLoginFailed: { txtMessage.text = textConstants.loginFailed - listView.currentItem.password.text = "" + listView.currentItem.password = "" + loginFailedResetTimer.restart() } } @@ -104,8 +118,9 @@ Rectangle { Text { id: txtMessage anchors.top: usersContainer.bottom - anchors.margins: 20 - anchors.horizontalCenter: parent.horizontalCenter + anchors.topMargin: 0 + anchors.leftMargin: 55 + anchors.left: usersContainer.left color: "white" text: textConstants.promptSelectUser font.pixelSize: 16 @@ -185,7 +200,7 @@ Rectangle { anchors.verticalCenter: parent.verticalCenter text: textConstants.session font.pixelSize: 14 - color: "white" + color: "black" verticalAlignment: Text.AlignVCenter } @@ -207,7 +222,7 @@ Rectangle { anchors.verticalCenter: parent.verticalCenter text: textConstants.layout font.pixelSize: 14 - color: "white" + color: "black" verticalAlignment: Text.AlignVCenter } @@ -230,7 +245,7 @@ Rectangle { Clock { id: clock - color: "white" + color: "black" anchors.verticalCenter: parent.verticalCenter timeFont.family: "Ubuntu" timeFont.bold: true diff --git a/src/usr/share/sddm/themes/lubuntu/wall.png b/src/usr/share/sddm/themes/lubuntu/wall.png index 4f2262a..0a133f0 120000 --- a/src/usr/share/sddm/themes/lubuntu/wall.png +++ b/src/usr/share/sddm/themes/lubuntu/wall.png @@ -1 +1 @@ -../../../lubuntu/wallpapers/2504-sddm-ocean.png \ No newline at end of file +../../../lubuntu/wallpapers/2510-sddm-quokka.png \ No newline at end of file