diff --git a/CHANGELOG.md b/CHANGELOG.md index a28d3bc..004745a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,16 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. ## [Unreleased] + +------------------------ + +## [0.5.1] - 2024-10-02 +### Removed +- hovering a property will no longer scroll to its offset in `MEMORY` view. + ### Changed - improve performance with well implemented `onUpdate` / `onDraw` callbacks. +- cap GUI rendering to 30 fps. ------------------------ @@ -92,7 +100,8 @@ The format is based on [Keep a Changelog], and this project adheres to [RedHotTools]: https://github.com/psiberx/cp2077-red-hot-tools -[Unreleased]: https://github.com/rayshader/cp2077-red-memorydump/compare/v0.5.0...HEAD +[Unreleased]: https://github.com/rayshader/cp2077-red-memorydump/compare/v0.5.1...HEAD +[0.5.1]: https://github.com/rayshader/cp2077-red-memorydump/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/rayshader/cp2077-red-memorydump/compare/v0.4.1...v0.5.0 [0.4.1]: https://github.com/rayshader/cp2077-red-memorydump/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/rayshader/cp2077-red-memorydump/compare/v0.3.0...v0.4.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 46fe636..c4b2b7b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.27) -project(RedMemoryDump VERSION 0.5.0) +project(RedMemoryDump VERSION 0.5.1) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED YES) diff --git a/red.config.json b/red.config.json index 8971ab8..1585127 100644 --- a/red.config.json +++ b/red.config.json @@ -1,6 +1,6 @@ { "name": "RedMemoryDump", - "version": "0.5.0", + "version": "0.5.1", "licence": true, "game": "game\\", "stage": "stage\\",