File tree Expand file tree Collapse file tree 4 files changed +16
-10
lines changed Expand file tree Collapse file tree 4 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 4.0.1] - 2021-11-20
8+ ### Changes
9+ - Fix compiler warning
710
811## [ 4.0.0] - 2021-11-04
912### Changes
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.11)
22set (CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR} /cmake" )
33project (raylib-cpp
4- VERSION 4.0.0
4+ VERSION 4.0.1
55 DESCRIPTION "raylib-cpp C++ Object Oriented Wrapper for raylib"
66 HOMEPAGE_URL "https://github.com/robloach/raylib-cpp"
77 LANGUAGES C CXX)
Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ class AudioDevice {
5252
5353 /* *
5454 * Set master volume (listener).
55+ *
56+ * @param volume The desired volume to set.
5557 */
5658 inline AudioDevice& SetVolume (float volume) {
5759 ::SetMasterVolume (volume);
Original file line number Diff line number Diff line change 11{
22 "name" : " raylib-cpp" ,
3- "version" : " 4.0.0 " ,
3+ "version" : " 4.0.1 " ,
44 "description" : " raylib-cpp: C++ Object-Oriented Wrapper for raylib" ,
55 "homepage" : " https://github.com/robloach/raylib-cpp" ,
66 "bugs" : {
2121 ],
2222 "license" : " Zlib" ,
2323 "scripts" : {
24- "test" : " git submodule update --init && mkdir -p build && cd build && cmake .. && make && make test"
24+ "pretest" : " git submodule update --init" ,
25+ "test" : " mkdir build && cd build && cmake .. && make && make test"
2526 },
2627 "src" : [
2728 " include/AudioDevice.hpp" ,
3031 " include/Camera2D.hpp" ,
3132 " include/Camera3D.hpp" ,
3233 " include/Color.hpp" ,
33- " include/Functions.hpp" ,
3434 " include/Font.hpp" ,
35+ " include/Functions.hpp" ,
3536 " include/Gamepad.hpp" ,
3637 " include/Image.hpp" ,
3738 " include/Material.hpp" ,
3839 " include/Matrix.hpp" ,
3940 " include/Mesh.hpp" ,
40- " include/ModelAnimation.hpp" ,
4141 " include/Model.hpp" ,
42+ " include/ModelAnimation.hpp" ,
4243 " include/Mouse.hpp" ,
4344 " include/Music.hpp" ,
4445 " include/physac.hpp" ,
4546 " include/Physics.hpp" ,
46- " include/RayHitInfo.hpp" ,
4747 " include/Ray.hpp" ,
48- " include/raymath.hpp" ,
49- " include/raylib.hpp" ,
50- " include/raylib-cpp.hpp" ,
48+ " include/RayCollision.hpp" ,
5149 " include/raylib-cpp-utils.hpp" ,
50+ " include/raylib-cpp.hpp" ,
51+ " include/raylib.hpp" ,
52+ " include/raymath.hpp" ,
5253 " include/Rectangle.hpp" ,
53- " include/RenderTexture2D .hpp" ,
54+ " include/RenderTexture .hpp" ,
5455 " include/Shader.hpp" ,
5556 " include/Sound.hpp" ,
5657 " include/Text.hpp" ,
You can’t perform that action at this time.
0 commit comments