Multi-platform app that allows your devices to communicate
Find a file
Nicolas Fella 7e7aa6df3f Fix information leak via /tmp
Summary: BUG: 383144

Reviewers: #kde_connect, apol, albertvaka

Reviewed By: #kde_connect, apol, albertvaka

Subscribers: thomasp, apol, #kde_connect, albertvaka

Tags: #kde_connect

Differential Revision: https://phabricator.kde.org/D7146
2017-12-29 21:19:03 +01:00
app SVN_SILENT made messages (.desktop file) - always resolve ours 2017-09-19 04:58:52 +02:00
cli Fix kdeconnect-cli device list 2017-12-03 19:29:05 +01:00
cmake Move the generation of dbus interfaces into interfaces/ 2015-06-18 19:06:14 +02:00
core Add support for new Android 2.3 (API 9+) cipher 2017-12-22 13:27:04 +01:00
daemon Delay kdeconnectd autostart phase 2017-11-29 11:49:57 +00:00
doc Reverted docs version as we didn't change them. 2016-07-22 13:13:30 +02:00
fileitemactionplugin SVN_SILENT made messages (.desktop file) - always resolve ours 2017-09-19 04:58:52 +02:00
icon Remove dash in icon 2016-11-28 16:27:34 +01:00
indicator SVN_SILENT made messages (.desktop file) - always resolve ours 2017-11-27 04:56:48 +01:00
interfaces Fix "error activiting kdeconnectd" for kdeconnect-cli 2017-12-03 19:20:57 +01:00
kcm SVN_SILENT made messages (.desktop file) - always resolve ours 2017-09-19 04:58:52 +02:00
kcmplugin Make member variable names, & placement and * placement more coherent 2017-09-03 21:45:08 +02:00
kio Make member variable names, & placement and * placement more coherent 2017-09-03 21:45:08 +02:00
plasmoid SVN_SILENT made messages (.desktop file) - always resolve ours 2017-09-19 04:58:52 +02:00
plugins Fix information leak via /tmp 2017-12-29 21:19:03 +01:00
tests Merge branch 'master' into 1.x 2017-09-03 22:05:54 +02:00
urlhandler SVN_SILENT made messages (.desktop file) - always resolve ours 2017-11-28 05:04:29 +01:00
.arcconfig Add arcconfig file, for phabricator integration 2017-05-25 00:28:11 +02:00
.gitignore Notification icons from Android are now displayed 2017-04-13 21:32:03 +02:00
.reviewboardrc Submit .reviewboardrc file 2014-06-18 02:42:07 +02:00
CMakeLists.txt Bump version to release 2017-09-18 20:13:54 +02:00
CONTRIBUTING.md Add CONTRIBUTING.md 2016-06-10 23:01:34 +02:00
COPYING add missing licence file 2013-09-10 15:18:32 +01:00
kdeconnect-version.h.in Version number is now set in a single place 2015-02-04 23:52:07 -08:00
KDEConnectMacros.cmake Use the macro in ECM to install kdeconnect plugins 2016-06-01 05:16:40 +02:00
org.kde.kdeconnect.kcm.appdata.xml GIT_SILENT made messages (after extraction) 2017-12-11 02:56:38 +01:00
README.md Updated README 2017-09-02 11:58:29 +02:00

KDE Connect - desktop app

KDE Connect is a multi-platform app that allows your devices to communicate (eg: your phone and your computer).

(Some) Features

  • Shared clipboard: copy and paste between your phone and your computer (or any other device).
  • Notification sync: Read and reply to your Android notifications from the desktop.
  • Share files and URLs instantly from one device to another.
  • Multimedia remote control: Use your phone as a remote for Linux media players.
  • Virtual touchpad: Use your phone screen as your computer's touchpad and keyboard.

All this without wires, over the already existing WiFi network, and using TLS encryption.

Supported platforms

How to install

This explains how to install KDE Connect on your computer. You will also need to install it in your phone and pair both devices in the app if you want it to be any useful.

On Linux

Look in your distribution repo for a package called kdeconnect-kde, kdeconnect-plasma, or just kdeconnect. If it's not there and you know how to build software from sources, you just found the repo :)

If you are not using Plasma 5, you might want to install a user interface for your platform. The indicator-kdeconnect project provides an appindicator icon plus integration with Nautilus.

On Mac or Windows

Platforms other than Linux are not officially supported, but it should be possible to run KDE Connect there. You can compile KDE Connect for Windows using Craft and it works except for some plugins. I haven't tried on Mac. Contributions welcome!

On BSD

It should work, but no promises :)

How does it work?

KDE Connect consists of an UI-agnostic "core" library which exposes a series of DBus interfaces, and several UI components that consume these DBus interfaces. This way, new UI components can be added to integrate better with specific platforms or desktops, without having to reimplement the protocol or any of the internals. The core KDE Connect library is also divided in 4 big blocks:

  • LinkProviders: Are in charge of discovering other KDE Connect-enabled devices in the network and establishing a Link to them.
  • Devices: Represent a remote device, abstracting the specific Link that is being used to reach it.
  • NetworkPackets: JSON-serializable and self-contained pieces of information to be sent by the plugins between devices.
  • Plugins: Independent pieces of code which implement a specific feature. Plugins will use NetworkPackets to exchange information through the network with other Plugins on a remote Device.

The basic structure of a NetworkPacket is the following:

{
  "id": 123456789,
  "type": "com.example.myplugin",
  "body": {  },
  "version": 5
}

The content of the "body" section is defined by each Plugin. Hence, only the emisor and receiver plugins of a given packet type need agree on the contents of the body.

NetworkPackets can also have binary data attached that can't be serialized to JSON. In this case, two new fields will be added:

"payloadSize": The size of the file, or -1 if it is a stream without known size.
"payloadTransferInfo": Another JSON object where the specific Link can add information so the Link in the remote end can establish a connection and receive the payload (eg: IP and port in a local network). It's up to the Link implementation to decide how to use this field.

Contributing

To contribute patches, use KDE Connect's Phabricator. There you can also find a task list with stuff to do, and links to other relevant resources. It is a good idea to also subscribe to the KDE Connect mailing list.

License

GNU GPL v2 and GNU GPL v3

If you are reading this from Github, you should know that this is just a mirror of the KDE Project repo.