mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
26 lines
952 B
QML
26 lines
952 B
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
// Map of version number to migration component
|
|
readonly property var migrations: ({
|
|
27: migration27Component,
|
|
28: migration28Component,
|
|
29: migration29Component,
|
|
32: migration32Component,
|
|
33: migration33Component,
|
|
34: migration34Component
|
|
})
|
|
|
|
// Migration components
|
|
property Component migration27Component: Migration27 {}
|
|
property Component migration28Component: Migration28 {}
|
|
property Component migration29Component: Migration29 {}
|
|
property Component migration32Component: Migration32 {}
|
|
property Component migration33Component: Migration33 {}
|
|
property Component migration34Component: Migration34 {}
|
|
}
|