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.
This commit is contained in:
Ray
2018-11-08 10:53:24 +01:00
parent d19474ea1e
commit 740d253bc5
5 changed files with 12 additions and 12 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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"