Skip to content

Commit

Permalink
Release Candidate 3 (#11)
Browse files Browse the repository at this point in the history
Release Candidate 3
  • Loading branch information
unwieldycat authored Nov 20, 2023
2 parents 6e873c6 + a8ab4d8 commit ad87572
Show file tree
Hide file tree
Showing 43 changed files with 3,422 additions and 355 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build and Deploy Docs

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Install Doxygen
run: sudo sh -c 'echo deb http://cz.archive.ubuntu.com/ubuntu focal main universe >> /etc/apt/sources.list' && sudo apt-get update && sudo apt-get install -y -t focal doxygen
- name: Checkout
uses: actions/checkout@v2.0.0
- name: Checkout Doxygen Awesome
uses: Mushus/checkout-submodule@v1.0.1
with:
submodulePath: ./docs/doxygen-awesome-css
- name: Generate Documentation
run: ./build-docs.sh
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.4.3
with:
branch: gh-pages # The branch the action should deploy to.
folder: ./docs-output # The folder the action should deploy.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ temp.errors
.d/

**/.DS_Store

docs-output/
**/__pycache__/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "docs/doxygen-awesome-css"]
path = docs/doxygen-awesome-css
url = https://github.com/jothepro/doxygen-awesome-css.git
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"endOfLine": "lf",
"printWidth": 80,
"useTabs": true,
"proseWrap": "always"
}
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# robodash

Robodash is a flexible, unified robot dashboard for the VEX V5 brain. It is
built to improve compatibility with templates that provide LVGL-powered GUIs, as
well as provide useful tools that take advantage of the V5 brain's LCD display.

[Documentation](https://unwieldycat.github.io/robodash-docs/) ·
[License](./LICENCE)
Robodash is a flexible GUI toolkit for the VEX V5 brain. It is built to provide
useful tools that take full advantage of the V5 brain's LCD display, as well as
provide a foundation to improve compatibility with templates that provide
LVGL-powered GUIs.
1 change: 1 addition & 0 deletions build-docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
doxygen ./docs/Doxyfile
15 changes: 0 additions & 15 deletions build.sh

This file was deleted.

Loading

0 comments on commit ad87572

Please sign in to comment.