REVIEWED: `raylib 5.0-dev` version for a future release

This commit is contained in:
Ray 2023-10-18 00:33:05 +02:00
parent 53cd60bb29
commit fc6152613f
8 changed files with 15 additions and 15 deletions

View File

@ -30,7 +30,7 @@ PLATFORM ?= PLATFORM_DESKTOP
# Define required raylib variables
PROJECT_NAME ?= raylib_examples
RAYLIB_VERSION ?= 4.5.0
RAYLIB_VERSION ?= 5.0.0
RAYLIB_PATH ?= ..
# Locations of raylib.h and libraylib.a/libraylib.so

View File

@ -30,7 +30,7 @@ PLATFORM ?= PLATFORM_WEB
# Define required raylib variables
PROJECT_NAME ?= raylib_examples
RAYLIB_VERSION ?= 4.5.0
RAYLIB_VERSION ?= 5.0.0
RAYLIB_PATH ?= ..
# Locations of raylib.h and libraylib.a/libraylib.so

View File

@ -44,8 +44,8 @@
PLATFORM ?= PLATFORM_DESKTOP
# Define required raylib variables
RAYLIB_VERSION = 4.5.0
RAYLIB_API_VERSION = 450
RAYLIB_VERSION = 5.0.0
RAYLIB_API_VERSION = 500
# Define raylib source code path
RAYLIB_SRC_PATH ?= ../src

View File

@ -1,8 +1,8 @@
GLFW_ICON ICON "raylib.ico"
1 VERSIONINFO
FILEVERSION 4,5,0,0
PRODUCTVERSION 4,5,0,0
FILEVERSION 5,0,0,0
PRODUCTVERSION 5,0,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
@ -11,12 +11,12 @@ BEGIN
BEGIN
//VALUE "CompanyName", "raylib technologies"
VALUE "FileDescription", "raylib dynamic library (www.raylib.com)"
VALUE "FileVersion", "4.5.0"
VALUE "FileVersion", "5.0.0"
VALUE "InternalName", "raylib.dll"
VALUE "LegalCopyright", "(c) 2023 Ramon Santamaria (@raysan5)"
VALUE "OriginalFilename", "raylib.dll"
VALUE "ProductName", "raylib"
VALUE "ProductVersion", "4.5.0"
VALUE "ProductVersion", "5.0.0"
END
END
BLOCK "VarFileInfo"

Binary file not shown.

View File

@ -81,10 +81,10 @@
#include <stdarg.h> // Required for: va_list - Only used by TraceLogCallback
#define RAYLIB_VERSION_MAJOR 4
#define RAYLIB_VERSION_MINOR 6
#define RAYLIB_VERSION_MAJOR 5
#define RAYLIB_VERSION_MINOR 0
#define RAYLIB_VERSION_PATCH 0
#define RAYLIB_VERSION "4.6-dev"
#define RAYLIB_VERSION "5.0-dev"
// Function specifiers in case library is build/used as a shared library (Windows)
// NOTE: Microsoft specifiers to tell compiler that symbols are imported/exported from a .dll

View File

@ -1,8 +1,8 @@
GLFW_ICON ICON "raylib.ico"
1 VERSIONINFO
FILEVERSION 4,5,0,0
PRODUCTVERSION 4,5,0,0
FILEVERSION 5,0,0,0
PRODUCTVERSION 5,0,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
@ -11,12 +11,12 @@ BEGIN
BEGIN
//VALUE "CompanyName", "raylib technologies"
VALUE "FileDescription", "raylib application (www.raylib.com)"
VALUE "FileVersion", "4.5.0"
VALUE "FileVersion", "5.0.0"
VALUE "InternalName", "raylib app"
VALUE "LegalCopyright", "(c) 2023 Ramon Santamaria (@raysan5)"
//VALUE "OriginalFilename", "raylib_app.exe"
VALUE "ProductName", "raylib app"
VALUE "ProductVersion", "4.5.0"
VALUE "ProductVersion", "5.0.0"
END
END
BLOCK "VarFileInfo"

Binary file not shown.