diff --git a/tools/rGuiStyler/release/win32/rguistyler.exe b/tools/rGuiStyler/release/win32/rguistyler.exe index 8c3a997..4666b3f 100644 Binary files a/tools/rGuiStyler/release/win32/rguistyler.exe and b/tools/rGuiStyler/release/win32/rguistyler.exe differ diff --git a/tools/rGuiStyler/rguistyler.c b/tools/rGuiStyler/rguistyler.c index ee6bd71..550e083 100644 --- a/tools/rGuiStyler/rguistyler.c +++ b/tools/rGuiStyler/rguistyler.c @@ -7,13 +7,14 @@ * -lraylib -lglfw3 -lopengl32 -lgdi32 -lcomdlg32 -lole32 -std=c99 -Wall * * CONTRIBUTORS: -* Adria Arranz - 2018 (v2.0) -* Jordi Jorba - 2018 (v2.0) -* Sergio Martinez - 2015..2017 (v1.0) +* Ramon Santamaria: Supervision, review, redesign, update and maintenance... +* Adria Arranz: Reimplementation and new features v2.0 (2018) +* Jordi Jorba: Reimplementation and new features v2.0 (2018) +* Sergio Martinez: Implementation and testing v1.0 (2015..2017) * * LICENSE: zlib/libpng * -* Copyright (c) 2014-2016 Ramon Santamaria and Co. +* Copyright (c) 2014-2018 raylib technologies (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. @@ -512,7 +513,13 @@ int main(int argc, char *argv[]) // Draw status bar bottom //GuiStatusBar((Rectangle){ anchor01.x + 334, anchor01.y + 616, 386, 24 }, FormatText("EDITION TIME: %02i:%02i:%02i", (framesCounter/60)/(60*60), ((framesCounter/60)/60)%60, (framesCounter/60)%60), 10); - GuiStatusBar((Rectangle){ anchor01.x + 0, anchor01.y + 616, 150, 24 }, FormatText("BASE STYLE: %s", RAYGUI_STYLE_DEFAULT_LIGHT ? "DARK" : "LIGHT"), 10); + #if defined(RAYGUI_STYLE_DEFAULT_LIGHT) + GuiStatusBar((Rectangle){ anchor01.x + 0, anchor01.y + 616, 150, 24 }, "BASE STYLE: LIGHT", 10); + #elif defined(RAYGUI_STYLE_DEFAULT_DARK) + GuiStatusBar((Rectangle){ anchor01.x + 0, anchor01.y + 616, 150, 24 }, "BASE STYLE: DARK", 10); + #else + GuiStatusBar((Rectangle){ anchor01.x + 0, anchor01.y + 616, 150, 24 }, "BASE STYLE: UNKNOWN", 10); + #endif GuiStatusBar((Rectangle){ anchor01.x + 149, anchor01.y + 616, 186, 24 }, FormatText("CHANGED PROPERTIES: %03i", changedControlsCounter), 10); GuiStatusBar((Rectangle){ anchor01.x + 334, anchor01.y + 616, 386, 24 }, "powered by raylib and raygui", 226); diff --git a/tools/rGuiStyler/rguistyler.rc b/tools/rGuiStyler/rguistyler.rc index 858b588..3cff590 100644 --- a/tools/rGuiStyler/rguistyler.rc +++ b/tools/rGuiStyler/rguistyler.rc @@ -13,7 +13,7 @@ BEGIN VALUE "FileDescription", "rGuiStyler - raygui styles editor" VALUE "FileVersion", "2.0" VALUE "InternalName", "rguistyler" - VALUE "LegalCopyright", "(c) 2018 @raysan5 @JordiKoro @Adri102502" + VALUE "LegalCopyright", "(c) 2018 raylib technologies" //VALUE "OriginalFilename", "raylib_app.exe" VALUE "ProductName", "rGuiStyler" VALUE "ProductVersion", "2.0" diff --git a/tools/rGuiStyler/rguistyler_icon b/tools/rGuiStyler/rguistyler_icon index 1d014cf..f89d670 100644 Binary files a/tools/rGuiStyler/rguistyler_icon and b/tools/rGuiStyler/rguistyler_icon differ