diff --git a/CMakeLists.txt b/CMakeLists.txt index fa5c837..66c09dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) -set(PROJECT_VERSION 1.1.0) +set(PROJECT_VERSION 1.2.0) set(PROJECT_DESCRIPTION "A command-line version of the Caravan card game from Fallout: New Vegas.") set(PROJECT_COPYRIGHT "Copyright (c) 2022-2024 r3w0p") set(PROJECT_URL "https://github.com/r3w0p/caravan") diff --git a/README b/README index b79fd72..9d8edb2 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ | (_| (_| | | | (_| |\ \/ / (_| | | | | \___\__,_|_| \__,_| \__/ \__,_|_| |_| -| v1.1.0 | GPL-3.0 | (c) 2022-2024 r3w0p | +| v1.2.0 | GPL-3.0 | (c) 2022-2024 r3w0p | A command-line version of the Caravan card game from Fallout: New Vegas. diff --git a/src/caravan/view/view_tui.cpp b/src/caravan/view/view_tui.cpp index 6ec0b4f..baf48c0 100644 --- a/src/caravan/view/view_tui.cpp +++ b/src/caravan/view/view_tui.cpp @@ -858,7 +858,7 @@ void ViewTUI::run() { // Tweak how the component tree is rendered: auto renderer = Renderer(component, [&] { - screen.SetCursor(Screen::Cursor(Screen::Cursor::Hidden)); + screen.SetCursor(Screen::Cursor({.shape=Screen::Cursor::Hidden})); try { if (closed) { return gen_closed(vc); }