Slideshow update for Lunar

ubuntu/lunar
Aaron Rainbolt 1 year ago
parent 1600aa1924
commit 2c4429ba8f

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
* Ensure the langpacks for GNOME and KDE applications are installed too.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 262 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 281 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 245 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 408 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 326 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

@ -6,22 +6,34 @@ Presentation
id: presentation
Timer {
interval: 10000
interval: 15000
running: 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 {
Image {
anchors.centerIn: parent
id: image1
x:0
y:0
x: 0
y: 0
width: 810
height: 485
fillMode: Image.PreserveAspectFit
smooth: true
source: "FindUs.png"
source: "lightweight.png"
}
}
Slide {
@ -34,7 +46,7 @@ Presentation
height: 485
fillMode: Image.PreserveAspectFit
smooth: true
source: "NewLook.png"
source: "apps.png"
}
}
Slide {
@ -47,7 +59,7 @@ Presentation
height: 485
fillMode: Image.PreserveAspectFit
smooth: true
source: "Accessories.png"
source: "store.png"
}
}
Slide {
@ -60,7 +72,7 @@ Presentation
height: 485
fillMode: Image.PreserveAspectFit
smooth: true
source: "TweakIt.png"
source: "desktop.png"
}
}
Slide {
@ -73,7 +85,7 @@ Presentation
height: 485
fillMode: Image.PreserveAspectFit
smooth: true
source: "Media.png"
source: "support.png"
}
}
Slide {
@ -86,34 +98,8 @@ Presentation
height: 485
fillMode: Image.PreserveAspectFit
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"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 220 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Loading…
Cancel
Save