mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05: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:
|
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)
|
v1.4.0: I reject your truth and substitute my own (unreleased)
|
||||||
New Features:
|
New Features:
|
||||||
- FZF style sorting for fuzzy matching (thanks to MaskRay) (#533)
|
- 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.h',
|
||||||
'include/mode-private.h',
|
'include/mode-private.h',
|
||||||
'include/helper.h',
|
'include/helper.h',
|
||||||
'include/rofi-types.h',
|
|
||||||
],
|
],
|
||||||
subdir: meson.project_name(),
|
subdir: meson.project_name(),
|
||||||
)
|
)
|
||||||
|
@ -287,6 +286,18 @@ test('helper_pidfile test', executable('helper_pidfile.test', [
|
||||||
dependencies: deps,
|
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', executable('widget.test', [
|
||||||
'test/widget-test.c',
|
'test/widget-test.c',
|
||||||
theme_parser,
|
theme_parser,
|
||||||
|
@ -422,18 +433,6 @@ if check.found()
|
||||||
]),
|
]),
|
||||||
dependencies: deps,
|
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
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue