From 367266f714cb47f15c3e0d921b8794ca725f01d6 Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Wed, 6 Apr 2022 13:18:02 -0400 Subject: [PATCH 1/2] cmake: Don't try to install empty sounds directory As git doesn't know about directories, we can't keep the empty sounds directory in git, so remove the install command for it as well. Fixes #118 --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d7a29fc2..308cf089 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -405,8 +405,6 @@ install(DIRECTORY qml/keys qml/languages install(FILES qml/ActionsToolbar.qml qml/FloatingActions.qml qml/Keyboard.qml qml/KeyboardContainer.qml qml/WordRibbon.qml DESTINATION ${MALIIT_KEYBOARD_QML_DIR}) -install(DIRECTORY data/sounds - DESTINATION ${MALIIT_KEYBOARD_DATA_DIR}) install(DIRECTORY data/themes DESTINATION ${MALIIT_KEYBOARD_DATA_DIR}) install(DIRECTORY data/devices From 1a83cafce5b634aae69b050733fea0ac6af93a4a Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Wed, 6 Apr 2022 13:22:11 -0400 Subject: [PATCH 2/2] Release 2.2.1.1 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 308cf089..352ee240 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.9) -project(maliit-keyboard VERSION 2.2.1) +project(maliit-keyboard VERSION 2.2.1.1) option(enable-presage "Use presage to calculate word candidates (maliit-keyboard-plugin only)" ON) option(enable-hunspell "Use hunspell for error correction (maliit-keyboard-plugin only)" ON)