Update version number to 0.15.0

Move AllowAddresses out of Interface into Server in openspace.cfg to circumvent potential stack corruption
Make lua_state not being copied
This commit is contained in:
Alexander Bock
2019-09-17 18:38:40 +02:00
parent 9f88a7347b
commit af4dee8d01
4 changed files with 18 additions and 4 deletions

View File

@@ -36,6 +36,12 @@ namespace openspace::documentation { struct Documentation; }
namespace openspace::configuration {
struct Configuration {
Configuration() = default;
Configuration(Configuration&&) = default;
Configuration(const Configuration&) = delete;
Configuration& operator=(const Configuration&) = delete;
Configuration& operator=(Configuration&&) = default;
std::string windowConfiguration = "${CONFIG}/single.xml";
std::string asset;
std::vector<std::string> globalCustomizationScripts;