Wiki update

This commit is contained in:
Fabien POLLY
2026-01-24 17:18:37 +01:00
parent e7168f6d1d
commit fc2a3f6972
31 changed files with 4135 additions and 279 deletions

110
wiki/config.js Normal file
View File

@@ -0,0 +1,110 @@
/**
* AcidWiki Configuration (Master Template)
* Ce fichier est écrasé dynamiquement par le workflow GitHub Actions.
* Ne modifiez pas les valeurs ici pour un projet spécifique, utilisez acidwiki.json.
*/
const CONFIG = {
// Project Information (Sera remplacé par le nom du Repo)
projectName: "ACIDWIKI",
projectSubtitle: "ACIDWIKI WIKI",
description: "Official Documentation and Wiki for AcidWiki",
// Versioning Settings
versioning: {
type: "local",
manualVersion: "",
manualDate: "2026-01-24"
},
// GitHub Repository
repo: "infinition/AcidWiki",
branch: "main",
// Theme Settings
themes: [
{ id: "dark", name: "Dark Mode", file: "wiki/themes/dark.css", isDark: true },
{ id: "dim", name: "Dim Mode", file: "wiki/themes/light.css", isDark: true },
{ id: "electric-blue", name: "Electric Blue", file: "wiki/themes/electric-blue.css", isDark: true },
{ id: "cyberpunk", name: "Cyberpunk", file: "wiki/themes/cyberpunk.css", isDark: true },
{ id: "forest", name: "Forest", file: "wiki/themes/forest.css", isDark: true },
{ id: "monochrome", name: "Monochrome", file: "wiki/themes/monochrome.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: "wiki/themes/retro-hackers-w.css", isDark: false },
{ id: "retro-acid-burn", name: "Retro Acid Burn", file: "wiki/themes/retro-acid-burn.css", isDark: true },
{ id: "paper", name: "Paper", file: "wiki/themes/paper.css", isDark: false },
{ id: "solarized-light", name: "Solarized Light", file: "wiki/themes/solarized-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: "wiki/themes/paper-sepia.css", isDark: false },
{ id: "paper-cool", name: "Cool Paper", file: "wiki/themes/paper-cool.css", isDark: false },
{ id: "retro-irc", name: "Retro IRC", file: "wiki/themes/retro-irc.css", isDark: false },
{ id: "nature", name: "Nature", file: "wiki/themes/nature.css", isDark: false },
{ id: "glassmorphism", name: "Glassmorphism", file: "wiki/themes/glassmorphism.css", isDark: true }
],
defaultTheme: "dark",
// Feature Toggles
features: {
showChangelog: true,
showSearch: true,
showSocialBadges: true,
showThemeToggle: true,
pageTransitions: true,
autoCollapseSidebar: false,
stickyBreadcrumbs: true,
showRootReadme: true,
debug: true
},
// Custom Navigation Links (Vides par défaut)
links: {
top: [],
bottom: []
},
// Footer
footerText: "© 2026 ACIDWIKI WIKI - All rights reserved",
// UI Strings
ui: {
joinUsTitle: ":: JOIN US ::",
onThisPageTitle: "On this page",
changelogTitle: "Changelog",
rootReadmeTitle: "Project Home",
searchPlaceholder: "Search (Ctrl+K)...",
lastUpdatedText: "Updated",
readingTimePrefix: "~",
readingTimeSuffix: "min read",
noResultsText: "No results found.",
noSectionsText: "No sections",
fetchingReleasesText: "Fetching GitHub releases...",
checkingVersionText: "checking...",
initializingText: "Initializing...",
themeChangedText: "Theme changed to: ",
menuText: "Menu",
onThisPageMobile: "On this page"
},
// Logo Settings
logoPath: "wiki/assets/logo.png",
logoPlaceholder: "https://placehold.co/40x40/111214/22c55e?text=A",
// PWA & SEO Settings
themeColor: "#0B0C0E",
accentColor: "#22c55e",
manifestPath: "manifest.json",
// Social Links
social: {
discord: null,
reddit: null,
github: "https://github.com/infinition/AcidWiki", // Virgule respectée par le script
buyMeACoffee: "https://buymeacoffee.com/infinition"
},
// Badge Labels
badges: {
discordLabel: "COMMUNITY",
redditLabel: "REDDIT",
githubLabel: "ACIDWIKI"
}
};