diff --git a/README.md b/README.md index 5cd5137..12313af 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ Current features include: * Timed callbacks * Lightmaps * Graphical occlusion +* Lazy map loading * Rudimentary database for saving data between plays * Simple widgets with TTF font support * Powerful entity and widget description in JSON with Jinja2 diff --git a/docsrc/000_User's_Manual.md b/docsrc/000_User's_Manual.md index 9548506..764a9ee 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.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. +This is the User's Manual for Driftwood 2D **version Alpha-0.0.10**. 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/config.json b/docsrc/config.json index c04cd44..50224e6 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.9": "https://github.com/seisatsu/Driftwood/releases/tag/Alpha-0.0.9", + "Download Alpha-0.0.10": "https://github.com/seisatsu/Driftwood/releases/tag/Alpha-0.0.10", "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 5d4bd50..719066c 100644 --- a/docsrc/index.md +++ b/docsrc/index.md @@ -1,4 +1,4 @@ -# Driftwood 2D - Alpha-0.0.9 +# Driftwood 2D - Alpha-0.0.10 * Copyright (c) 2014 PariahSoft LLC (Abandoned) * Copyright (c) 2016-2017 Michael D. Reiley and Paul Merrill @@ -21,6 +21,7 @@ The engine loads a world package made of images, sounds, maps, descriptive files * Timed callbacks * Lightmaps * Graphical occlusion +* Lazy map loading * Rudimentary database for saving data between plays * Simple widgets with TTF font support * Powerful entity and widget description in JSON with Jinja2 diff --git a/src/configmanager.py b/src/configmanager.py index abf2d6e..611c55b 100644 --- a/src/configmanager.py +++ b/src/configmanager.py @@ -36,7 +36,7 @@ from typing import Any, ItemsView -VERSION = "Driftwood 2D Alpha-0.0.9" +VERSION = "Driftwood 2D Alpha-0.0.10" COPYRIGHT = "Copyright 2016-2017 Michael D. Reiley and Paul Merrill"