Aleix Pol
3caf5e7908
Move some find_package dependencies to the children directories as agreed
2015-04-10 17:48:48 +02:00
Aleix Pol
48cb087ec8
Remove unneeded KService include
2015-04-10 17:47:54 +02:00
l10n daemon script
aa91c6bbd6
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"
2015-04-10 10:24:31 +00:00
David Rosca
b71b39761d
KCM: Use currentChanged signal instead of clicked in deviceList
...
Using currentChanged signal it is now possible to select devices
with keyboard.
It also no longer refreshes plugin info when clicking on already
selected device.
REVIEW:123308
2015-04-09 17:47:01 +02:00
Ashish Bansal
c8eb5e3074
Changed KF5 5.8 to 5.9
2015-04-09 16:22:56 +05:30
l10n daemon script
8349588c77
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"
2015-04-06 09:54:12 +00:00
Albert Vaca
07773b8141
disconnected is specific to Sockets, abouTtoClose is generic to IODevice
2015-04-04 19:04:11 -07:00
Albert Vaca
fbbaa854b2
Const
2015-04-04 19:03:24 -07:00
Albert Vaca
890e54cd4b
Removed notification because KIO already provides one.
2015-04-04 17:20:51 -07:00
Albert Vaca
dacaee6629
Fixed daemon sending lots of identity packets at startup
...
The way we were detecting the active network interfaces caused to detect
all of them at the application startup.
2015-04-04 16:32:15 -07:00
Albert Vaca
6c6f2b1a03
Fixed uninitialized members
2015-04-04 10:17:08 -07:00
Albert Vaca Cintora
70e3aec278
Fixed potential array out of bounds crash
2015-04-04 10:17:08 -07:00
Lasse Liehu
f9d1584dd8
Fix translation domain to match the generated pot file
...
In Messages.sh the name was kdeconnect-kded.pot.
2015-04-04 20:10:19 +03:00
l10n daemon script
8e729f3ab2
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"
2015-04-04 11:03:11 +00:00
l10n daemon script
ff9d6b336b
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"
2015-04-03 10:36:58 +00:00
Aleix Pol
9379cc34f7
Check if file exists or not, and then call suggestName.
...
KIO::suggestName does not checks if file with passed name exists or not. So, we need to check it
REVIEW: 123225
2015-04-02 14:48:50 +02:00
Aleix Pol
c9700de391
cleanup
...
Don't store into a const-reference
Fix typo
2015-04-02 00:02:09 +02:00
Aleix Pol
90f5a221fb
Make sure we're not automatically casting QString directly into QUrl
...
Otherwise we often turn paths into URLs, a fix I pushed previously today
and the ones I detected when adding -DQT_NO_URL_CAST_FROM_STRING.
CCMAIL: kdeconnect@kde.org
2015-04-01 23:40:29 +02:00
Aleix Pol
9ab7e2356e
Use QMetaObject for introspecting a QObject
...
It will be faster and will provide better error messages.
REVIEW: 123214
2015-04-01 23:38:32 +02:00
Aleix Pol
80d77fa9b6
Fix crash when incoming FileTransfer
...
Otherwise qobject2qvairant complains that a property is missing.
REVIEW: 123214
2015-04-01 23:37:25 +02:00
Aleix Pol
15f87cc46d
Port to KIO::suggestName
...
Removes the duplicated code.
REVIEW: 123215
2015-04-01 23:32:35 +02:00
Aleix Pol
491b1ed25b
Don't treat local paths as Url's
...
It could have been fixed by changing QUrl(dir) into QUrl::fromLocalFile(dir)
but this way we get to have a non-local destinationDir.
CCMAIL: bansal.ashish096@gmail.com
2015-04-01 16:16:03 +02:00
Ashish Bansal
5322bf45cb
Show Transfer failed instead of Transfer finished when it fails.
...
REVIEW: 123199
2015-03-31 20:05:58 -07:00
l10n daemon script
cda092d2bb
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"
2015-03-31 13:16:15 +00:00
l10n daemon script
92cd693566
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"
2015-03-29 09:58:52 +00:00
l10n daemon script
98bb1ee564
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"
2015-03-27 09:50:58 +00:00
l10n daemon script
2cb090d2c9
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"
2015-03-26 10:12:56 +00:00
Yuri Chornoivan
0452839893
Add missing spaces
2015-03-25 19:46:29 +02:00
l10n daemon script
08eaaf11e1
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"
2015-03-25 09:09:47 +00:00
Aleix Pol
8f777040f7
Remove KNotifications dependency from libkdeconnectcore
...
Moves the implementation into the actual daemon. This opens the
possibility for different ways to expose these notifications depending on
where the libkdeconnect will be deployed.
REVIEW: 123076
2015-03-24 12:26:37 +01:00
Albert Vaca
b5420048f9
Fixed warning
2015-03-23 20:44:18 -07:00
Albert Vaca
a77a3dc0d5
Fixed broken compilation :/
...
BUG: 345460
2015-03-23 20:44:09 -07:00
Harald Sitter
85782aaba4
do not install .so symlink for private libraries
...
distributions don't like it
REVIEW: 123112
2015-03-23 15:35:54 +01:00
Albert Vaca
f237a659ec
Added a link to the Android app from the KCM
2015-03-23 00:39:36 -07:00
Albert Vaca
60d85932db
Sort devices alphabetically in KCM
2015-03-22 23:08:37 -07:00
Albert Vaca
b38939fce8
Renamed "touchpad" plugin to "virtual input"
2015-03-22 22:08:30 -07:00
l10n daemon script
d1d2677746
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"
2015-03-23 04:18:37 +00:00
Albert Vaca
a5e5b10d9a
Code styling
2015-03-21 23:12:04 -07:00
Albert Vaca
a649bb5668
Added some error messages when ports are not available
2015-03-21 23:11:50 -07:00
Albert Vaca
4477ff29d9
Fixed Dolphin's extension
...
It was not working because it used the model (that is now async) instead
of dbus interfaces.
CCMAIL: aleixpol@kde.org
2015-03-21 22:50:00 -07:00
Albert Vaca
e20c3c907d
Fixed config memory leak.
2015-03-21 22:21:34 -07:00
l10n daemon script
c66fe08382
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"
2015-03-22 04:16:27 +00:00
l10n daemon script
4060e048f5
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"
2015-03-21 04:21:58 +00:00
Yuri Chornoivan
1ee846231d
Fix typo
2015-03-20 10:07:34 +02:00
l10n daemon script
f8ba80c7f3
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"
2015-03-20 04:31:37 +00:00
Aleix Pol
ccf03f16d1
Merge branch 'frameworks' to master
...
The last version using qt/kde4 was moved into the kde4 branch.
CCMAIL: kdeconnect@kde.org
2015-03-19 17:23:27 +01:00
Aleix Pol
c7cee37330
Port away from KServiceTrader
...
Uses KPluginLoader+KPluginMetadata instead.
Describes plugins in json instead of desktop files. These desktop files are
then embedded into the .so file. All the plugins will be in a kdeconnect/
directory, and those will be the ones to look for.
Note it doesn't drop the KService dependency as KIOCore is a KDE Connect
dependency as well.
REVIEW: 123042
2015-03-19 16:36:53 +01:00
Heiko Becker
d17c4419bd
testsocketlinereader: USE QTEST_GUILESS_MAIN
...
This patch allows running the tests without a display server.
REVIEW: 122991
2015-03-17 18:37:59 +01:00
Ashish Bansal
6b4d5be618
Used QSettings instead of KConfig in KdeConnectSettings
...
REVIEW: 122936
2015-03-15 19:31:01 -07:00
Albert Vaca
654ee39b37
Fixed bug when pairing fails if initiated by the desktop
...
If the phone thinks that it's already paired with the computer when
receiving a pairing request, it will answer stuff back that will cause
the desktop to abort the pairing process.
2015-03-15 19:31:01 -07:00