Slideshow update for Lunar
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
calamares-settings-ubuntu (1:23.04.6) lunar; urgency=medium
|
||||||
|
|
||||||
|
* Updated the installer slideshow.
|
||||||
|
|
||||||
|
-- Aaron Rainbolt <arraybolt3@ubuntu.com> Mon, 13 Mar 2023 19:40:55 -0500
|
||||||
|
|
||||||
calamares-settings-ubuntu (1:23.04.5) lunar; urgency=medium
|
calamares-settings-ubuntu (1:23.04.5) lunar; urgency=medium
|
||||||
|
|
||||||
* Ensure the langpacks for GNOME and KDE applications are installed too.
|
* Ensure the langpacks for GNOME and KDE applications are installed too.
|
||||||
|
Before Width: | Height: | Size: 262 KiB |
Before Width: | Height: | Size: 281 KiB |
Before Width: | Height: | Size: 247 KiB |
Before Width: | Height: | Size: 245 KiB |
Before Width: | Height: | Size: 408 KiB |
Before Width: | Height: | Size: 326 KiB |
Before Width: | Height: | Size: 222 KiB |
Before Width: | Height: | Size: 239 KiB |
BIN
lubuntu/branding/lubuntu/apps.png
Normal file
After Width: | Height: | Size: 128 KiB |
BIN
lubuntu/branding/lubuntu/desktop.png
Normal file
After Width: | Height: | Size: 262 KiB |
BIN
lubuntu/branding/lubuntu/enjoy.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
lubuntu/branding/lubuntu/lightweight.png
Normal file
After Width: | Height: | Size: 118 KiB |
@ -6,22 +6,34 @@ Presentation
|
|||||||
id: presentation
|
id: presentation
|
||||||
|
|
||||||
Timer {
|
Timer {
|
||||||
interval: 10000
|
interval: 15000
|
||||||
running: true
|
running: true
|
||||||
repeat: true
|
repeat: true
|
||||||
onTriggered: presentation.goToNextSlide()
|
onTriggered: {
|
||||||
|
presentation.goToNextSlide()
|
||||||
|
// We want the last slide to be where the slideshow stops. But
|
||||||
|
// thanks either to QML's limitations or my lack of knowledge, I
|
||||||
|
// can't figure out how to declare a counter variable outside of
|
||||||
|
// the Javascript block. However, incrementing the interval value
|
||||||
|
// won't make any perceptible change in how long the slideshow
|
||||||
|
// plays, and it does the job.
|
||||||
|
interval++
|
||||||
|
if (interval == 15005) {
|
||||||
|
stop()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Slide {
|
Slide {
|
||||||
Image {
|
Image {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
id: image1
|
id: image1
|
||||||
x:0
|
x: 0
|
||||||
y:0
|
y: 0
|
||||||
width: 810
|
width: 810
|
||||||
height: 485
|
height: 485
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
smooth: true
|
smooth: true
|
||||||
source: "FindUs.png"
|
source: "lightweight.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Slide {
|
Slide {
|
||||||
@ -34,7 +46,7 @@ Presentation
|
|||||||
height: 485
|
height: 485
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
smooth: true
|
smooth: true
|
||||||
source: "NewLook.png"
|
source: "apps.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Slide {
|
Slide {
|
||||||
@ -47,7 +59,7 @@ Presentation
|
|||||||
height: 485
|
height: 485
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
smooth: true
|
smooth: true
|
||||||
source: "Accessories.png"
|
source: "store.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Slide {
|
Slide {
|
||||||
@ -60,7 +72,7 @@ Presentation
|
|||||||
height: 485
|
height: 485
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
smooth: true
|
smooth: true
|
||||||
source: "TweakIt.png"
|
source: "desktop.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Slide {
|
Slide {
|
||||||
@ -73,7 +85,7 @@ Presentation
|
|||||||
height: 485
|
height: 485
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
smooth: true
|
smooth: true
|
||||||
source: "Media.png"
|
source: "support.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Slide {
|
Slide {
|
||||||
@ -86,34 +98,8 @@ Presentation
|
|||||||
height: 485
|
height: 485
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
smooth: true
|
smooth: true
|
||||||
source: "Firefox.png"
|
source: "enjoy.png"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Slide {
|
|
||||||
Image {
|
|
||||||
anchors.centerIn: parent
|
|
||||||
id: image7
|
|
||||||
x: 0
|
|
||||||
y: 0
|
|
||||||
width: 810
|
|
||||||
height: 485
|
|
||||||
fillMode: Image.PreserveAspectFit
|
|
||||||
smooth: true
|
|
||||||
source: "Office.png"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Slide {
|
|
||||||
Image {
|
|
||||||
anchors.centerIn: parent
|
|
||||||
id: image8
|
|
||||||
x: 0
|
|
||||||
y: 0
|
|
||||||
width: 810
|
|
||||||
height: 485
|
|
||||||
fillMode: Image.PreserveAspectFit
|
|
||||||
smooth: true
|
|
||||||
source: "Help.png"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
BIN
lubuntu/branding/lubuntu/store.png
Normal file
After Width: | Height: | Size: 98 KiB |
BIN
lubuntu/branding/lubuntu/support.png
Normal file
After Width: | Height: | Size: 146 KiB |
Before Width: | Height: | Size: 220 KiB After Width: | Height: | Size: 26 KiB |