From e2e4b4641fdb8cd19ca829cef90fe577a0bd0455 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sun, 25 Mar 2018 20:00:01 +0200 Subject: [PATCH] Add EscapeCodes::Strikethrough --- CMakeLists.txt | 2 +- io/ansiescapecodes.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6516439..0b0b059 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -131,7 +131,7 @@ set(META_APP_AUTHOR "Martchus") set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}") set(META_APP_DESCRIPTION "Useful C++ classes and routines such as argument parser, IO and conversion utilities") set(META_VERSION_MAJOR 4) -set(META_VERSION_MINOR 13) +set(META_VERSION_MINOR 14) set(META_VERSION_PATCH 0) # find required 3rd party libraries diff --git a/io/ansiescapecodes.h b/io/ansiescapecodes.h index 3d25239..8bad057 100644 --- a/io/ansiescapecodes.h +++ b/io/ansiescapecodes.h @@ -22,7 +22,8 @@ enum class TextAttribute : char { Underscore = '4', Blink = '5', ReverseVideo = '7', - Concealed = '8' + Concealed = '8', + Strikethrough = '9', }; enum class Direction : char { Up = 'A', Down = 'B', Forward = 'C', Backward = 'D' };