mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Update Changelog
This commit is contained in:
parent
b31cf1d32f
commit
fc24fcca22
2 changed files with 21 additions and 17 deletions
20
Changelog
20
Changelog
|
@ -1,12 +1,16 @@
|
||||||
v1.unrelease
|
v1.unrelease
|
||||||
- Remove fuzzy option
|
New Features
|
||||||
- Remove xlib dependency (xcb-xrm)
|
- Highlight matched part of the string.
|
||||||
- Supports include in config.
|
- Make window switcher string customizable.
|
||||||
- Make window switcher string customizable.
|
Improvements
|
||||||
- Fix Current Desktop window switcher.
|
- Improved selection mode in dmenu with selection counter.
|
||||||
- Selection mode in dmenu with selection counter.
|
- Fix Current Desktop window switcher.
|
||||||
- Fix launching in terminal.
|
- Fix launching in terminal.
|
||||||
- Remove i3 workaround as it no longer needed since I3 v4.9. (Feb. 2015)
|
- 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
|
v1.1.0
|
||||||
New Features
|
New Features
|
||||||
|
|
|
@ -39,15 +39,15 @@ typedef struct
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
TB_AUTOHEIGHT = 1 << 0,
|
TB_AUTOHEIGHT = 1 << 0,
|
||||||
TB_AUTOWIDTH = 1 << 1,
|
TB_AUTOWIDTH = 1 << 1,
|
||||||
TB_LEFT = 1 << 16,
|
TB_LEFT = 1 << 16,
|
||||||
TB_RIGHT = 1 << 17,
|
TB_RIGHT = 1 << 17,
|
||||||
TB_CENTER = 1 << 18,
|
TB_CENTER = 1 << 18,
|
||||||
TB_EDITABLE = 1 << 19,
|
TB_EDITABLE = 1 << 19,
|
||||||
TB_MARKUP = 1 << 20,
|
TB_MARKUP = 1 << 20,
|
||||||
TB_WRAP = 1 << 21,
|
TB_WRAP = 1 << 21,
|
||||||
TB_PASSWORD = 1 << 22,
|
TB_PASSWORD = 1 << 22,
|
||||||
} TextboxFlags;
|
} TextboxFlags;
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
|
|
Loading…
Reference in a new issue