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

Change tabs to be more accurate to current state of PROS #380

Merged
merged 14 commits into from
Jul 19, 2024
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
inputs:
versionSpec: '3'

- name: Install Requirements
run: python3 -m pip install --upgrade pip && pip3 install -r requirements.txt

- task: PipAuthenticate@0
inputs:
artifactFeeds: 'pros-cli'
Expand Down
6 changes: 3 additions & 3 deletions home/_templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@
<li>
<a class="white-bar" href="./v5/index.html">DOCS</a>
<ul>
<li><a href="./v5/index.html">DOCS FOR V5</a></li>
<li><a href="./v5/pros-4/index.html">DOCS FOR PROS 4 (V5)</a></li>
<li><a href="./cortex/index.html">DOCS FOR CORTEX</a></li>
<li><a href="./v5/pros-4/index.html">PROS 4 [V5] (Current)</a></li>
<li><a href="./v5/index.html">PROS 3 [V5]</a></li>
<li><a href="./cortex/index.html">PROS 2 [Cortex]</a></li>
</ul>
</li>
<li><a class="white-bar" href="./v5/blog/index.html">BLOG</a></li>
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
docutils<0.18
Sphinx==1.8.5
sphinx==1.8.5
alabaster==0.7.13
sphinx_tabs==1.1.10
ablog==0.9.4
Expand Down
8 changes: 4 additions & 4 deletions scripts/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

echo Building project
make clean all
rm -r ./build/v5/pros-4
mkdir ./build/v5/pros-4
cp -r pros-doxygen-docs/* ./build/v5/pros-4/
make all
mkdir -p ./build/v5/pros-4
rm -rf ./build/v5/pros-4/*
cp -r pros-doxygen-docs/* ./build/v5/pros-4/
Loading