1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-25 13:55:34 -05:00

Merge remote-tracking branch 'origin/master' into highlight_match

This commit is contained in:
Dave Davenport 2016-06-16 08:41:40 +02:00
commit 57336b96f0
5 changed files with 35 additions and 7 deletions

View file

@ -1,14 +1,16 @@
unreleased
v1.1.0
New Features
- Keys mode, showing keybindings.
- Stop cycling option (#407) (Thx to Yaroslav)
- Kill window on delete entry (#316)
- Keys mode, showing keybindings.
- Stop cycling option (#407) (Thx to Yaroslav)
- Kill window on delete entry (#316)
Improvements
- Add Control+Backspace as remove word back keybinding.
- Add Control+Backspace as remove word back keybinding.
- 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).
- Use display name for prompt (#409)
- Use display name for prompt (#409)
- Parse subdirectories in drun parser (#416)
- Switch to stop cycling (#407)
Bug fixes
- Grab mouse pointer with keyboard

View file

@ -1,4 +1,4 @@
AC_INIT([rofi], [1.0.1], [https://github.com/DaveDavenport/rofi/])
AC_INIT([rofi], [1.1.0], [https://github.com/DaveDavenport/rofi/])
AC_CONFIG_SRCDIR([source/rofi.c])
AC_CONFIG_HEADER([config.h])

View file

@ -1261,6 +1261,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE\.
.P
\fBrofi\fR bugtracker can be found here \fIhttps://github\.com/DaveDavenport/rofi/issues\fR
.
.P
\fBrofi\fR support can be obtained here \fIirc://irc\.freenode\.net/#rofi\fR (#rofi on irc\.freenode\.net)
.
.SH "AUTHOR"
Qball Cow \fIqball@gmpclient\.org\fR
.

View file

@ -0,0 +1,22 @@
# V1.1.0 - A trump card
## New Features
- Keys mode, showing keybindings.
- Stop cycling option (#407) (Thx to Yaroslav)
- Kill window on delete entry (#316)
## Improvements
- Add Control+Backspace as remove word back keybinding.
- 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).
- Use display name for prompt (#409)
- Parse subdirectories in drun parser (#416)
- Switch to stop cycling (#407)
##Bug fixes
- Grab mouse pointer with keyboard

View file

@ -569,6 +569,7 @@ static gboolean startup ( G_GNUC_UNUSED gpointer data )
}
else {
fprintf ( stderr, "The %s switcher has not been enabled\n", sname );
g_main_loop_quit ( main_loop );
return G_SOURCE_REMOVE;
}
}