Skip to content

Commit

Permalink
bump version and fix flags default
Browse files Browse the repository at this point in the history
  • Loading branch information
jstkdng committed Mar 12, 2023
1 parent 48de14e commit d47ea1a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_BUILD_TYPE Debug)

project(ueberzugpp LANGUAGES CXX VERSION 2.7.0)
project(ueberzugpp LANGUAGES CXX VERSION 2.7.1)

find_package(nlohmann_json REQUIRED)
find_package(CLI11 REQUIRED)
Expand Down Expand Up @@ -89,6 +89,6 @@ target_link_libraries(ueberzug PUBLIC
)

install(TARGETS ueberzug
CONFIGURATIONS Debug Release None
RUNTIME DESTINATION bin)
CONFIGURATIONS Release
RUNTIME DESTINATION bin)

2 changes: 1 addition & 1 deletion include/flags.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Flags

bool no_stdin = false;
bool silent = false;
bool use_escape_codes;
bool use_escape_codes = false;
bool print_version = false;
std::string output;

Expand Down

0 comments on commit d47ea1a

Please sign in to comment.