Compare commits
No commits in common. "ffc8fb40266e5ee1a4946cda6fd2dd6eae981acc" and "b5a853b8d462ad0cbc74bd3db315db42611c7904" have entirely different histories.
ffc8fb4026
...
b5a853b8d4
4
main.js
4
main.js
@ -1259,10 +1259,6 @@ ipcMain.handle('hide-drop-target', () => {
|
||||
|
||||
ipcMain.on('drop-target:files', (_event, paths) => {
|
||||
if (mainWindow && !mainWindow.isDestroyed()) {
|
||||
if (!mainWindow.isVisible() || mainWindow.isMinimized()) {
|
||||
mainWindow.show();
|
||||
mainWindow.focus();
|
||||
}
|
||||
mainWindow.webContents.send('drop-target:files', paths);
|
||||
}
|
||||
});
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "multi-hoster-uploader",
|
||||
"version": "2.3.0",
|
||||
"version": "2.2.9",
|
||||
"description": "Upload files to doodstream, voe, vidmoly, byse simultaneously",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
||||
@ -408,7 +408,6 @@ function restoreQueueStateFromConfig() {
|
||||
}
|
||||
}
|
||||
queueJobs = Array.from(seen.values());
|
||||
rebuildJobIndex();
|
||||
}
|
||||
|
||||
function buildPersistedQueueState() {
|
||||
@ -751,7 +750,7 @@ function buildRowHtml(job) {
|
||||
<td class="col-filename" title="${escapeAttr(job.fileName)}">${escapeHtml(job.fileName)}</td>
|
||||
<td class="col-size">${uploadedSize}</td>
|
||||
<td class="col-host">${escapeHtml(job.hoster)}</td>
|
||||
<td class="col-status"><span class="status-badge ${statusClass}">${escapeHtml(statusText)}</span></td>
|
||||
<td class="col-status"><span class="status-badge ${statusClass}">${statusText}</span></td>
|
||||
<td class="col-elapsed">${elapsed}</td>
|
||||
<td class="col-remaining">${remaining}</td>
|
||||
<td class="col-speed">${speed}</td>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user