diff --git a/README.md b/README.md index a655f2d74..2cce3448c 100644 --- a/README.md +++ b/README.md @@ -33,5 +33,6 @@ git pull git checkout -b v.. yarn docusaurus docs:version .. git add versioned_docs/* +git add versioned_sidebars/* git commit -a -m 'Docs v..' ``` \ No newline at end of file diff --git a/versioned_sidebars/version-0.8.0-sidebars.json b/versioned_sidebars/version-0.8.0-sidebars.json new file mode 100644 index 000000000..b29ff5613 --- /dev/null +++ b/versioned_sidebars/version-0.8.0-sidebars.json @@ -0,0 +1,232 @@ +{ + "handbookSidebar": [ + { + "type": "doc", + "id": "introduction" + }, + { + "type": "doc", + "id": "installation" + }, + { + "type": "doc", + "id": "tutorial-videos" + }, + { + "type": "category", + "label": "Writing Reactors", + "collapsible": true, + "collapsed": true, + "items": [ + { + "type": "doc", + "id": "writing-reactors/a-first-reactor" + }, + { + "type": "doc", + "id": "writing-reactors/inputs-and-outputs" + }, + { + "type": "doc", + "id": "writing-reactors/parameters-and-state-variables" + }, + { + "type": "doc", + "id": "writing-reactors/time-and-timers" + }, + { + "type": "doc", + "id": "writing-reactors/composing-reactors" + }, + { + "type": "doc", + "id": "writing-reactors/reactions" + }, + { + "type": "doc", + "id": "writing-reactors/reaction-declarations" + }, + { + "type": "doc", + "id": "writing-reactors/methods" + }, + { + "type": "doc", + "id": "writing-reactors/causality-loops" + }, + { + "type": "doc", + "id": "writing-reactors/extending-reactors" + }, + { + "type": "doc", + "id": "writing-reactors/actions" + }, + { + "type": "doc", + "id": "writing-reactors/superdense-time" + }, + { + "type": "doc", + "id": "writing-reactors/modal-models" + }, + { + "type": "doc", + "id": "writing-reactors/deadlines" + }, + { + "type": "doc", + "id": "writing-reactors/multiports-and-banks" + }, + { + "type": "doc", + "id": "writing-reactors/generics" + }, + { + "type": "doc", + "id": "writing-reactors/preambles" + }, + { + "type": "doc", + "id": "writing-reactors/distributed-execution" + }, + { + "type": "doc", + "id": "writing-reactors/termination" + } + ] + }, + { + "type": "category", + "label": "Tools", + "collapsible": true, + "collapsed": true, + "items": [ + { + "type": "doc", + "id": "tools/code-extension" + }, + { + "type": "doc", + "id": "tools/epoch-ide" + }, + { + "type": "doc", + "id": "tools/command-line-tools" + }, + { + "type": "doc", + "id": "tools/documentation" + }, + { + "type": "doc", + "id": "tools/troubleshooting" + } + ] + }, + { + "type": "category", + "label": "Reference", + "collapsible": true, + "collapsed": true, + "items": [ + { + "type": "doc", + "id": "reference/docker-support" + }, + { + "type": "doc", + "id": "reference/expressions" + }, + { + "type": "doc", + "id": "reference/target-language-details" + }, + { + "type": "doc", + "id": "reference/target-declaration" + }, + { + "type": "doc", + "id": "reference/tracing" + }, + { + "type": "doc", + "id": "reference/security" + } + ] + }, + { + "type": "category", + "label": "Embedded Platforms", + "collapsible": true, + "collapsed": true, + "items": [ + { + "type": "doc", + "id": "embedded/arduino" + }, + { + "type": "doc", + "id": "embedded/zephyr" + }, + { + "type": "doc", + "id": "embedded/rp2040" + }, + { + "type": "doc", + "id": "embedded/nRF52" + }, + { + "type": "doc", + "id": "embedded/flexpret" + } + ] + }, + { + "type": "category", + "label": "Developer", + "collapsible": true, + "collapsed": true, + "items": [ + { + "type": "doc", + "id": "developer/contributing" + }, + { + "type": "doc", + "id": "developer/developer-eclipse-setup-with-oomph" + }, + { + "type": "doc", + "id": "developer/developer-intellij-setup" + }, + { + "type": "doc", + "id": "developer/downloading-and-building" + }, + { + "type": "doc", + "id": "developer/debugging-generated-code" + }, + { + "type": "doc", + "id": "developer/on-target-development" + }, + { + "type": "doc", + "id": "developer/regression-tests" + }, + { + "type": "doc", + "id": "developer/running-benchmarks" + }, + { + "type": "doc", + "id": "developer/website-development" + } + ] + } + ] +}