John Freed
e193bafb8c
uploadStickerPath returns String
...
also, any zip file must be in the same directory as the manifest.json
update documentation
2021-08-20 06:42:56 +02:00
John Freed
d8e5ab5f20
update doc for uploadStickerPack for dbus
2021-08-19 23:46:03 +02:00
John Freed
0691a91dad
Dbus methods isMember and isAdmin
...
create isAdmin method in parallel with isMember
extend both to have the ability to add or remove members or admins
update documentation
2021-08-19 11:19:08 +02:00
John Freed
217afd74c4
Dbus functions for groups
...
Dbus functions that take a groupId or base64GroupId as input now throw a Failure exception if the string is malformed.
group Dbus functions now return a GroupNotFound exception (instead of an empty or false result with no exception) if the group is not found
implemented new Dbus methods
+ getGroupAdminMembers
+ getGroupPendingMembers
+ getGroupRequestingMembers
+ getGroupInviteUri
updated documentation
2021-08-19 00:09:02 +02:00
John Freed
b846fbe764
update documentation
2021-08-18 11:25:30 +02:00
John Freed
c39b5450ff
implement uploadStickerPack for Dbus; fix isRegistered error
...
Note: isRegistered (and related methods) for Dbus can throw an
InvalidNumberException when the phone number is incorrectly formatted.
Previously this led to uncaught exceptions. They are now handled.
The problem is in SignalServiceAccountManager.java in the
package org.whispersystems.signalservice.api, which ignores the
first character of a proposed phone number and checks that the
rest is a legitimate int64.
updated documentation
2021-08-18 10:43:26 +02:00
John Freed
663f6f6e73
implement Dbus methods
...
sendContacts
sendSyncRequest
trust
update documentation
2021-08-18 07:44:44 +02:00
John Freed
21db752d28
implement sendTyping for Dbus
...
update documentation
2021-08-17 22:10:32 +02:00
John Freed
545eec12d8
Dbus methods
...
implement setPin and removePin
implement unregister (which kills the daemon upon success)
updateProfile now implements given name and family name (as well as the former method with just a name)
update documentation
2021-08-17 19:37:18 +02:00
John Freed
da1bb918bf
implement Dbus addDevice and removeDevice methods
...
update documentation
2021-08-17 16:12:28 +02:00
John Freed
bc3f8803dc
more debug message cleanup
2021-08-17 11:03:14 +02:00
John Freed
2e7f4c7085
implement Dbus commands
...
* String link()
* String link(String newDeviceName)
* void register(String number, boolean voiceVerification)
* void registerWithCaptcha(String number, boolean voiceVerification, String captcha)
* void verify(String number, String verificationCode)
* void verifyWithPin(String number, String verificationCode, String pin)
make dataPath and serviceEnvironment public from App class
make USER_AGENT ("signal-cli") public from BaseConfig class
add timeout error handling to finishDeviceLink method
update DBus documentation
2021-08-15 18:09:06 +02:00
John Freed
661d78e4a8
update Dbus documentation
2021-08-15 10:01:22 +02:00
John Freed
76406367ea
DBus methods
...
implement expanded updateGroup
allow group commands to use Base64 strings as group identifiers
* setGroupBlocked
* getGroupName
* getGroupMembers
* sendGroupMessage
* sendGroupMessageReaction
* updateGroup
update AvatarStore to make some methods public or static
reuse UpdateGroupCommand code
update DBus documentation
2021-08-15 09:41:29 +02:00
AsamK
6c00054407
Replace --group parameter with --group-id
2021-08-10 14:34:22 +02:00
AsamK
641dc7577c
Rename --endsession parameter to --end-session
2021-08-09 17:42:34 +02:00
AsamK
f449a242e4
Remove fallbacks to deprecated data paths
2021-08-08 15:52:54 +02:00
AsamK
f40c351662
Add optional content type to json sticker pack manifest
2021-06-13 14:32:58 +02:00
AsamK
7e223dc228
Add sendTyping command
...
Fixes #602
2021-06-12 17:57:15 +02:00
AsamK
87406e2cdb
Implement --delete flag for quitGroup
...
Closes #638
2021-06-12 11:33:19 +02:00
AsamK
b8a0901fbd
Improve command line help
...
Fixes #450
2021-05-20 20:54:11 +02:00
AsamK
2016cf2a5f
Fix camel case device-id flag
2021-05-16 16:11:55 +02:00
AsamK
5c3fc44d00
Update documentation
2021-05-15 18:53:00 +02:00
AsamK
fa44f8b6a8
Add sendSyncRequest to man page
2021-05-11 22:02:36 +02:00
AsamK
b7f05a1c80
Extend updateProfile command to set family name
2021-05-05 19:32:52 +02:00
AsamK
4f578c2645
Create an initial empty profile after registration
2021-05-03 18:43:45 +02:00
AsamK
0091c1cf26
Add --delete-account argument to completely delete an account
2021-05-03 18:43:45 +02:00
Adaptive Garage
05abb3f9f6
Send remote delete ( #593 )
...
* Implementation of remoteDelete command, iteration 1
* Implementation of remoteDelete command, iteration 2
* Implementation of remoteDelete command, iteration 3
* Implementation of remoteDelete command, iteration 4
* Implementation of remoteDelete command, iteration 5
* Implementation of remoteDelete command, iteration 6
* Renaming dbus methods remoteGroupDelete -> sendGroupRemoteDeleteMessage, remoteDelete -> sendRemoteDeleteMessage
2021-04-05 19:49:45 +02:00
Adaptive Garage
2ad18342a8
Dbus sendreaction doc ( #591 )
...
* Documentation of dbus methods sendGroupMessageReaction, sendMessageReaction
* Documentation of dbus methods sendGroupMessageReaction, sendMessageReaction. Fix 1.
2021-04-05 17:00:20 +02:00
exquo
7832afd819
Improve DBus man page ( #589 )
...
* Improve DBus man page
- Expand synopsis
- Add examples
- Fix typos
* Update to DBus man page
2021-04-03 21:22:05 +02:00
Adimarantis
caf16231aa
Adding Dbus manpage ( #564 )
...
* some small dbus return code fixes
* Added DBus manpage
* changed getDisplayName behaviour
* reverted change in manager
* some small dbus return code fixes
* Added DBus manpage
* changed getDisplayName behaviour
* reverted change in manager
* Dbus manpage
2021-04-02 09:19:07 +02:00
AsamK
06404667a1
Use exit 4 when sending a single recipient message fails due to untrusted identity key
...
Fixes #88
2021-01-16 15:38:38 +01:00
AsamK
e1134d832a
Send self messages as normal messages, new flag --note-to-self for sync message
...
Fixes #373
2021-01-16 11:56:41 +01:00
AsamK
ca86c421eb
Allow calling signal-cli without -u flag
...
For daemon command all local users will be exposed as dbus objects
If only one local user exists, all other commands will use that user,
otherwise a user has to be specified.
2021-01-16 09:00:03 +01:00
AsamK
e6ea5d55f8
Update man page
2021-01-15 22:32:13 +01:00
AsamK
5938d54784
Add --verbose flag to show extended logging
...
Fixes #379
2021-01-15 11:43:53 +01:00
AsamK
5760a53831
Update man page
2021-01-14 22:19:54 +01:00
AsamK
f0834c7a47
Reformat man doc and clarify help text
2021-01-13 17:04:58 +01:00
Atomic-Bean
90f5cd79c9
Added JSON output to listGroups and allowed json to be activated with -j ( #401 )
...
* Added json output to listGroups and allowed json to be activated with -j
* Renamed classes
* Added AsamK's suggestions
* Removed isRegisted check since that is causing a conflict with upstream
* Fixed an issue in the help message for listGroupsCommand
* Re-enabled --json for receive and getUserStatuses commands as deprecated
* Added better depricated warning message and clarified some java doc stuff
2021-01-13 16:51:31 +01:00
Atomic-Bean
1c5de83370
Command to check if number is registered ( #391 )
...
* Added the isRegistered command
* Minor fixes
* Corrected description
* Added AsamK's suggestions
Fixes #178
2021-01-03 21:02:34 +01:00
AsamK
445e8592c4
Implement join group via invitation link
2020-12-21 21:21:40 +01:00
AsamK
17608ce522
Implement accepting and declining group invitations
2020-12-21 15:23:50 +01:00
AsamK
c3e1d4fc75
Add possibility to pass a captcha token to register command
...
Fixes #251
2020-11-22 11:03:14 +01:00
AsamK
e6c1e03e21
Update dependencies
...
updateProfile can now only update both name and avatar at the same time,
as the upstream API has changed.
2020-08-09 13:00:29 +02:00
Elburz Sorkhabi
23282fc7e8
add further clarification to addDevice docs
...
I added a short note mentioning to add quotation marks around the full URI, otherwise the user receives "Invalid device URI" errors from Java.
2020-06-22 18:32:50 +02:00
exquo
f324a43298
Remove references to the native unix-java library
...
Since version 0.6.8 signal-cli uses hypfvieh dbus-java, so installing the packages libunixsocket-java (Debian), libmatthew-java (Fedora) or libmatthew-unix-java (ArchLinux) is not necessary.
2020-06-02 17:55:55 +02:00
Matúš Košút
b382a4260b
Contact config - message expiration time ( #308 )
...
Co-authored-by: Matus Kosut <matus.kosut@ntnu.no>
2020-05-16 22:55:53 +02:00
AsamK
a486b752e8
Improve asciidoc formatting of the man page
2020-05-06 09:24:54 +02:00
AsamK
e04c45766d
Rename fingerprint to safety number
...
Fixes #92
2020-04-03 14:27:18 +02:00
AsamK
8a44b37774
Add documentation for sticker upload
2020-03-23 14:49:21 +01:00