diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ec8296..148d81e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.2.1] - 2024-12-30 +### Changed +- Changed config format from JSON to INI. +- Added used libraries in the About window and updated hyperlinks code, since now ImGui supports it natively. +### Fixed +- Fixed some potential crash issues. ## [1.2.0] - 2023-07-23 ### Added diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index dffe378..c225a81 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -20,7 +20,7 @@ else() endif() if(MSVC) - set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "/ENTRY:mainCRTStartup /SUBSYSTEM:CONSOLE") + set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "/ENTRY:mainCRTStartup /SUBSYSTEM:WINDOWS") target_compile_options(${PROJECT_NAME} PRIVATE /W4 /wd4458 /wd4100) target_link_libraries(${PROJECT_NAME} ${GLFW_Lib} OpenGL::GL) else()