diff --git a/CREDITS.md b/CREDITS.md index fbd769a..eab829c 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -47,21 +47,26 @@ are attributed in the distributions of the below mentioned primary dependencies. * License: * URI: -### jsonschema +### Python jsonschema * Copyright 2013 Julian Berman * License: * URI: -### PySDL2 +### Python PySDL2 * Copyright 2012-2014 Marcus von Appen * License: * URI: -### py-ubjson +### Python ubjson * Copyright 2015-2017 Iotic Labs Ltd * License: * URI: +### Python Jinja2 +* Copyright 2009-2017 Jinja Team +* License: +* URI: + ## Sound Effects ### Blip_Select.oga diff --git a/README.md b/README.md index edeb400..d2ac059 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,10 @@ Current features include: * Configurable input handling * Timed callbacks * Lightmaps +* Graphical occlusion * Rudimentary database for saving data between plays * Simple widgets with TTF font support +* JSON widget building language supporting Jinja2 templating * Fully scriptable in Python 3 * Developer console accessible during runtime @@ -39,3 +41,4 @@ Current features include: * Python jsonschema * Python PySDL2 * Python ubjson +* Python Jinja2 \ No newline at end of file diff --git a/docsrc/000_User's_Manual.md b/docsrc/000_User's_Manual.md index ada3c55..9548506 100644 --- a/docsrc/000_User's_Manual.md +++ b/docsrc/000_User's_Manual.md @@ -1,4 +1,4 @@ -This is the User's Manual for Driftwood 2D **version Alpha-0.0.8**. Please make sure you are reading the manual for the correct version you are trying to use, as features will change rapidly during Alpha development stage. +This is the User's Manual for Driftwood 2D **version Alpha-0.0.9**. Please make sure you are reading the manual for the correct version you are trying to use, as features will change rapidly during Alpha development stage. You can read the manual by selecting a topic on the left or by clicking "Next". diff --git a/docsrc/01_Engine_Usage/01_Getting_Started.md b/docsrc/01_Engine_Usage/01_Getting_Started.md index fa4d77f..3129003 100644 --- a/docsrc/01_Engine_Usage/01_Getting_Started.md +++ b/docsrc/01_Engine_Usage/01_Getting_Started.md @@ -14,6 +14,8 @@ Before we start, you should make sure you have the following software installed. * [Python >= 3.5.0](https://www.python.org/) (Any version 3.5.0 or greater will work.) * [Python jsonschema](https://pypi.python.org/pypi/jsonschema) * [Python PySDL2](https://pypi.python.org/pypi/PySDL2/) +* [Python ubjson](https://pypi.python.org/pypi/py-ubjson) +* [Python Jinja2](http://jinja.pocoo.org/) ## Directory Structure diff --git a/docsrc/98_Credits.md b/docsrc/98_Credits.md index a273961..5f43ba1 100644 --- a/docsrc/98_Credits.md +++ b/docsrc/98_Credits.md @@ -45,16 +45,26 @@ are attributed in the distributions of the below mentioned primary dependencies. * License: * URI: -### jsonschema +### Python jsonschema * Copyright 2013 Julian Berman * License: * URI: -### PySDL2 +### Python PySDL2 * Copyright 2012-2014 Marcus von Appen * License: * URI: +### Python ubjson +* Copyright 2015-2017 Iotic Labs Ltd +* License: +* URI: + +### Python Jinja2 +* Copyright 2009-2017 Jinja Team +* License: +* URI: + ## Sound Effects diff --git a/docsrc/config.json b/docsrc/config.json index ad3bbf9..c04cd44 100644 --- a/docsrc/config.json +++ b/docsrc/config.json @@ -22,7 +22,7 @@ "edit_on_github": "seisatsu/Driftwood/blob/master/docs", "links": { "GitHub Repository": "https://github.com/seisatsu/Driftwood", - "Download Alpha-0.0.8": "https://github.com/seisatsu/Driftwood/releases/tag/Alpha-0.0.8", + "Download Alpha-0.0.9": "https://github.com/seisatsu/Driftwood/releases/tag/Alpha-0.0.9", "Help/Support/Bugs": "https://github.com/seisatsu/Driftwood/issues", "Made with DAUX.IO": "http://daux.io/" } diff --git a/docsrc/index.md b/docsrc/index.md index 2db3fd9..766f15b 100644 --- a/docsrc/index.md +++ b/docsrc/index.md @@ -1,4 +1,4 @@ -# Driftwood 2D - Alpha-0.0.8 +# Driftwood 2D - Alpha-0.0.9 * Copyright (c) 2014 PariahSoft LLC (Abandoned) * Copyright (c) 2016-2017 Michael D. Reiley and Paul Merrill @@ -35,4 +35,6 @@ The engine loads a world package made of images, sounds, maps, descriptive files * Python >= 3.5.0 * Python jsonschema (https://pypi.python.org/pypi/jsonschema) * Python PySDL2 (https://pypi.python.org/pypi/PySDL2/) +* Python ubjson (https://pypi.python.org/pypi/py-ubjson) +* Python Jinja2 (http://jinja.pocoo.org/) diff --git a/src/configmanager.py b/src/configmanager.py index 2c9694f..abf2d6e 100644 --- a/src/configmanager.py +++ b/src/configmanager.py @@ -36,7 +36,7 @@ from typing import Any, ItemsView -VERSION = "Driftwood 2D Alpha-0.0.8" +VERSION = "Driftwood 2D Alpha-0.0.9" COPYRIGHT = "Copyright 2016-2017 Michael D. Reiley and Paul Merrill"