- Small always-on-top drop target window (toggle in Settings > Allgemein) - Files dropped on it get added to the queue with hoster modal - Auto-shows on app start if previously enabled - Column headers now in English (Filename, Uploaded/Size, Progress) - Statusbar labels in English (Connections, Total) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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)
|
|
});
|