Add movement gallery wings with period interiors and expand timeline features.

Movement galleries split large catalogs into chronological wings (~55 works), use era-themed 3D interiors with side-wall windows, wing navigator on the back exit, and front archways between wings. Also adds painting annotations, timeline event guides, portrait hover highlights, and documentation/API updates.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Danila Khodjaef
2026-06-21 16:54:19 +03:00
co-authored by Cursor
parent 0972b5df99
commit df29848d89
121 changed files with 4765 additions and 396 deletions
+6
View File
@@ -1373,6 +1373,8 @@ async function searchGoogleCustomSearchImagesMany(query, limit = 20) {
imageUrl: item.link,
thumbUrl: item.image?.thumbnailLink || item.link,
source: 'google-custom-search',
width: item.image?.width,
height: item.image?.height,
});
if (out.length >= limit) break;
}
@@ -1448,6 +1450,8 @@ async function searchDuckDuckGoImagesMany(query, limit = 20) {
imageUrl,
thumbUrl: item?.thumbnail || item?.image,
source: 'duckduckgo-images',
width: item?.width,
height: item?.height,
});
if (out.length >= limit) break;
}
@@ -1636,6 +1640,8 @@ async function searchDebugImagesMany(query, limit = 20) {
imageUrl: url,
thumbUrl: item.thumbUrl || url,
source: item.source || 'image-search',
width: item.width,
height: item.height,
});
};