kitowall 6.1.0 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/live.js +3 -3
- package/package.json +1 -1
package/dist/core/live.js
CHANGED
|
@@ -1866,9 +1866,6 @@ async function liveApply(opts) {
|
|
|
1866
1866
|
let coexistEntered = false;
|
|
1867
1867
|
try {
|
|
1868
1868
|
await (0, exec_1.run)(bin, setVideoArgs, { timeoutMs: 120000 });
|
|
1869
|
-
// Live mode owns wallpaper state: stop only Kitowall static wallpaper services.
|
|
1870
|
-
await (0, workshop_1.workshopCoexistenceEnter)();
|
|
1871
|
-
coexistEntered = true;
|
|
1872
1869
|
// Keep live authority persistent across session restarts.
|
|
1873
1870
|
if (integratedRendercoreMode()) {
|
|
1874
1871
|
integratedRendercoreStart(bin);
|
|
@@ -1888,6 +1885,9 @@ async function liveApply(opts) {
|
|
|
1888
1885
|
await runSystemctlUser(['start', 'kitsune-rendercore.service']);
|
|
1889
1886
|
await waitForRendercoreServiceActive();
|
|
1890
1887
|
}
|
|
1888
|
+
// Switch wallpaper authority only after rendercore is confirmed active.
|
|
1889
|
+
await (0, workshop_1.workshopCoexistenceEnter)();
|
|
1890
|
+
coexistEntered = true;
|
|
1891
1891
|
withLiveLock(() => {
|
|
1892
1892
|
const current = readIndex();
|
|
1893
1893
|
const updatedItems = current.items.map(v => (v.id === item.id ? { ...v, last_applied_at: nowUnix() } : v));
|