mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2025-12-06 06:36:15 +00:00
- All cards now live in Modules/Cards - CalendarPanel is now called ClockPanel - Added a way to ease settings migration in separate QML files
16 lines
337 B
QML
16 lines
337 B
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
// Map of version number to migration component
|
|
readonly property var migrations: ({
|
|
26: migration26Component
|
|
})
|
|
|
|
// Migration components
|
|
property Component migration26Component: Migration26 {}
|
|
}
|