l10n daemon script
072b531b0d
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.53.0 release.
2018-12-01 14:40:14 +00:00
Albert Astals Cid
10f201e414
Use gimp to export simple-rgba-gimp-2.8.10.xcf to png again
...
This fixes the xcf test that was failing, i guess at some point someone
run optipng or something over the expected result and that was causing
the test to fail
2018-11-17 12:22:25 +01:00
Albert Astals Cid
1656913fbd
GIT_SILENT Upgrade Qt5 version requirement to 5.9.0.
2018-11-17 11:18:21 +01:00
l10n daemon script
beaf20bd4a
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.52.0 release.
2018-11-03 12:00:43 +00:00
Yuri Chornoivan
8ac949d459
Fix minor EBN issues
2018-10-22 19:58:24 +03:00
l10n daemon script
4c0c6c8d60
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.51.0 release.
2018-10-07 10:07:12 +00:00
David Faure
f485719012
kimg_rgb: optimize away QRegExp and QString::fromLocal8Bit.
...
Summary:
The code is even simpler this way.
Found by using heaptrack.
Test Plan: the unittest for rgb still passes.
Reviewers: cfeck
Reviewed By: cfeck
Subscribers: jtamate, kde-frameworks-devel
Tags: #frameworks
Differential Revision: https://phabricator.kde.org/D15890
2018-10-03 00:51:29 +02:00
Friedrich W. H. Kossebau
1db1b94657
[EPS] qWarning -> qCWarning
2018-09-17 11:56:58 +02:00
Friedrich W. H. Kossebau
98c65a438d
[EPS] Fix crash at app shutdown (being tried to persist clipboard image)
...
Summary:
Deny any capabilities when there is no QApp instance.
BUG: 397040
Test Plan:
Untested, as I do not experience the bug on my system and had no time to
invest into trying to.
Reviewers: zccrs, dfaure, pino
Reviewed By: dfaure
Subscribers: kde-frameworks-devel
Tags: #frameworks
Differential Revision: https://phabricator.kde.org/D15405
2018-09-17 11:54:18 +02:00
l10n daemon script
167967a145
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.50.0 release.
2018-08-31 22:22:12 +00:00
l10n daemon script
17239a7ea6
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.49.0 release.
2018-08-04 08:43:39 +00:00
l10n daemon script
118d262bec
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.48.0 release.
2018-07-07 21:52:47 +00:00
Laurent Montel
67a84f459d
Use override
2018-06-12 07:01:11 +02:00
l10n daemon script
de2b942b33
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.47.0 release.
2018-06-02 16:28:21 +00:00
Alexander Volkov
813a7bdddb
Remove duplicated mime types from json files
...
Qt expects a bijection between keys and mime types.
2018-05-25 14:32:11 +03:00
Laurent Montel
a4d1f4db1d
Use override
2018-05-23 08:06:50 +02:00
l10n daemon script
29d090f078
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.46.0 release.
2018-05-05 12:39:09 +00:00
Christoph Feck
19f33239e7
[XCF/GIMP loader] Raise maximimum allowed image size to 32767x32767 on 64 bit platforms
...
The GIMP image loader had a limit to 16K x 16K pixels, because this would
already exhaust the 2 GByte address space limit of 32 bit systems.
Remove this limit on 64 bit systems to allow the full 32K x 32K size.
BUG: 391970
Differential Revision: https://phabricator.kde.org/D12557
2018-05-02 02:10:26 +02:00
l10n daemon script
4668fbbcdc
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.45.0 release.
2018-04-07 07:47:44 +00:00
Laurent Montel
698ba297d3
We depend against 5.8.0 now
2018-03-27 08:01:04 +02:00
l10n daemon script
3a9bafdbbe
GIT_SILENT Upgrade Qt5 version requirement to 5.8.0.
2018-03-24 13:34:11 +00:00
Laurent Montel
e5b226e804
Remove not necessary QtCore and co
2018-03-11 13:49:26 +01:00
l10n daemon script
871d0f976f
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.44.0 release.
2018-03-03 09:52:42 +00:00
Friedrich W. H. Kossebau
7aa5333a3f
kcoreaddons_add_plugin: remove effectless OBJECT_DEPENDS on json file
...
The JSON file argument is passed to Q_PLUGIN_METADATA, which is a no-code
macro at the C++ level and only used to note information used by moc
for the generated moc file.
So when the content of the JSON file has changed, this will not change
anything in the preprocessed source file itself. It only has an effect on
the content of the moc file generated based on it, which is either included
and thus already triggers a dependecy or generated by automoc and compiled
separately into the target with the needed dependencies.
It is automoc which needs to properly trigger a recreation of the moc
file when checking the sources (and at least in 3.9 & 10 does),
and this is nothing that can be influenced by dependency rules.
2018-02-23 19:09:18 +01:00
l10n daemon script
aeabd92eea
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.43.0 release.
2018-02-05 08:11:10 +00:00
l10n daemon script
64e719f329
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.42.0 release.
2018-01-05 23:41:49 +00:00
Laurent Montel
eef855b146
Remove obsolete reviewboardrc file
2018-01-05 13:24:38 +01:00
David Faure
04e2ee01cb
Set LIBRARY_OUTPUT_DIRECTORY so the autotests can run without the plugins installed
...
Do this properly by defining a function (inspired by kcoreaddons_add_plugin)
2018-01-05 11:19:18 +01:00
Martin Koller
7f2c44add4
Use brace-initializer instead of nullptr in returning 0-QFlags
...
Differential Revision: https://phabricator.kde.org/D9182
2017-12-05 19:34:30 +01:00
l10n daemon script
ca67a8f342
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.41.0 release.
2017-12-02 10:14:43 +00:00
l10n daemon script
23759d0aef
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.40.0 release.
2017-11-04 21:43:30 +00:00
Kevin Funk
bfc02ddfe3
Add .arcconfig
2017-10-15 20:24:32 +02:00
l10n daemon script
a65b504a44
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.39.0 release.
2017-10-07 11:15:41 +00:00
David Faure
78aeee7d36
GIT_SILENT Upgrade to ECM 5.38 and make tests run uninstalled
2017-08-14 15:15:23 +02:00
l10n daemon script
a2d0e43889
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.37.0 release.
2017-08-06 16:42:02 +00:00
l10n daemon script
e0bd85cbc3
GIT_SILENT Upgrade Qt5 version requirement to 5.7.0.
2017-08-06 16:02:31 +00:00
l10n daemon script
f16485a872
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.36.0 release.
2017-06-30 10:34:05 +00:00
l10n daemon script
e3afec9e75
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.35.0 release.
2017-06-03 09:02:51 +00:00
Montel Laurent
b040cf0f96
Use Q_FALLTHROUGH
2017-06-02 07:52:48 +02:00
l10n daemon script
7be2757c36
GIT_SILENT Upgrade ECM and KF5 version requirements for 5.34.0 release.
2017-05-06 08:37:02 +00:00
l10n daemon script
a8562a8471
Upgrade ECM and KF5 version requirements for 5.33.0 release.
2017-04-01 17:33:21 +00:00
l10n daemon script
252b639638
Upgrade ECM and KF5 version requirements for 5.32.0 release.
2017-03-03 12:56:29 +00:00
l10n daemon script
b0c8c40dec
Upgrade ECM and KF5 version requirements for 5.31.0 release.
2017-02-04 18:20:08 +00:00
l10n daemon script
1afb7681b7
Upgrade Qt5 version requirement to 5.6.0.
2017-02-03 23:44:22 +00:00
Kevin Funk
740fe5df0e
Use nullptr everywhere
...
Differential Revision: https://phabricator.kde.org/D3987
2017-01-16 09:44:17 +01:00
l10n daemon script
e4aa067bd2
Upgrade ECM and KF5 version requirements for 5.30.0 release.
2017-01-08 15:31:27 +00:00
Sven Brauch
9f77675d91
Require CMake 3.0, as discussed on kde-frameworks-devel
2017-01-03 13:24:41 +01:00
Tobias C. Berner
8a8ef69b7c
Add FreeBSD to metainfo.yaml.
...
REVIEW: 129472
2016-12-06 19:06:09 +01:00
l10n daemon script
95e14f8f60
Upgrade ECM and KF5 version requirements for 5.29.0 release.
2016-12-03 10:23:58 +00:00
l10n daemon script
1fca298a20
Upgrade ECM and KF5 version requirements for 5.28.0 release.
2016-11-05 11:02:19 +00:00