Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.8.0 #273

Merged
merged 2 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ git pull
git checkout -b v<major>.<minor>.<patch>
yarn docusaurus docs:version <major>.<minor>.<patch>
git add versioned_docs/*
git add versioned_sidebars/*
git commit -a -m 'Docs v<major>.<minor>.<patch>'
```
232 changes: 232 additions & 0 deletions versioned_sidebars/version-0.8.0-sidebars.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}
]
}
Loading