Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dfranx committed Jul 9, 2021
1 parent d1a6321 commit 6944cff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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++
Expand Down
2 changes: 1 addition & 1 deletion src/SHADERed/Objects/WebAPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion src/SHADERed/Objects/WebAPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6944cff

Please sign in to comment.