1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-02-17 15:45:56 -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 New Features
- Keys mode, showing keybindings. - Keys mode, showing keybindings.
- Stop cycling option (#407) (Thx to Yaroslav) - Stop cycling option (#407) (Thx to Yaroslav)
- Kill window on delete entry (#316) - Kill window on delete entry (#316)
Improvements 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 use X11 background for fake transparency (#390)
- Allow user to specify background image. - Allow user to specify background image.
- Improved keybinding handling, allowing on-release and modifier only (#384). - 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 Bug fixes
- Grab mouse pointer with keyboard - 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_SRCDIR([source/rofi.c])
AC_CONFIG_HEADER([config.h]) AC_CONFIG_HEADER([config.h])

View file

@ -1261,6 +1261,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE\.
.P .P
\fBrofi\fR bugtracker can be found here \fIhttps://github\.com/DaveDavenport/rofi/issues\fR \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" .SH "AUTHOR"
Qball Cow \fIqball@gmpclient\.org\fR 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 { else {
fprintf ( stderr, "The %s switcher has not been enabled\n", sname ); fprintf ( stderr, "The %s switcher has not been enabled\n", sname );
g_main_loop_quit ( main_loop );
return G_SOURCE_REMOVE; return G_SOURCE_REMOVE;
} }
} }