From 740d253bc5e3aa6c9bae3b4e08edbde0a59c6a6d Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 8 Nov 2018 10:53:24 +0100 Subject: [PATCH] Review version numbering After some thinking and considering that library is still being reviewed and current version suppose a complete redesign comparing to previous versions, we considered that NEW version deserves a major number change instead of minor. So, next raygui will be 2.0. --- examples/controls_test_suite/controls_test_suite.c | 4 ++-- examples/image_exporter/image_exporter.c | 4 ++-- examples/image_raw_importer/image_raw_importer.c | 4 ++-- examples/standalone_window/standalone_window.c | 4 ++-- src/raygui.h | 8 ++++---- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/examples/controls_test_suite/controls_test_suite.c b/examples/controls_test_suite/controls_test_suite.c index 538d033..f5c9867 100644 --- a/examples/controls_test_suite/controls_test_suite.c +++ b/examples/controls_test_suite/controls_test_suite.c @@ -11,8 +11,8 @@ * - GuiListView() * * DEPENDENCIES: -* raylib 2.1-dev - Windowing/input management and drawing. -* raygui 2.1-dev - Immediate-mode GUI controls. +* raylib 2.1 - Windowing/input management and drawing. +* raygui 2.0 - Immediate-mode GUI controls. * * COMPILATION (Windows - MinGW): * gcc -o $(NAME_PART).exe $(FILE_NAME) -I../../src -lraylib -lopengl32 -lgdi32 -std=c99 diff --git a/examples/image_exporter/image_exporter.c b/examples/image_exporter/image_exporter.c index 9d4e820..7a5816a 100644 --- a/examples/image_exporter/image_exporter.c +++ b/examples/image_exporter/image_exporter.c @@ -3,8 +3,8 @@ * raygui - image exporter * * DEPENDENCIES: -* raylib 2.1-dev - Windowing/input management and drawing. -* raygui 2.1-dev - Immediate-mode GUI controls. +* raylib 2.1 - Windowing/input management and drawing. +* raygui 2.0 - Immediate-mode GUI controls. * * COMPILATION (Windows - MinGW): * gcc -o $(NAME_PART).exe $(FILE_NAME) -I../../src -lraylib -lopengl32 -lgdi32 -std=c99 diff --git a/examples/image_raw_importer/image_raw_importer.c b/examples/image_raw_importer/image_raw_importer.c index 4b0dad7..0528744 100644 --- a/examples/image_raw_importer/image_raw_importer.c +++ b/examples/image_raw_importer/image_raw_importer.c @@ -3,8 +3,8 @@ * raygui - image raw importer * * DEPENDENCIES: -* raylib 2.1-dev - Windowing/input management and drawing. -* raygui 2.1-dev - Immediate-mode GUI controls. +* raylib 2.1 - Windowing/input management and drawing. +* raygui 2.0 - Immediate-mode GUI controls. * * COMPILATION (Windows - MinGW): * gcc -o $(NAME_PART).exe $(FILE_NAME) -I../../src -lraylib -lopengl32 -lgdi32 -std=c99 diff --git a/examples/standalone_window/standalone_window.c b/examples/standalone_window/standalone_window.c index 2ca3943..78d54f0 100644 --- a/examples/standalone_window/standalone_window.c +++ b/examples/standalone_window/standalone_window.c @@ -3,8 +3,8 @@ * raygui - standalone window * * DEPENDENCIES: -* raylib 2.1-dev - Windowing/input management and drawing. -* raygui 2.1-dev - Immediate-mode GUI controls. +* raylib 2.1 - Windowing/input management and drawing. +* raygui 2.0 - Immediate-mode GUI controls. * * COMPILATION (Windows - MinGW): * gcc -o $(NAME_PART).exe $(FILE_NAME) -I../../src -lraylib -lopengl32 -lgdi32 -std=c99 diff --git a/src/raygui.h b/src/raygui.h index c5441ec..0a9e1fa 100644 --- a/src/raygui.h +++ b/src/raygui.h @@ -1,6 +1,6 @@ /******************************************************************************************* * -* raygui v2.1-dev - A simple and easy-to-use immedite-mode-gui library +* raygui v2.0-dev - A simple and easy-to-use immedite-mode-gui library * * DESCRIPTION: * @@ -61,8 +61,8 @@ * * * VERSIONS HISTORY: -* 2.1 (xx-Nov-2018) Complete review of new controls and improvements on usage -WIP- -* 2.0 (01-May-2018) Lot of rework and redesign! Lots of new controls! +* 2.0 (xx-Nov-2018) Complete review of new controls and improvements on usage -WIP- +* 1.9 (01-May-2018) Lot of rework and redesign! Lots of new controls! * 1.5 (21-Jun-2017) Working in an improved styles system * 1.4 (15-Jun-2017) Rewritten all GUI functions (removed useless ones) * 1.3 (12-Jun-2017) Redesigned styles system @@ -106,7 +106,7 @@ #ifndef RAYGUI_H #define RAYGUI_H -#define RAYGUI_VERSION "2.1-dev" +#define RAYGUI_VERSION "2.0-dev" #if !defined(RAYGUI_STANDALONE) #include "raylib.h"