Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
3400af21
Unverified
Commit
3400af21
authored
May 24, 2020
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
📝
add release page
parent
a8f0cd15
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1239 additions
and
5 deletions
+1239
-5
.gitignore
.gitignore
+1
-0
doc/mkdocs/Makefile
doc/mkdocs/Makefile
+12
-5
doc/mkdocs/docs/home/releases.md
doc/mkdocs/docs/home/releases.md
+1225
-0
doc/mkdocs/mkdocs.yml
doc/mkdocs/mkdocs.yml
+1
-0
No files found.
.gitignore
View file @
3400af21
...
...
@@ -30,3 +30,4 @@ test/test-*
doc/mkdocs/venv/
doc/mkdocs/docs/images
doc/mkdocs/docs/examples
doc/mkdocs/site
doc/mkdocs/Makefile
View file @
3400af21
# serve the site locally
serve
:
prepare_files
venv/bin/mkdocs serve
prepare_files
:
# create files that are not versioned inside the mkdocs folder
prepare_files
:
clean
# build Doxygen
$(MAKE)
-C
..
# clean subfolders
rm
-fr
docs/images docs/examples
# create subfolders
mkdir
docs/images docs/examples
# copy images
...
...
@@ -13,12 +13,19 @@ prepare_files:
# copy examples
cp
-vr
../examples/
*
.cpp ../examples/
*
.output docs/examples
# clean subfolders
clean
:
rm
-fr
docs/images docs/examples
# publish site to GitHub pages
publish
:
prepare_files
venv/bin/mkdocs gh-deploy
--clean
--force
install_venv
:
# install a Python virtual environment
install_venv
:
requirements.txt
python3
-mvenv
venv
venv/bin/pip
install
-r
requirements.txt
uninstall_venv
:
# uninstall the virtual environment
uninstall_venv
:
clean
rm
-fr
venv
doc/mkdocs/docs/home/releases.md
0 → 100644
View file @
3400af21
This source diff could not be displayed because it is too large. You can
view the blob
instead.
doc/mkdocs/mkdocs.yml
View file @
3400af21
...
...
@@ -32,6 +32,7 @@ nav:
-
"
Code
of
Conduct"
:
home/code_of_conduct.md
-
"
FAQ"
:
home/faq.md
-
home/exceptions.md
-
home/releases.md
-
home/design_goals.md
-
home/sponsors.md
-
Features
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment