Skip to content

Commit 80fdf31

Browse files
committed
docs: update changelog and configuration documentation for version 0.6.0
1 parent 78b8ae2 commit 80fdf31

File tree

3 files changed

+291
-42
lines changed

3 files changed

+291
-42
lines changed

changelog.mdx

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,25 @@ description: All notable changes to Lito
88
All notable changes to this project will be documented on this page.
99

1010
<Changelog>
11-
<ChangelogEntry version="0.5.0" date="2026-01-04" type="major" badge="Latest">
11+
<ChangelogEntry version="0.6.0" date="2026-01-05" type="major" badge="Latest">
12+
<ChangelogItem type="added">
13+
Strict configuration system with Core Config and Extensions separation
14+
</ChangelogItem>
15+
<ChangelogItem type="added">
16+
Template manifest system (template.json) for declaring template capabilities
17+
</ChangelogItem>
18+
<ChangelogItem type="added">
19+
Configuration validation for core schema at build time
20+
</ChangelogItem>
21+
<ChangelogItem type="changed">
22+
Templates now silently ignore unsupported extensions (no warnings/errors)
23+
</ChangelogItem>
24+
<ChangelogItem type="changed">
25+
Swap templates without changing your docs-config.json
26+
</ChangelogItem>
27+
</ChangelogEntry>
28+
29+
<ChangelogEntry version="0.5.0" date="2026-01-04" type="major">
1230
<ChangelogItem type="changed">
1331
Organization migration to official Lito-docs GitHub organization
1432
</ChangelogItem>

docs-config.json

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
"metadata": {
33
"name": "Lito docs",
44
"description": "A comprehensive demo of Lito - the open-source Mintlify alternative",
5-
"version": "0.4.0"
5+
"version": "0.6.0"
66
},
77
"branding": {
88
"favicon": "/fire-favicon.svg",
99
"logo": {
10-
"src": "/logo.svg",
10+
"light": "/logo.svg",
11+
"dark": "/logo.svg",
1112
"href": "/"
1213
},
1314
"colors": {
@@ -287,5 +288,47 @@
287288
"icon": "🚀"
288289
}
289290
]
291+
},
292+
"footer": {
293+
"layout": "full",
294+
"tagline": "Beautiful documentation sites from Markdown. Fast, simple, and open-source.",
295+
"copyright": "© {year} Lito. All rights reserved.",
296+
"showBranding": true,
297+
"showVersion": true,
298+
"socials": {
299+
"github": "https://github.com/Lito-docs",
300+
"twitter": "https://twitter.com/litodocs",
301+
"discord": "https://discord.gg/litodocs"
302+
},
303+
"links": [
304+
{
305+
"title": "Product",
306+
"items": [
307+
{ "label": "Documentation", "href": "/introduction" },
308+
{ "label": "Components", "href": "/reference/components" },
309+
{ "label": "Changelog", "href": "/changelog" }
310+
]
311+
},
312+
{
313+
"title": "Resources",
314+
"items": [
315+
{ "label": "Getting Started", "href": "/getting-started/installation" },
316+
{ "label": "CLI Reference", "href": "/reference/cli-commands" },
317+
{ "label": "Configuration", "href": "/reference/configuration" }
318+
]
319+
},
320+
{
321+
"title": "Community",
322+
"items": [
323+
{ "label": "GitHub", "href": "https://github.com/Lito-docs", "external": true },
324+
{ "label": "Discord", "href": "https://discord.gg/litodocs", "external": true },
325+
{ "label": "Twitter", "href": "https://twitter.com/litodocs", "external": true }
326+
]
327+
}
328+
],
329+
"bottomLinks": [
330+
{ "label": "Privacy Policy", "href": "/privacy" },
331+
{ "label": "Terms of Service", "href": "/terms" }
332+
]
290333
}
291334
}

0 commit comments

Comments
 (0)