We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f14fe0 + 5d3e742 commit 8243df7Copy full SHA for 8243df7
1 file changed
doc/conf.py
@@ -26,6 +26,13 @@ def _sync_user_docs() -> None:
26
if src.is_file():
27
shutil.copy2(src, DOCS_DIR / name)
28
29
+ res_dst = DOCS_DIR / "res"
30
+ res_dst.mkdir(exist_ok=True)
31
+
32
+ splash_src = PROJECT_ROOT / "res" / "AI-gen-splashscreen_05_01_2026_512.png"
33
+ if splash_src.is_file():
34
+ shutil.copy2(splash_src, res_dst / splash_src.name)
35
36
icons_src = PROJECT_ROOT / "res" / "icons"
37
res_dst = DOCS_DIR / "res"
38
icons_dst = res_dst / "icons"
0 commit comments