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

Entity state saving to binary file #22

Merged
merged 9 commits into from
Nov 4, 2021
Merged
Show file tree
Hide file tree
Changes from 7 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
@@ -0,0 +1 @@
# [Documentation](doc/build/latex/thesdk.pdf)
3 changes: 2 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ all: doc

doc:
cd $THISDIR/doc && \\
make html
make html latexpdf && \\
git add -f $THISDIR/doc/build/latex/$MODULE.pdf

clean:
cd ${THISDIR}/doc && \\
Expand Down
Binary file added doc/build/latex/thesdk.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@

project = 'thesdk'
copyright = '2019 TheSyDeKick Community'
author = 'Your name'
author = ''

# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '1.3'
release = '1.7_RC'

autoclass_content='both'

Expand Down Expand Up @@ -139,7 +139,7 @@
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'thesdk.tex', 'thesdk Documentation',
'Your Name', 'manual'),
author, 'manual'),
]


Expand Down
Loading