This commit is contained in:
Fabien POLLY
2026-01-24 02:10:52 +01:00
parent 3f27da4a1e
commit 9a93e4c63c

View File

@@ -18,28 +18,28 @@ const CONFIG = {
// GitHub Repository (for version checking when type is "github") // GitHub Repository (for version checking when type is "github")
// Format: "username/repo" // Format: "username/repo"
repo: "infinition/Bjorn", repo: "infinition/AcidWiki",
branch: "wiki", branch: "main",
// Theme Settings // Theme Settings
themes: [ themes: [
{ id: "dark", name: "Dark Mode", file: "themes/dark.css", isDark: true }, { id: "dark", name: "Dark Mode", file: "wiki/themes/dark.css", isDark: true },
{ id: "dim", name: "Dim Mode", file: "themes/light.css", isDark: true }, { id: "dim", name: "Dim Mode", file: "wiki/themes/light.css", isDark: true },
{ id: "electric-blue", name: "Electric Blue", file: "themes/electric-blue.css", isDark: true }, { id: "electric-blue", name: "Electric Blue", file: "wiki/themes/electric-blue.css", isDark: true },
{ id: "cyberpunk", name: "Cyberpunk", file: "themes/cyberpunk.css", isDark: true }, { id: "cyberpunk", name: "Cyberpunk", file: "wiki/themes/cyberpunk.css", isDark: true },
{ id: "forest", name: "Forest", file: "themes/forest.css", isDark: true }, { id: "forest", name: "Forest", file: "wiki/themes/forest.css", isDark: true },
{ id: "monochrome", name: "Monochrome", file: "themes/monochrome.css", isDark: true }, { id: "monochrome", name: "Monochrome", file: "wiki/themes/monochrome.css", isDark: true },
{ id: "retro-hackers", name: "Retro Hackers", file: "themes/retro-hackers.css", isDark: true }, { id: "retro-hackers", name: "Retro Hackers", file: "wiki/themes/retro-hackers.css", isDark: true },
{ id: "retro-hackers-w", name: "Retro Hackers White", file: "themes/retro-hackers-w.css", isDark: false }, { id: "retro-hackers-w", name: "Retro Hackers White", file: "wiki/themes/retro-hackers-w.css", isDark: false },
{ id: "retro-acid-burn", name: "Retro Acid Burn", file: "themes/retro-acid-burn.css", isDark: true }, { id: "retro-acid-burn", name: "Retro Acid Burn", file: "wiki/themes/retro-acid-burn.css", isDark: true },
{ id: "paper", name: "Paper", file: "themes/paper.css", isDark: false }, { id: "paper", name: "Paper", file: "wiki/themes/paper.css", isDark: false },
{ id: "solarized-light", name: "Solarized Light", file: "themes/solarized-light.css", isDark: false }, { id: "solarized-light", name: "Solarized Light", file: "wiki/themes/solarized-light.css", isDark: false },
{ id: "nord-light", name: "Nord Light", file: "themes/nord-light.css", isDark: false }, { id: "nord-light", name: "Nord Light", file: "wiki/themes/nord-light.css", isDark: false },
{ id: "paper-sepia", name: "Sepia Paper", file: "themes/paper-sepia.css", isDark: false }, { id: "paper-sepia", name: "Sepia Paper", file: "wiki/themes/paper-sepia.css", isDark: false },
{ id: "paper-cool", name: "Cool Paper", file: "themes/paper-cool.css", isDark: false }, { id: "paper-cool", name: "Cool Paper", file: "wiki/themes/paper-cool.css", isDark: false },
{ id: "retro-irc", name: "Retro IRC", file: "themes/retro-irc.css", isDark: false }, { id: "retro-irc", name: "Retro IRC", file: "wiki/themes/retro-irc.css", isDark: false },
{ id: "nature", name: "Nature", file: "themes/nature.css", isDark: false }, { id: "nature", name: "Nature", file: "wiki/themes/nature.css", isDark: false },
{ id: "glassmorphism", name: "Glassmorphism", file: "themes/glassmorphism.css", isDark: true } { id: "glassmorphism", name: "Glassmorphism", file: "wiki/themes/glassmorphism.css", isDark: true }
], ],
defaultTheme: "dark", defaultTheme: "dark",
@@ -51,7 +51,9 @@ const CONFIG = {
showThemeToggle: true, showThemeToggle: true,
pageTransitions: true, pageTransitions: true,
autoCollapseSidebar: false, autoCollapseSidebar: false,
stickyBreadcrumbs: true stickyBreadcrumbs: true,
showRootReadme: true,
debug: true
}, },
// Custom Navigation Links // Custom Navigation Links
@@ -74,6 +76,7 @@ const CONFIG = {
joinUsTitle: ":: JOIN US ::", joinUsTitle: ":: JOIN US ::",
onThisPageTitle: "On this page", onThisPageTitle: "On this page",
changelogTitle: "Changelog", changelogTitle: "Changelog",
rootReadmeTitle: "Project Home",
searchPlaceholder: "Search (Ctrl+K)...", searchPlaceholder: "Search (Ctrl+K)...",
lastUpdatedText: "Updated", lastUpdatedText: "Updated",
readingTimePrefix: "~", readingTimePrefix: "~",
@@ -89,13 +92,13 @@ const CONFIG = {
}, },
// Logo Settings // Logo Settings
logoPath: "assets/bjorn.png", logoPath: "wiki/assets/logo.png",
logoPlaceholder: "https://placehold.co/40x40/111214/22c55e?text=A", logoPlaceholder: "https://placehold.co/40x40/111214/22c55e?text=A",
// PWA & SEO Settings // PWA & SEO Settings
themeColor: "#0B0C0E", themeColor: "#0B0C0E",
accentColor: "#22c55e", accentColor: "#22c55e",
manifestPath: "manifest.json", manifestPath: "wiki/manifest.json",
// Social Links // Social Links
// Set to null or empty string to hide the link // Set to null or empty string to hide the link