- Update to version 3.2.62 * See changelog at https://github.com/calamares/calamares/blob/calamares/CHANGES-3.2 - Refresh patches - Remove obsolete rpmlintrc entries - Update obsolete field Supplements using packageand OBS-URL: https://build.opensuse.org/request/show/1090564 OBS-URL: https://build.opensuse.org/package/show/Education/calamares?expand=0&rev=70
52 lines
1.3 KiB
Diff
52 lines
1.3 KiB
Diff
Comment explanatory parts
|
|
|
|
diff -ur a/src/branding/default/show.qml b/src/branding/default/show.qml
|
|
--- a/src/branding/default/show.qml
|
|
+++ b/src/branding/default/show.qml
|
|
@@ -19,7 +19,7 @@ Presentation
|
|
console.log("QML Component (default slideshow) Next slide");
|
|
presentation.goToNextSlide();
|
|
}
|
|
-
|
|
+/* Uncomment to enable multiple slides
|
|
Timer {
|
|
id: advanceTimer
|
|
interval: 1000
|
|
@@ -27,7 +27,7 @@ Presentation
|
|
repeat: true
|
|
onTriggered: nextSlide()
|
|
}
|
|
-
|
|
+*/
|
|
Slide {
|
|
|
|
Image {
|
|
@@ -37,6 +37,7 @@ Presentation
|
|
fillMode: Image.PreserveAspectFit
|
|
anchors.centerIn: parent
|
|
}
|
|
+/* Uncomment to show some text
|
|
Text {
|
|
anchors.horizontalCenter: background.horizontalCenter
|
|
anchors.top: background.bottom
|
|
@@ -49,8 +50,9 @@ Presentation
|
|
width: presentation.width
|
|
horizontalAlignment: Text.Center
|
|
}
|
|
+*/
|
|
}
|
|
-
|
|
+/* Uncomment to enable multiple slides
|
|
Slide {
|
|
centeredText: qsTr("This is a second Slide element.")
|
|
}
|
|
@@ -58,7 +60,7 @@ Presentation
|
|
Slide {
|
|
centeredText: qsTr("This is a third Slide element.")
|
|
}
|
|
-
|
|
+*/
|
|
// When this slideshow is loaded as a V1 slideshow, only
|
|
// activatedInCalamares is set, which starts the timer (see above).
|
|
//
|