a
All checks were successful
/ upload (release) Successful in 22s

This commit is contained in:
pavel 2026-02-25 01:00:07 +01:00
commit 0273eab753
8 changed files with 127 additions and 8 deletions

5
desktop/preload.js Normal file
View file

@ -0,0 +1,5 @@
const { contextBridge, ipcRenderer } = require('electron');
contextBridge.exposeInMainWorld('electronAPI', {
copyToClipboard: (text) => ipcRenderer.invoke('clipboard-write', text)
});