diff --git a/CMakeLists.txt b/CMakeLists.txt index 1185e3ce79c3e0405acca0b4d222136c77f2c412..738c95f24fda41c0def66ea531abd3f776dde249 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ project(liblava VERSION 0.4.4 LANGUAGES C CXX) message("") message("========================================================================") -message(" copyright (c) 2018-present, Lava Block OÜ MIT licensed ") +message(" Copyright (c) 2018-present, Lava Block OÜ MIT licensed ") message("========================================================================") message(" ") message(" _| _| _| _| ") @@ -18,7 +18,7 @@ message(" _| _| _| _| _| _| _| _| _| _| _| message(" _| _| _|_|_| _| _|_|_| _| _|_|_| ") message(" ") message("========================================================================") -message(" 2019 preview 4 v0.4.4 ") +message(" 2019 v0.4.4 ") message("========================================================================") message(" https://git.io/liblava lava-block.com ") message("========================================================================") diff --git a/README.md b/README.md index 6d9a3620bbf4b4aa21d11a950afe755dff5ec0e0..accdb8d1234f88c11dca3cb6f8ebf383358dff75 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ [](https://github.com/liblava/liblava/tree/master/liblava/core) [](https://github.com/liblava/liblava/tree/master/liblava/util) [](https://github.com/liblava/liblava/tree/master/liblava/base) [](https://github.com/liblava/liblava/tree/master/liblava/resource) [](https://github.com/liblava/liblava/tree/master/liblava/frame) [](https://github.com/liblava/liblava/tree/master/liblava/block) [](https://github.com/liblava/liblava/tree/master/liblava/app) [](https://git.io/liblava-engine) -##### Download latest **<a href="https://github.com/liblava/liblava-demo/releases">preview 3 demo / v0.4.3</a>** (Nov 6, 2019) +##### Download latest **<a href="https://github.com/liblava/liblava-demo/releases">2019 demo / v0.4.4</a>** (Dec 6, 2019) <a href="https://github.com/liblava/liblava-demo/releases"></a> diff --git a/ext/VulkanMemoryAllocator b/ext/VulkanMemoryAllocator index 851d5e5419360e9d8b4098d97ed27474c8074ae0..e9bfb539d853607172f9a1a272dacab60a86e529 160000 --- a/ext/VulkanMemoryAllocator +++ b/ext/VulkanMemoryAllocator @@ -1 +1 @@ -Subproject commit 851d5e5419360e9d8b4098d97ed27474c8074ae0 +Subproject commit e9bfb539d853607172f9a1a272dacab60a86e529 diff --git a/ext/imgui b/ext/imgui index bf6d1ba3d12772a487e6b7cb8af1d90fbe00fdb1..b521cd357d929d25409bea6656b311760847b43c 160000 --- a/ext/imgui +++ b/ext/imgui @@ -1 +1 @@ -Subproject commit bf6d1ba3d12772a487e6b7cb8af1d90fbe00fdb1 +Subproject commit b521cd357d929d25409bea6656b311760847b43c diff --git a/liblava/core/version.hpp b/liblava/core/version.hpp index 52a3d0e2b82deca8fed3c54055e4b2da70edc7d9..1e5370be4f23b5a86450033af9d4ecb098e6bbfc 100644 --- a/liblava/core/version.hpp +++ b/liblava/core/version.hpp @@ -30,8 +30,8 @@ struct version { i32 year = 2019; i32 release = 0; - version_stage stage = version_stage::preview; - i32 rev = 4; + version_stage stage = version_stage::release; + i32 rev = 0; }; constexpr version const _version = {}; diff --git a/liblava/util/log.hpp b/liblava/util/log.hpp index 7248adaa04896983a89568096dbe464e1cc173ae..48388ea4c86d4976a4a0f391449f778719785938 100644 --- a/liblava/util/log.hpp +++ b/liblava/util/log.hpp @@ -69,8 +69,8 @@ inline void setup_log(log_config config = {}) { spdlog::set_level((config.level < 0) ? spdlog::level::debug : (spdlog::level::level_enum)config.level); spdlog::stdout_color_mt(config.logger); - - } else { + } + else { spdlog::set_level((config.level < 0) ? spdlog::level::warn : (spdlog::level::level_enum)config.level); spdlog::basic_logger_mt(config.logger, config.file);