v4.3 ui: 3D wooden bookshelf redesign, fix player cover aspect ratio, and smooth subtitle scroll

This commit is contained in:
Ashim Kumar
2026-07-03 18:43:07 +06:00
parent cf93085e22
commit 14d18fbad4
14 changed files with 1174 additions and 193 deletions

View File

@@ -92,6 +92,9 @@ async function handlePdfFile(file) {
document.getElementById('projectName').value = projectName;
currentProject.name = projectName;
// v4.4: auto-generated thumbnail token সংরক্ষণ
pendingThumbnailToken = data.pending_thumbnail || null;
renderDocumentBlocks(data.blocks);
document.getElementById('uploadSection').style.display = 'none';
@@ -145,6 +148,9 @@ async function handleWordFile(file) {
document.getElementById('projectName').value = projectName;
currentProject.name = projectName;
// v4.4: auto-generated thumbnail token সংরক্ষণ
pendingThumbnailToken = data.pending_thumbnail || null;
renderDocumentBlocks(data.blocks);
document.getElementById('uploadSection').style.display = 'none';