mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
30 lines
842 B
QML
30 lines
842 B
QML
import QtQuick
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
function migrate(adapter, logger, rawJson) {
|
|
logger.i("Migration43", "Migrating recursiveSearch to viewMode");
|
|
|
|
const wallpaper = rawJson?.wallpaper;
|
|
if (!wallpaper) {
|
|
logger.d("Migration43", "No wallpaper section found, skipping migration");
|
|
return true;
|
|
}
|
|
|
|
// Check if already migrated (has viewMode)
|
|
if (wallpaper.viewMode !== undefined) {
|
|
logger.d("Migration43", "Already has viewMode, skipping migration");
|
|
return true;
|
|
}
|
|
|
|
// Migrate recursiveSearch to viewMode
|
|
const oldValue = wallpaper.recursiveSearch ?? false;
|
|
const newValue = oldValue ? "recursive" : "single";
|
|
adapter.wallpaper.viewMode = newValue;
|
|
logger.i("Migration43", "Migrated recursiveSearch=" + oldValue + " to viewMode=" + newValue);
|
|
|
|
return true;
|
|
}
|
|
}
|