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
b8ecbdcef5
commit
171d132b9b
2 changed files with 17 additions and 9 deletions
|
@ -1,3 +1,11 @@
|
|||
unreleased
|
||||
New Features
|
||||
Improvements
|
||||
- Allow user to use X11 background for fake transparency (#390)
|
||||
- Allow user to specify background image.
|
||||
- Improved keybinding handling, allowing on-release and modifier only (#384).
|
||||
Bug fixes
|
||||
|
||||
1.0.1
|
||||
Bug fixes
|
||||
- Fix typo in manpage.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue