Redesign the desktop workspace with task sidebars, live filters, clearer settings, and an accessible update dialog. Harden encrypted backup imports, configuration persistence, history retention, queue snapshots, shutdown recovery, and update installation ordering. Publish verified Windows artifacts and refreshed English documentation.
6 lines
185 B
JavaScript
6 lines
185 B
JavaScript
const { contextBridge, ipcRenderer } = require('electron');
|
|
|
|
contextBridge.exposeInMainWorld('dropTargetApi', {
|
|
sendFiles: (paths) => ipcRenderer.send('drop-target:files', paths)
|
|
});
|