release: restore v2.1.19 baseline for v2.1.24
CI / verify (push) Has been cancelled

Restore the v2.1.19 application baseline and retain only the focused import preflight summary with duplicate, unavailable, destination, job, and size-limit visibility.
This commit is contained in:
Sucukdeluxe
2026-08-17 04:25:22 +02:00
parent 9a213a7395
commit d7c9f287e4
87 changed files with 2185 additions and 16125 deletions
+4 -12
View File
@@ -79,20 +79,12 @@
e.preventDefault();
e.stopPropagation();
target.classList.remove('drag-over');
const files = [];
const paths = [];
for (const file of e.dataTransfer.files) {
let filePath = '';
try { filePath = window.dropTargetApi.getPathForFile(file); } catch {}
if (!filePath) continue;
files.push({
path: filePath,
name: file.name || '',
size: Number.isFinite(file.size) ? file.size : 0,
isDirectory: file.type === '' && file.size === 0
});
if (file.path) paths.push(file.path);
}
if (files.length > 0) {
window.dropTargetApi.sendFiles(files);
if (paths.length > 0) {
window.dropTargetApi.sendFiles(paths);
}
});
</script>