From fc24fcca22a86a129b567eeb42fe00aeac8445ed Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Thu, 14 Jul 2016 07:48:28 +0200 Subject: [PATCH] Update Changelog --- Changelog | 20 ++++++++++++-------- include/textbox.h | 18 +++++++++--------- 2 files changed, 21 insertions(+), 17 deletions(-) diff --git a/Changelog b/Changelog index 2622a762..7213af29 100644 --- a/Changelog +++ b/Changelog @@ -1,12 +1,16 @@ v1.unrelease - - Remove fuzzy option - - Remove xlib dependency (xcb-xrm) - - Supports include in config. - - Make window switcher string customizable. - - Fix Current Desktop window switcher. - - Selection mode in dmenu with selection counter. - - Fix launching in terminal. - - Remove i3 workaround as it no longer needed since I3 v4.9. (Feb. 2015) + New Features + - Highlight matched part of the string. + - Make window switcher string customizable. + Improvements + - Improved selection mode in dmenu with selection counter. + - Fix Current Desktop window switcher. + - Fix launching in terminal. + - Supports include in config. + Removals: + - Remove xlib dependency (xcb-xrm) + - Remove fuzzy option + - Remove i3 workaround as it no longer needed since I3 v4.9. (Feb. 2015) v1.1.0 New Features diff --git a/include/textbox.h b/include/textbox.h index a7619f7d..455904f8 100644 --- a/include/textbox.h +++ b/include/textbox.h @@ -39,15 +39,15 @@ typedef struct typedef enum { - TB_AUTOHEIGHT = 1 << 0, - TB_AUTOWIDTH = 1 << 1, - TB_LEFT = 1 << 16, - TB_RIGHT = 1 << 17, - TB_CENTER = 1 << 18, - TB_EDITABLE = 1 << 19, - TB_MARKUP = 1 << 20, - TB_WRAP = 1 << 21, - TB_PASSWORD = 1 << 22, + TB_AUTOHEIGHT = 1 << 0, + TB_AUTOWIDTH = 1 << 1, + TB_LEFT = 1 << 16, + TB_RIGHT = 1 << 17, + TB_CENTER = 1 << 18, + TB_EDITABLE = 1 << 19, + TB_MARKUP = 1 << 20, + TB_WRAP = 1 << 21, + TB_PASSWORD = 1 << 22, } TextboxFlags; typedef enum