about summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Refactored bookmarks to use option parser, allow bookmarking rooms with ↵James Booth2014-05-107-94/+202
| | | | passwords
* Fixed potential segfaults on autocompleteJames Booth2014-05-081-0/+4
|
* Added help for shared secret and question answer otr verificationJames Booth2014-05-071-4/+7
|
* Added question answer messages for libotr 4.0.0James Booth2014-05-071-10/+18
|
* Added UI messages for smp question/answer resultJames Booth2014-05-073-4/+41
|
* Merge branch 'master' into otrsmpJames Booth2014-05-075-114/+173
|\
| * Refactroed self presence checks, handle null stanzasJames Booth2014-05-062-108/+73
| | | | | | | | Issue #341
| * Added null check for presence error stanza namespace elementJames Booth2014-05-051-1/+4
| | | | | | | | Issue #341
| * Handle room subject and broadcasts sent before roster receivedJames Booth2014-05-053-5/+96
| | | | | | | | Issue #341
* | Merge branch 'master' into otrsmpJames Booth2014-05-024-15/+22
|\| | | | | | | | | Conflicts: install-all.sh
| * Changed to use gnutls instead of openssl for sha1 hashingJames Booth2014-05-014-15/+22
| |
* | Added question answer authentication (libotr 3.2.x)James Booth2014-04-307-9/+118
| |
* | Added ui functions for otr authenticationJames Booth2014-04-303-4/+37
| |
* | Removed debugJames Booth2014-04-302-62/+8
| |
* | Attempt at shared secret authentication for libotr 4.0.0James Booth2014-04-286-24/+130
| | | | | | | | Bug exists where second attempt always gets stuck
* | Added SMP secret libotr 4.0.0 handlersJames Booth2014-04-273-0/+104
| |
* | Fixed error on SMP authentication failJames Booth2014-04-271-1/+1
| |
* | Added SMP secret authentication success messageJames Booth2014-04-275-1/+39
| |
* | Tidied UI messages for SMP shared secret authenticationJames Booth2014-04-274-42/+16
| |
* | Added SMP ui eventsJames Booth2014-04-263-6/+92
| |
* | Handle SMP secret responseJames Booth2014-04-265-10/+30
| |
* | Send SMP init message with /otr secretJames Booth2014-04-266-2/+98
|/
* Fixed cppcheck warningsJames Booth2014-04-2626-206/+41
|
* Added open xml consoleJames Booth2014-04-251-0/+11
|
* Fixed /wins swap helpJames Booth2014-04-241-3/+3
|
* Allow /wins swap to move to empty positionJames Booth2014-04-243-2/+23
|
* Added command /wins swapJames Booth2014-04-246-6/+66
|
* Added -a (--account) option to man pageJames Booth2014-04-231-1/+1
|
* Rejoin private rooms after reconnectingJames Booth2014-04-233-1/+34
|
* Tidied jabber_process_eventsJames Booth2014-04-231-14/+20
|
* Merge remote-tracking branch 'lucian/master'James Booth2014-04-231-5/+10
|\ | | | | | | | | Conflicts: src/server_events.c
| * Bugfix: Because whitespace was removed, last check OTR always, didn't work, ↵lightb2014-04-221-5/+6
| | | | | | | | now it works.
| * Added new functionality to OTR always policylightb2014-04-221-1/+7
| | | | | | | | | | | | If policy is set to always, and unencrypted message is received it will try to start an otr session. Note: Fully tested with pidgin, is now working (opportunistic and always)
* | Added /otr policy autocompletionJames Booth2014-04-231-0/+14
| |
* | Merge remote-tracking branch 'lucian/master'James Booth2014-04-228-10/+83
|\|
| * Strip whitespace from otr tagged message for proper display.lightb2014-04-221-1/+8
| | | | | | | | | | Will handle BASE + OTRV1TAG/OTRV2TAG or BASE + OTRV1TAG + OTRV2TAG or BASE + OTRV2TAG + OTRV1TAG
| * Small modification, should check for whitespace pattern even if policy is ↵lightb2014-04-221-6/+7
| | | | | | | | always.
| * Added OTR opportunistic pattern intercept.lightb2014-04-221-0/+12
| | | | | | | | | | | | | | | | When a message is received, OTRL_MESSAGE_TAG_BASE + OTRL_MESSAGE_TAG_V1 or OTRL_MESSAGE_TAG_V2 is searched for, if it is, the client attempts to start an OTR session. Tested between profanity clients: WORKED Tested between profanity and pidgin: NOT WORKING (not sure if pidgin checks for the whitespace)
| * Modified otrlibv4 and otrlibv4 to add informative message when starting OTR ↵lightb2014-04-222-2/+2
| | | | | | | | conversation.
| * Compilation v4 fixlightb2014-04-212-4/+0
| |
| * Added opportunistic send functionality to cmd_msglightb2014-04-213-4/+23
| | | | | | | | | | | | | | | | If policy is set to 'opportunistic' then when the user executes cmd_msg it will append the otr whitespace tag to the message The other client should start AKE once it receives the message. TODO: Analyze incoming messages for whitespace tag
| * Added some otr policy functionality, if policy is set to "always"lightb2014-04-193-1/+8
| | | | | | | | | | | | if otr_is_secure fails, the message will not be sent. Changed both cmd_msg and cmd_execute_default
| * Added /otr policy to commands (still need to add autocomplete stuff?)lightb2014-04-193-2/+21
| |
| * Added PREF_OTR_POLICY to preferences.c -> key -> otr.policylightb2014-04-194-2/+15
| | | | | | | | | | Added default value "manual" to PREF_OTR_POLICy -> preferences.c Modified help string to reflect otr_policy, started checks on cmd_otr
| * Added PREF_OTR_POLICY - should be default global policy and set to MANUALlightb2014-04-191-1/+2
| |
* | Chat room windows now created only after successful joinJames Booth2014-04-2110-31/+79
| |
* | Store password with roomJames Booth2014-04-203-3/+10
|/
* Show message in console when contact starts OTR sessionJames Booth2014-04-192-1/+12
|
* Open new window when otr session started by contactJames Booth2014-04-191-14/+19
| | | | fixes #331
* Handle subscription on otr message sendsJames Booth2014-04-181-0/+8
|