summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changelog12
-rw-r--r--meson.build25
2 files changed, 24 insertions, 13 deletions
diff --git a/Changelog b/Changelog
index c858d234..60e7ea6c 100644
--- a/Changelog
+++ b/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)
diff --git a/meson.build b/meson.build
index efb942df..bc84a25b 100644
--- a/meson.build
+++ b/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