Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
KDE Connect
Commits
469e1859
Commit
469e1859
authored
Dec 02, 2020
by
Florian Bruhin
Browse files
cli: Make it clearer that --share can share URLs
parent
9082ed46
Pipeline
#42766
passed with stage
in 5 minutes and 40 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
cli/kdeconnect-cli.cpp
View file @
469e1859
...
...
@@ -47,7 +47,7 @@ int main(int argc, char** argv)
parser
.
addOption
(
QCommandLineOption
(
QStringLiteral
(
"unpair"
),
i18n
(
"Stop pairing to a said device"
)));
parser
.
addOption
(
QCommandLineOption
(
QStringLiteral
(
"ping"
),
i18n
(
"Sends a ping to said device"
)));
parser
.
addOption
(
QCommandLineOption
(
QStringLiteral
(
"ping-msg"
),
i18n
(
"Same as ping but you can set the message to display"
),
i18n
(
"message"
)));
parser
.
addOption
(
QCommandLineOption
(
QStringLiteral
(
"share"
),
i18n
(
"Share a file to a said device"
),
QStringLiteral
(
"path"
)));
parser
.
addOption
(
QCommandLineOption
(
QStringLiteral
(
"share"
),
i18n
(
"Share a file
/URL
to a said device"
),
QStringLiteral
(
"path
or URL
"
)));
parser
.
addOption
(
QCommandLineOption
(
QStringLiteral
(
"share-text"
),
i18n
(
"Share text to a said device"
),
QStringLiteral
(
"text"
)));
parser
.
addOption
(
QCommandLineOption
(
QStringLiteral
(
"list-notifications"
),
i18n
(
"Display the notifications on a said device"
)));
parser
.
addOption
(
QCommandLineOption
(
QStringLiteral
(
"lock"
),
i18n
(
"Lock the specified device"
)));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment