File tree Expand file tree Collapse file tree 7 files changed +112
-422
lines changed
etc/calamares/branding/nxos Expand file tree Collapse file tree 7 files changed +112
-422
lines changed Original file line number Diff line number Diff line change 1+ calamares-qml-settings-nitrux (2.1.3) nitrux; urgency=medium
2+
3+ * Port the rest of the modules to Qt6.
4+ * Remove some QML files that I think are unused.
5+
6+ -- Uri Herrera <uri_herrera@nxos.org> Sun, 28 Sep 2025 03:51:00 -0500
7+
18calamares-qml-settings-nitrux (2.1.2) nitrux; urgency=medium
29
310 * Fix usersq and ItemSection.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- import QtQuick 2.13
2- import QtQuick.Controls 2.13
3- import QtQuick.Layouts 1.3
4- import org.kde.kirigami 2.7 as Kirigami
1+ import QtQuick
2+ import QtQuick.Controls
3+ import QtQuick.Layouts
54
65Item
76{
1514
1615 default property alias content : _content .data
1716
18- implicitHeight: _content .implicitHeight
17+ implicitHeight: _content .implicitHeight
1918
20- ColumnLayout
21- {
22- id: _content
23- anchors .fill : parent
19+ ColumnLayout
20+ {
21+ id: _content
22+ anchors .fill : parent
2423
25- spacing: Kirigami . Units . largeSpacing
24+ spacing: 16
2625
27- ListView
26+ ListView
27+ {
28+ id: _listView
29+ Layout .minimumHeight : 0
30+ Layout .preferredHeight : contentHeight > 0 ? contentHeight : 200
31+ Layout .maximumHeight : 500
32+ Layout .fillWidth : true
33+ Layout .fillHeight : true
34+ Layout .alignment : Qt .AlignCenter
35+ spacing: 8
36+ clip: true
37+ boundsBehavior: Flickable .StopAtBounds
38+
39+ background: Rectangle
2840 {
29- id: _listView
30- Layout .minimumHeight : 0
31- Layout .preferredHeight : contentHeight
32- Layout .maximumHeight : 500
33- Layout .fillWidth : true
34- Layout .fillHeight : true
35- Layout .alignment : Qt .AlignCenter
36- spacing: Kirigami .Units .smallSpacing
37- clip: true
38- boundsBehavior: Flickable .StopAtBounds
39-
40- Rectangle
41- {
42- z: control .z - 1
43- anchors .fill : parent
44- color: Qt .lighter (Kirigami .Theme .backgroundColor )
45- radius: 5
46- opacity: 0.5
47- }
48-
41+ color: Qt .lighter (" #231F20" , 1.1 )
42+ radius: 5
43+ opacity: 0.5
4944 }
5045 }
51-
46+ }
5247}
53-
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments