l10n daemon script
a360e5c8ae
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-07-31 05:17:18 +02:00
l10n daemon script
b0712e1874
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-07-27 05:15:30 +02:00
l10n daemon script
87ad1774a2
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-07-22 05:10:18 +02:00
l10n daemon script
ed9fe37985
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-07-21 05:20:01 +02:00
l10n daemon script
bfeba242ea
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-07-19 05:37:59 +02:00
l10n daemon script
8e51ddfb45
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-07-18 05:22:56 +02:00
l10n daemon script
a4c4dd29a5
GIT_SILENT made messages (after extraction)
2019-07-16 02:53:03 +02:00
Albert Astals Cid
078a05e368
GIT_SILENT Upgrade KDE Applications version to 19.11.70.
2019-07-15 21:49:47 +02:00
l10n daemon script
f8e02290a3
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-07-14 05:16:48 +02:00
l10n daemon script
0e5ac2d9aa
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-07-12 05:17:58 +02:00
Alexey Min
9828143609
New dep: KWindowSystem and support running in Wayland
...
This commit adds a new dependency - KWindowSystem, to help
with window system detection. If wayland is detected, then
preferred framebuffer plugin is switched to "pw" (pipewire).
2019-07-07 14:28:10 +03:00
Alexey Min
0cc47b9a06
Remove unneeded moc include
2019-07-07 14:10:52 +03:00
Alexey Min
656c90916c
Fix unused variable warning
2019-07-07 14:06:46 +03:00
l10n daemon script
296f5db567
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-06-26 05:19:24 +02:00
Alexey Min
e15c5d634d
Fix clazy: unused non-trivial variable
...
unused QByteArray [-Wclazy-unused-non-trivial-variable]
That variable was totally unused!
2019-06-20 23:21:40 +03:00
Alexey Min
22b017e0b0
Fix clazy: calling QByteArray::data() on temporary
...
Don't call QByteArray::data() on temporary [-Wclazy-detaching-temporary]
data() is not const and will detach, call constData() instead
2019-06-20 23:18:56 +03:00
Alexey Min
05b96c0bd0
clazy: Don't call QList::first() on temporary
...
Don't call QList::first() on temporary [-Wclazy-detaching-temporary]
There is a constFirst() for that, to prevent detaching
2019-06-20 23:06:57 +03:00
Alexey Min
fa7c32fbb9
Fix clazy warning about lambda context object
...
Pass a context object as 3rd connect parameter [-Wclazy-connect-3arg-lambda]
2019-06-20 23:00:34 +03:00
Alexey Min
acf4f7393e
bzero() function is obsoleted by memset()
...
Another clang-tidy warning.
The bzero() function is deprecated (marked as
LEGACY in POSIX.1-2001); use memset(3) in new
programs. POSIX.1-2008 removes the specification
of bzero().
2019-06-20 00:58:29 +03:00
Alexey Min
43aeee4c3e
Fix clang-tidy warn: call to virtual function during destruction
2019-06-20 00:42:00 +03:00
Alexey Min
aab2869883
Fix potential use of pointer after checking for nullptr
...
Code below continues to use the pointer after a check for
nullptr like nothing happened. Probably continue is missing
in a loop.
clang-tidy: Called C++ object pointer is null
at eventsmanager.cpp:87
at framebuffermanager.cpp:86
2019-06-20 00:23:37 +03:00
Alexey Min
306a094540
Fix unused parameter warning
2019-06-20 00:05:34 +03:00
Alexey Min
a774e678bb
Remove unneeded .moc includes
...
[5/8] Automatic MOC for target krfb_events_x11
AutoMoc warning
---------------
"~/dev/kde/krfb/events/x11/x11events.cpp"
The file includes the moc file "x11events.moc",
but does not contain a Q_OBJECT, Q_GADGET,
Q_NAMESPACE, K_PLUGIN_FACTORY,
K_PLUGIN_FACTORY_WITH_JSON or
K_PLUGIN_CLASS_WITH_JSON macro.
AutoMoc: ~/dev/kde/krfb/events/x11/x11events.cpp:0:
Note: No relevant classes found. No output generated.
2019-06-19 23:50:45 +03:00
Alexey Min
718b0ac000
Show hostname in krfb connection info
...
Summary:
Using krfb as desktop support tool for ~250 desktops on LAN - 95% of the users aren't equipped to deal with reciting IP addresses accurately, so I wanted to add the hostname into the connection details as well, since it's easier for non-tech people to read that back.
Attached patch does this, and works internally for us - thoughts on doing it better:
* hostnames as reported by the host are not necessarily accurate for network access, so
* consider actually doing a nameserver lookup to verify
* only show the hostname if you can verify
Reviewers: ngraham, #kde_applications, aacid
Reviewed By: #kde_applications, aacid
Subscribers: akulichalexandr, aacid, pino, alexeymin
Tags: #kde_applications
Differential Revision: https://phabricator.kde.org/D14527
2019-06-19 23:09:26 +03:00
l10n daemon script
4230b2234b
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-06-12 05:33:49 +02:00
l10n daemon script
f5467f826c
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-06-03 05:29:38 +02:00
Jonathan Riddell
0a0a7f096a
stick to one category
2019-05-31 20:16:44 +01:00
l10n daemon script
94ea33aaa4
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-05-31 05:09:53 +02:00
l10n daemon script
3f471e6fd1
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-05-28 05:19:21 +02:00
l10n daemon script
e018e1a7c5
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-05-27 05:13:28 +02:00
l10n daemon script
576cef1a12
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-05-26 05:18:37 +02:00
l10n daemon script
77f5ae8230
SVN_SILENT made messages (.desktop file) - always resolve ours
...
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2019-05-25 05:26:01 +02:00
Jan Grulich
c05707884c
Implement Wayland support using PipeWire and xdg-desktop-portal
...
Summary:
Adds a new framebuffer implementation, which uses xdg-desktop-portal to support remote
desktop on Wayland and uses PipeWire to deliver the screen content. So far only mouse
support is implemented, because keyboard support is missing on KWin side.
Reviewers: Kanedias, romangg
Reviewed By: Kanedias
Subscribers: asturmlechner, pino, ngraham, romangg
Differential Revision: https://phabricator.kde.org/D20402
2019-05-24 13:51:43 +02:00
Alexey Min
7624aee8e2
Do not crash on wayland, gracefully exit with error instead
...
Summary:
Sadly, XTestQueryExtension just segfaults under wayland.
Avoid it by detecting QPA used.
BUG: 406599
Test Plan:
Nice error message when running in Wayland session.
{F6833467}
Still works in X11
{F6833069}
Reviewers: aacid, kossebau, jgrulich, #kde_applications, pino, ngraham
Reviewed By: pino
Subscribers: pino, ngraham
Tags: #kde_applications
Differential Revision: https://phabricator.kde.org/D21267
2019-05-18 18:07:52 +03:00
Alexey Min
6ecb4248b8
Fix warning when compiling with Qt >= 5.10
2019-05-18 02:05:16 +03:00
l10n daemon script
61cedda6b3
GIT_SILENT made messages (after extraction)
2019-04-22 03:24:42 +02:00
Albert Astals Cid
895ec578c6
GIT_SILENT Upgrade KDE Applications version to 19.07.70.
2019-03-16 22:21:36 +01:00
l10n daemon script
aa189daffd
GIT_SILENT made messages (after extraction)
2019-03-05 03:26:27 +01:00
Friedrich W. H. Kossebau
9797ff196e
Port away from foreach
2019-03-01 07:04:49 +01:00
Friedrich W. H. Kossebau
7519e7918c
Add a dummy krfbui.rc to please kxmlgui
2019-03-01 06:54:30 +01:00
Friedrich W. H. Kossebau
6ef393ba1c
Network config page: align to top
2019-03-01 06:42:49 +01:00
Friedrich W. H. Kossebau
c47ee269f0
Use QT_USE_QSTRINGBUILDER
2019-03-01 06:26:07 +01:00
Friedrich W. H. Kossebau
a0992f7fea
Build with QT_NO_CAST_FROM_ASCII
2019-03-01 06:15:53 +01:00
Friedrich W. H. Kossebau
ef6491a5c9
Build with QT_NO_CAST_FROM_BYTEARRAY & QT_NO_CAST_TO_ASCII
2019-03-01 05:50:10 +01:00
Friedrich W. H. Kossebau
63d6314b1b
Ensure more modern Qt code
2019-03-01 05:47:41 +01:00
Friedrich W. H. Kossebau
78ed74ec1e
Move ecm_setup_version after all find_package calls
2019-03-01 05:35:23 +01:00
Friedrich W. H. Kossebau
1cf5785007
find_package(Qt5) only after find_package(ECM)
2019-03-01 05:34:51 +01:00
Friedrich W. H. Kossebau
0f506011d0
Use KF5_MIN_VERSION also for find_package(KF5)
2019-03-01 05:33:38 +01:00
Friedrich W. H. Kossebau
d5aff98912
Properly add "nodialog" option before running QCommandLineParser::process()
2019-03-01 05:31:12 +01:00
Friedrich W. H. Kossebau
d77506c4c2
Do not repeat work of KAboutData::setupCommandLine()
2019-03-01 05:24:43 +01:00