mirror of
https://github.com/lbonn/rofi
synced 2024-11-14 16:17:11 +00:00
Merge remote-tracking branch 'origin/master' into next
This commit is contained in:
commit
2198d43199
2 changed files with 24 additions and 13 deletions
12
Changelog
12
Changelog
|
@ -1,5 +1,17 @@
|
|||
development:
|
||||
|
||||
v1.4.2:
|
||||
- Add sort to manpage. (#682)
|
||||
- Add tranaparent to theme manpage. (#688)
|
||||
- Re-add theme headers. (#679)
|
||||
- Fix super key. (#684)
|
||||
- Unknown option libnkutils:uuid. (#677)
|
||||
- Mode window is not found. (#686)
|
||||
- Fix meson build in dist file.
|
||||
|
||||
v1.4.1: All Hail Rasi
|
||||
- Bump meson release version
|
||||
|
||||
v1.4.0: I reject your truth and substitute my own (unreleased)
|
||||
New Features:
|
||||
- FZF style sorting for fuzzy matching (thanks to MaskRay) (#533)
|
||||
|
|
25
meson.build
25
meson.build
|
@ -119,7 +119,6 @@ install_headers([
|
|||
'include/mode.h',
|
||||
'include/mode-private.h',
|
||||
'include/helper.h',
|
||||
'include/rofi-types.h',
|
||||
],
|
||||
subdir: meson.project_name(),
|
||||
)
|
||||
|
@ -287,6 +286,18 @@ test('helper_pidfile test', executable('helper_pidfile.test', [
|
|||
dependencies: deps,
|
||||
))
|
||||
|
||||
test('helper_tokenize test', executable('helper_tokenize.test', [
|
||||
'test/helper-tokenize.c',
|
||||
],
|
||||
objects: rofi.extract_objects([
|
||||
'config/config.c',
|
||||
'source/helper.c',
|
||||
'source/xrmoptions.c',
|
||||
'source/rofi-types.c',
|
||||
]),
|
||||
dependencies: deps,
|
||||
))
|
||||
|
||||
test('widget test', executable('widget.test', [
|
||||
'test/widget-test.c',
|
||||
theme_parser,
|
||||
|
@ -422,18 +433,6 @@ if check.found()
|
|||
]),
|
||||
dependencies: deps,
|
||||
))
|
||||
test('helper_tokenize test', executable('helper_tokenize.test', [
|
||||
'test/helper-tokenize.c',
|
||||
],
|
||||
objects: rofi.extract_objects([
|
||||
'config/config.c',
|
||||
'source/helper.c',
|
||||
'source/xrmoptions.c',
|
||||
'source/rofi-types.c',
|
||||
]),
|
||||
dependencies: deps,
|
||||
))
|
||||
|
||||
endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue