mirror of
https://github.com/mleem97/gregWiki.git
synced 2026-04-10 19:19:18 +02:00
- Updated the tagline in `docusaurus.config.js` for improved clarity. - Streamlined sidebar navigation items for better organization of player and developer resources. - Enhanced README and various documentation files to clarify repository layout and improve accessibility. - Standardized language to English across documentation, ensuring consistency and clarity. - Removed unnecessary German localization references to focus on English content. This commit aims to enhance the overall clarity and usability of the documentation.
192 lines
5.9 KiB
JavaScript
192 lines
5.9 KiB
JavaScript
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
docs: [
|
|
'intro',
|
|
{
|
|
type: 'category',
|
|
label: 'Play & mods',
|
|
collapsed: false,
|
|
items: [
|
|
'guides/players/overview',
|
|
'guides/players/enduser-workshop',
|
|
'reference/release-channels',
|
|
],
|
|
},
|
|
'tools/workshop-uploader',
|
|
{
|
|
type: 'category',
|
|
label: 'Developers & contributors',
|
|
collapsed: true,
|
|
link: {type: 'doc', id: 'developers'},
|
|
items: [
|
|
'developers',
|
|
'meta/system-architecture-principles',
|
|
'getting-started',
|
|
'getting-started/documentation-layout',
|
|
'workspace/index',
|
|
{
|
|
type: 'category',
|
|
label: 'Framework',
|
|
items: ['framework/architecture', 'framework/fmf-hooks', 'framework/hexmod'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Plugins (FFM)',
|
|
items: [
|
|
'plugins/index',
|
|
'plugins/ffm-plugin-asset-exporter',
|
|
'plugins/ffm-plugin-multiplayer',
|
|
'plugins/ffm-plugin-player-models',
|
|
'plugins/ffm-plugin-sysadmin',
|
|
'plugins/ffm-plugin-web-ui-bridge',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Mods (FMF)',
|
|
link: {type: 'doc', id: 'mods/index'},
|
|
items: [
|
|
'mods/index',
|
|
'mods/framework',
|
|
'mods/fmf-console-input-guard',
|
|
'mods/fmf-gregify-employees',
|
|
'mods/fmf-hex-label-mod',
|
|
'mods/fmf-lang-compat-bridge',
|
|
'mods/fmf-ui-replacement-mod',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Tools & operations',
|
|
items: ['meta/Steam-Workshop-and-Tooling', 'meta/devserver-betas', 'meta/IDEA_BACKLOG'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Guides',
|
|
items: [
|
|
{
|
|
type: 'category',
|
|
label: 'Players (extra)',
|
|
items: [
|
|
'guides/players/audiences-overview',
|
|
'guides/players/newbies',
|
|
'guides/players/intermediates',
|
|
'guides/players/professionals',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Mod developers',
|
|
items: ['guides/mod-developers/overview'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Contributors',
|
|
items: [
|
|
'guides/contributors/topics-overview',
|
|
'guides/contributors/contributor-workshop',
|
|
'guides/contributors/release',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Sponsors',
|
|
items: ['guides/sponsors/overview'],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Releases',
|
|
link: {type: 'doc', id: 'releases/index'},
|
|
items: [
|
|
{
|
|
type: 'category',
|
|
label: 'Plugin releases',
|
|
items: [
|
|
'releases/plugins/ffm-plugin-asset-exporter-release',
|
|
'releases/plugins/ffm-plugin-multiplayer-release',
|
|
'releases/plugins/ffm-plugin-player-models-release',
|
|
'releases/plugins/ffm-plugin-sysadmin-release',
|
|
'releases/plugins/ffm-plugin-web-ui-bridge-release',
|
|
'releases/plugins/fmf-modpathredirector-release',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Tool releases',
|
|
items: ['releases/tools/gregtools-modmanager-1.0-release'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Mod releases',
|
|
items: [
|
|
'releases/mods/fmf-console-input-guard-release',
|
|
'releases/mods/fmf-gregify-employees-release',
|
|
'releases/mods/fmf-hex-label-mod-release',
|
|
'releases/mods/fmf-lang-compat-bridge-release',
|
|
'releases/mods/fmf-ui-replacement-mod-release',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Reference',
|
|
items: [
|
|
'reference/wiki-mapping',
|
|
'reference/mod-store-vision',
|
|
'reference/fmf-hook-naming',
|
|
'reference/fmf-hooks-catalog',
|
|
'reference/mcp-server',
|
|
'reference/reference-data-files',
|
|
'reference/modding-language-requirement',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Contributors (workflow)',
|
|
items: [
|
|
'contributors/repo-inventory',
|
|
'contributors/monorepo-target-layout',
|
|
'contributors/luminescent-design-system',
|
|
'contributors/docusaurus-workflow',
|
|
'contributors/plugin-submission-audit',
|
|
'contributors/sponsorship-automation',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Roadmap',
|
|
items: ['roadmap/unified-roadmap', 'roadmap/mod-store-stages'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Topics hub',
|
|
link: {type: 'doc', id: 'topics/index'},
|
|
items: [
|
|
'topics/index',
|
|
{
|
|
type: 'category',
|
|
label: 'Cross-cutting topics',
|
|
items: [
|
|
'topics/assets-and-export/overview',
|
|
'topics/multiplayer-and-networking/overview',
|
|
'topics/ffi-and-hooks/overview',
|
|
'topics/security-legal/overview',
|
|
'topics/reference/overview',
|
|
'topics/roadmap/overview',
|
|
'topics/meta/overview',
|
|
'topics/meta/game-folder-layout',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
'SPONSORS',
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|