From 6944cff2f1fc4d4ab72a4f741c2727713acfeb6d Mon Sep 17 00:00:00 2001 From: dfranx Date: Fri, 9 Jul 2021 19:35:03 +0200 Subject: [PATCH] Bump version --- CHANGELOG.txt | 1 + src/SHADERed/Objects/WebAPI.cpp | 2 +- src/SHADERed/Objects/WebAPI.h | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4f4133b5..e81a88e7 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -8,6 +8,7 @@ + fix a bug that would cause SHADERed to crash when trying to view texture properties + fix a bug that would cause compute shaders not to run when rendering a sequence to image files + fix a bug where 3D textures wouldn't be properly bound to a shader debugger ++ fix a bug where sometimes the debugger wouldn't work properly with if statements + fix loading volume .dds textures + fix autocomplete for geometry shaders + fix a bug that would cause shaders to be output in wrong directory when converting project into C++ diff --git a/src/SHADERed/Objects/WebAPI.cpp b/src/SHADERed/Objects/WebAPI.cpp index 649cb3af..f65562a5 100644 --- a/src/SHADERed/Objects/WebAPI.cpp +++ b/src/SHADERed/Objects/WebAPI.cpp @@ -21,7 +21,7 @@ namespace ed { const std::string WebAPI::URL = "http://api.shadered.org"; - const char* WebAPI::Version = "1.5.3"; + const char* WebAPI::Version = "1.5.4"; bool isDigitsOnly(const std::string& str) { diff --git a/src/SHADERed/Objects/WebAPI.h b/src/SHADERed/Objects/WebAPI.h index 22c0d677..d17a23e8 100644 --- a/src/SHADERed/Objects/WebAPI.h +++ b/src/SHADERed/Objects/WebAPI.h @@ -7,7 +7,7 @@ namespace ed { class WebAPI { public: static const std::string URL; - static const int InternalVersion = 24; + static const int InternalVersion = 25; static const char* Version; // info that /api/search will return