aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update dependencies on '6.7.1' in qt/qtvirtualkeyboardv6.7.16.7.1Qt Submodule Update Bot2024-05-091-4/+4
| | | | | Change-Id: I4fe58c7cb9b11a9708ebfcf1d1165c048b6f746d Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7.1' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-05-051-4/+4
| | | | | Change-Id: Ib820d60835a300326101fa8decd7ca4b2e59f355 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7.1' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-04-281-4/+4
| | | | | Change-Id: I165e70bc89255f07f2bcb322cef7cc862870f89d Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7.1' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-04-251-4/+4
| | | | | Change-Id: I5054c0ffa38b783384cb7b5c05b14adf91f9b667 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-04-171-4/+4
| | | | | Change-Id: I77930a54873d0e1c179af3e37a4a7cbb8106adcd Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* hunspell: Fix build with bundled hunspellJarkko Koivikko2024-04-161-1/+1
| | | | | | | | | | hunspell/config.h is generated in the build directory, so fix SOURCES reference. Pick-to: 6.5 Change-Id: I8847e50d4e7920792d59f829a6cc3fb7eb9bb45c Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit 12ff4d2ffd1bb1fc4d498a73d4a38cd3847c8ed5) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-04-161-4/+4
| | | | | Change-Id: I80566ccd9eb79ae156eea5843ad3ab018a92e82a Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-04-101-4/+4
| | | | | Change-Id: I5960a6b152d74500a0bad1d3d273b2c92f355ea5 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* tcime: Add missing symbol ER to Zhuyin layoutJarkko Koivikko2024-04-092-3/+1
| | | | | | | | | Task-number: QTBUG-80663 Change-Id: I599a634bb507db36b037c89435614f85a3121878 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi> (cherry picked from commit 0474e4d837b097909508851669af2cf385d996bb) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Correct license for build system fileLucie Gérard2024-04-051-1/+1
| | | | | | | | | | | | | | | Assuming files in config.tests and build system files. According to QUIP-18 [1], all build system files should be BSD-3-Clause [1]: https://contribute.qt-project.org/quips/18 Pick-to: 6.7.0 Task-number: QTBUG-121787 Change-Id: I7769ab962321f8f334882af61a08ed8fe6f6dc6a Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit af28a39a4f2ae88960b7615f61baaf23917dfd61) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Add a licenseRule.json file for checking of SPDX license identifiersLucie Gérard2024-04-051-0/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The license test in qtqa reads this file in order to check the validity of the license used. This file reproduce the QUIP-18 [1] rules, with some exceptions. Each entry in the file corresponds to a set of licensing rules. A set of licensing rules can depend on the file ending, registered in "file_pattern_ending". The last entry in the file has no "file_pattern_ending", it sets the rules for the files whose licensing does not depend on their ending. The license to be used depends on the location of the file within the Qt module repository. Let's call this "<true_location>". The "<true_location>" can also correspond to a file name, offering flexibility for exceptions to the rule. The "<true_location>" are registered in "location". For each "<true_location>" there is a "file type" entry and a "spdx" entry. The "spdx" entry gives the rule: the expected license tag(s) in SPDX format for the file ending (if applicable) and "<true_location>". The "file type" informs on the QUIP-18 type the tested file corresponds to. It is purely informational for the reader. The set of rules are tested in order of appearance in the json file. For this reason, a more constraining ending (like "special.txt") needs to appear in a "file_pattern_ending" located before the "file_pattern_ending" of a less constraining ending (like ".txt"). Also, a file ending cannot be present in two "file_pattern_ending". "file_pattern_ending" and "spdx" should list strings. "<true_location>" can be regular expressions. During the test the deeper "<true_location>" are checked first. The order is which they appear in the json file does not matter. To test this file, run QT_MODULE_TO_TEST=../qtvirtualkeyboard perl tests/prebuild/license/tst_licenses.pl [1]: https://contribute.qt-project.org/quips/18 Task-number: QTBUG-121039 Change-Id: I03e5c118bf744c881a81a67ff15da3376a11236f Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi> Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit 831a4a26a0c9dfd937d755f56b3b3698fdc84175) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Correct license for examples filesLucie Gérard2024-04-043-3/+3
| | | | | | | | | | | | | | Example takes precedence over build system file type. According to QUIP-18 [1], all examples file should be LicenseRef-Qt-Commercial OR BSD-3-Clause [1]: https://contribute.qt-project.org/quips/18 Task-number: QTBUG-121787 Change-Id: I1cec83bde0b75c77bbce56337f2b9271f9406a17 Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit 196011eed2120df72a36c51f5c2bd02e2dabb38a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-04-041-4/+4
| | | | | Change-Id: I58fbd9db7cc5045a6e4e247fd286dd586681fbb7 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-04-031-4/+4
| | | | | Change-Id: I24ea073417f6f252d07861912db4b51010c20610 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-03-281-4/+4
| | | | | Change-Id: I66c15ea79aa4d1c9ffb114bf8ea493c61d05d74f Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-03-271-4/+4
| | | | | Change-Id: I0b4c185810f9ede96c720e4e33c48485ec341dd5 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-03-221-4/+4
| | | | | Change-Id: I8c0ae3f161fbd993287530f2fd8d9dcf6f9b6bcf Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-03-201-4/+4
| | | | | Change-Id: Iecb2616f1430e52b0b7abacae2aaa80df3daa94b Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Bump version to 6.7.1Jani Heikkinen2024-03-201-1/+1
| | | | | Change-Id: I7ac2f140cb4b4c0e85fd07b0958b597984cadde1 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-03-051-4/+4
| | | | | Change-Id: I13e28889f71be13ec3f2b2fd4c1a929eb508ff03 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-03-031-4/+4
| | | | | Change-Id: Ic8023c398f6c7350ee4e6e5bbf371e37f6bb29ff Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-03-011-4/+4
| | | | | Change-Id: I638675fab6b750798b1808f1c1826036bd7441bd Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-03-011-4/+4
| | | | | Change-Id: I0d3a87a851140079c2c630eb272c2e1f0379279d Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-02-271-4/+4
| | | | | Change-Id: Ic3d5e1c8c899d05352eae939aecb8d4b4672fb5f Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-02-231-4/+4
| | | | | Change-Id: I440d6cb22b2ddcdde8ab6c71e5b971cdaefdd8aa Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update the basic example to deploy the required plugins explicitlyAlexey Edelev2024-02-222-2/+22
| | | | | | | | | | | | | | | | | | Add the missing Qt6::QAndroidMediaPlugin plugin explicitly to the basic example using the qt_import_plugins call. This is used when deploying plugins on Android platform. TODO: QtMultimedia module is not used by the application directly, but it's required to link it, to make the qt_import_plugins cal for QAndroidMeadiPlugin work. See QTBUG-122607. Fixes: QTBUG-121658 Pick-to: 6.6 6.5 Change-Id: I5c45541e5ceed556d5d995b1cb4ff1372859a16b Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> (cherry picked from commit 30e810c38f515db242b3d7b74bf4b801e8823fad) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Enable QVirtualKeyboardPlugin on Android platforms by defaultAlexey Edelev2024-02-221-1/+1
| | | | | | | | | | | | | It does make sense to enable QVirtualKeyboardPlugin on Android platforms by default, since Android devices require virtual keyboard as HMI. Task-number: QTBUG-121658 Pick-to: 6.6 6.5 Change-Id: Ia876d9435226ed1e74acf785d186da611f135f95 Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi> (cherry picked from commit f278bcb4c0da9defba47a950c9456154fa650737) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-02-211-4/+4
| | | | | Change-Id: I7330a7e9f80e6c03a5b1bab684aa8a479eb2ac7c Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-02-191-4/+4
| | | | | Change-Id: I575c9d432d459097f34b7a5866a49c3bc368c5a9 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-02-161-4/+4
| | | | | Change-Id: Ia0dbd57dd0d1a4e6a325c5d96a872e3283cd9e85 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardv6.7.0-beta3Qt Submodule Update Bot2024-02-101-4/+4
| | | | | Change-Id: I212752691608501b53c0a4e8a5d59c7653e412dc Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Link VKB and VKB.Settings into VKB.Components and VKB into VKB.StylesUlf Hermann2024-02-074-5/+8
| | | | | | | | | | | | | This forces the build system to build VirtualKeyboard and VirtualKeyboardSettings first which makes their qmltypes available to subsequent build steps. Pick-to: 6.6 Task-number: QTBUG-121643 Change-Id: Ia0cdfe522d78c94eb87f7fd2cbaf6c2fdac954aa Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit f3402248641dadfaf47159eea9a6c3bb1fe167fa) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-02-071-4/+4
| | | | | Change-Id: I5484994c83a7940ae1caa59d00a4bb91858d4ef8 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-02-051-4/+4
| | | | | Change-Id: I4e71584397d79234c318bbe02c557a8dd5da0149 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-02-011-4/+4
| | | | | Change-Id: I7fdbe2d76cdecfbade4e23400c97fd5af6d3614e Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardv6.7.0-beta2Qt Submodule Update Bot2024-01-241-1/+1
| | | | | Change-Id: I08f961fee0d058b51049da953e85bad388cd43f9 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-01-231-4/+4
| | | | | Change-Id: I597403ea58fa624167dbc8b77c04569f197fdc49 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-01-201-4/+4
| | | | | Change-Id: Id3008071d210b3023de38e6eef428b5ecdd4e102 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-01-191-4/+4
| | | | | Change-Id: Ie0de68c0075d17cd9ac33adb616f13bbb4098bb6 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2024-01-181-4/+4
| | | | | Change-Id: Ie1f53629d1e0a6b2e47ce8f9a55d9fd53a4bd940 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update 3rd party directories to SPDX-License-RefLucie Gérard2024-01-121-28/+2
| | | | | | | | | Task-number: QTBUG-120262 Pick-to: 6.6 Change-Id: I3449c3a60664c46a8fd75dc0bba6886d71652abd Reviewed-by: Kai Köhne <kai.koehne@qt.io> (cherry picked from commit e2fe8633ef85860d2b56520aca2b25fb2ad323df) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Pinyin: free _syncs in userdictInho Lee2024-01-081-0/+3
| | | | | | | | | | There is an unfreed memory block in a 3rdparty module, pinyin. Pick-to: 6.6 6.5 Change-Id: I652b987437472b6e4f3bcf0e1cf600ba6d78d816 Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi> (cherry picked from commit 195b30cf37ca78a51f3810ed9937d3b617e50054) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardQt Submodule Update Bot2023-12-221-4/+4
| | | | | Change-Id: Icdb67d2e2c8fbdfdf48228cfb062c04bf89d7a20 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on '6.7' in qt/qtvirtualkeyboardv6.7.0-beta1Qt Submodule Update Bot2023-12-131-4/+4
| | | | | Change-Id: Ibe4dc8f7cfdc4d2679cf1b3fc605df99ebdc814a Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on 'dev' in qt/qtvirtualkeyboardQt Submodule Update Bot2023-12-081-4/+4
| | | | | Change-Id: Ibb07fcba234f85dd6b7b700a7b872e8b01b37260 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on 'dev' in qt/qtvirtualkeyboardQt Submodule Update Bot2023-12-051-4/+4
| | | | | Change-Id: I0023526743f286bd637218ccdaddc7671b8bb2f1 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on 'dev' in qt/qtvirtualkeyboardQt Submodule Update Bot2023-12-041-4/+4
| | | | | Change-Id: I9a94ef57beb4ac187d3f9038842edb56285b59d0 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on 'dev' in qt/qtvirtualkeyboardQt Submodule Update Bot2023-12-011-4/+4
| | | | | Change-Id: Ifbff6658c1e3050c6f106ac731f96bfd97b6b7ee Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on 'dev' in qt/qtvirtualkeyboardQt Submodule Update Bot2023-12-011-4/+4
| | | | | Change-Id: I39fe0a0bfc13616827911cba4af06756ffa24dcc Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
* Update dependencies on 'dev' in qt/qtvirtualkeyboardQt Submodule Update Bot2023-11-291-4/+4
| | | | | Change-Id: I6d9578cf8cc87cfff2d5797b1fadcd0caff2e97a Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>