fix version handling

This commit is contained in:
Nystik
2026-03-12 22:46:53 +01:00
parent 1e2971cea0
commit 168024ea4f
7 changed files with 34 additions and 4 deletions

View File

@@ -25,6 +25,17 @@ export const remoteShim = {
screen: screenShim,
nativeImage: nativeImageShim,
Notification: notificationShim,
safeStorage: {
isEncryptionAvailable() {
return false;
},
encryptString(plainText) {
return Buffer.from(plainText);
},
decryptString(encrypted) {
return encrypted.toString();
},
},
getCurrentWindow() {
return windowShim._current();