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:
parent
324a09b27b
commit
1c3d1aa46f
2 changed files with 47 additions and 17 deletions
52
Changelog
52
Changelog
|
@ -1,19 +1,49 @@
|
|||
1.0.0 (unreleased):
|
||||
New features:
|
||||
- Have separate config file.
|
||||
- Use GlibMainLoop.
|
||||
- Blinking cursor.
|
||||
- Config file.
|
||||
- Add history to DRun mode. (#343)
|
||||
Improvements:
|
||||
- auto-select and single item on dmenu (#281)
|
||||
Bug fixes:
|
||||
1.0.1
|
||||
Bug fixes
|
||||
- Fix typo in manpage.
|
||||
- Return old behaviour for rofi placement (#395, #389)
|
||||
- Switch desktop when switching window (#393)
|
||||
- Remove unneeded use of bash (#391)
|
||||
- Make history parser more robust against corrupted files. (#388)
|
||||
- Fix desktop number (#386)
|
||||
|
||||
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 basic tests on OpenBSD (#272)
|
||||
- Fix wrong use of memcpy (thx to Jasperia).
|
||||
- Work around for sigwaitinfo on OpenBSD.
|
||||
- Ignore invalid (non-utf8) in dmenu mode.
|
||||
- Ignore invalid entries (non-utf8) in dmenu mode.
|
||||
- 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:
|
||||
New features:
|
||||
|
|
|
@ -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_HEADER([config.h])
|
||||
|
|
Loading…
Reference in a new issue