1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

Bump to version 1.0.1

This commit is contained in:
Dave Davenport 2016-05-02 07:50:28 +02:00
parent 324a09b27b
commit 1c3d1aa46f
2 changed files with 47 additions and 17 deletions

View file

@ -1,19 +1,49 @@
1.0.0 (unreleased): 1.0.1
New features: Bug fixes
- Have separate config file. - Fix typo in manpage.
- Use GlibMainLoop. - Return old behaviour for rofi placement (#395, #389)
- Blinking cursor. - Switch desktop when switching window (#393)
- Config file. - Remove unneeded use of bash (#391)
- Add history to DRun mode. (#343) - Make history parser more robust against corrupted files. (#388)
Improvements: - Fix desktop number (#386)
- auto-select and single item on dmenu (#281)
Bug fixes: 1.0.0
New Features
- Blinking cursor
- BliSeparate configuration file
- BliHistory in drun mode (#343)
- BliContext menu mode, show rofi at the mouse pointer
Improvement
- auto select and single item on dmenu mode (#281)
- Unlimited window title length.
- Correctly follow the active desktop, instead of active window.
- If requesting modi that is not enabled, show it anyway.
- DMenu password mode. (#315)
- Levenshtein sort is now UTF-8 aware.
- Use xcb instead of large xlib library.
- Use GLib mainloop for cleaner code and easier external event based
- handling in future.
- Run dialog: Try to convert between locale, fs encoding and utf8.
- Fixing problems with non-utf8 filesystem encodings.
- Try to display non-utf8 strings as good as possible.
- Autocomplete bang hint in combi mode (#380)
- Remove magic line length limits by switching to getline
- from fgets.
- Print git version for git builds in version string.
Bug fixes
- Fix subpixel rendering. (#303) - Fix subpixel rendering. (#303)
- Fix basic tests on OpenBSD (#272) - Fix basic tests on OpenBSD (#272)
- Fix wrong use of memcpy (thx to Jasperia). - Fix wrong use of memcpy (thx to Jasperia).
- Work around for sigwaitinfo on OpenBSD. - Work around for sigwaitinfo on OpenBSD.
- Ignore invalid (non-utf8) in dmenu mode. - Ignore invalid entries (non-utf8) in dmenu mode.
- Glib signal handling. - Glib signal handling.
- Fix connecting to i3 on bsd.
- Be able to distinguish between empty and cancel in dmenu mode. (#323)
- Fix memcpy on single memory region. (#312)
- Fix opening file with mode a+ and using fseek to overwrite on bsd.
0.15.12: 0.15.12:
New features: New features:

View file

@ -1,4 +1,4 @@
AC_INIT([rofi], [1.0.0], [https://github.com/DaveDavenport/rofi/]) AC_INIT([rofi], [1.0.1], [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])