Skip to content

Commit

Permalink
REVIEWED: raylib 5.0-dev version for a future release
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed Oct 17, 2023
1 parent 53cd60b commit fc61526
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/Makefile.Web
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions src/raylib.dll.rc
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand Down
Binary file modified src/raylib.dll.rc.data
Binary file not shown.
6 changes: 3 additions & 3 deletions src/raylib.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions src/raylib.rc
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand Down
Binary file modified src/raylib.rc.data
Binary file not shown.

0 comments on commit fc61526

Please sign in to comment.