Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Declare counter var inside loop | Michael Vetter | 2020-11-09 | 1 | -2/+1 |
| | | | | We require c99/gnu99 anyways. | ||||
* | Apply coding style | Michael Vetter | 2020-07-07 | 1 | -63/+63 |
| | |||||
* | Revert "Apply coding style" | Michael Vetter | 2020-07-07 | 1 | -69/+69 |
| | | | | | | This reverts commit 9b55f2dec0ea27a9ce4856e303425e12f866cea2. Sorting the includes creates some problems. | ||||
* | Apply coding style | Michael Vetter | 2020-07-07 | 1 | -69/+69 |
| | | | | Regards https://github.com/profanity-im/profanity/issues/1396 | ||||
* | xep-0308: create setting to toggle lmc | Michael Vetter | 2020-02-10 | 1 | -2/+7 |
| | | | | and print settings if only `/correction` is run. | ||||
* | xep-0308: Initial support for incoming LMC | Michael Vetter | 2020-02-10 | 1 | -0/+2 |
| | |||||
* | Add vim modeline | Michael Vetter | 2019-11-13 | 1 | -0/+1 |
| | |||||
* | Add XEP-0359 to capabilities | Michael Vetter | 2019-10-18 | 1 | -0/+1 |
| | | | | | | | | | | | | | We implement </origin-id> from [XEP-0359](https://xmpp.org/extensions/xep-0359.html). We already had this implemented for OMEMO. And now use it to check whether MUC messages were sent from us (https://github.com/profanity-im/profanity/issues/1201). We don't implement </stanza-id> yet, but probably need to do so for MAM. Anyways let's flag this as implementing the XEP. Fix https://github.com/profanity-im/profanity/issues/1207 | ||||
* | Update copyright to include 2019 | Michael Vetter | 2019-01-22 | 1 | -1/+1 |
| | |||||
* | Update copyright | James Booth | 2018-01-21 | 1 | -1/+1 |
| | |||||
* | Update Copyright | James Booth | 2017-01-28 | 1 | -1/+1 |
| | |||||
* | Remove status from cl_ev_presence_send | James Booth | 2017-01-15 | 1 | -2/+2 |
| | | | | fixes #888 | ||||
* | Use caps_lookup when checking for feature | James Booth | 2016-09-25 | 1 | -2/+1 |
| | |||||
* | Send receipt request only when receiver supports feature | James Booth | 2016-08-18 | 1 | -0/+18 |
| | | | | issue #829 | ||||
* | Only include lastactivity feature in disco responses when enabled | James Booth | 2016-08-18 | 1 | -2/+3 |
| | |||||
* | Only include receipts feature in disco responses when enabled | James Booth | 2016-08-18 | 1 | -1/+41 |
| | | | | issue #829 | ||||
* | Use hashtable to store profanity disco features | James Booth | 2016-08-17 | 1 | -14/+16 |
| | |||||
* | Copy feature strings on caps_get_features | James Booth | 2016-08-17 | 1 | -2/+4 |
| | |||||
* | Add caps_create | James Booth | 2016-08-14 | 1 | -70/+82 |
| | |||||
* | Move caps_create -> stanza_create_caps_from_query_element | James Booth | 2016-08-14 | 1 | -135/+0 |
| | |||||
* | Move caps_create_sha1_str -> stanza_create_caps_sha1_from_query | James Booth | 2016-08-14 | 1 | -122/+21 |
| | |||||
* | Move caps static functions | James Booth | 2016-08-13 | 1 | -59/+59 |
| | |||||
* | Rename caps_contains -> caps_cache_contains | James Booth | 2016-08-13 | 1 | -1/+1 |
| | |||||
* | Move caps_create_query_response_stanza -> stanza_create_caps_query_element | James Booth | 2016-08-13 | 1 | -57/+22 |
| | |||||
* | Free DiscoIdentity and SoftwareVersion | James Booth | 2016-08-13 | 1 | -0/+2 |
| | |||||
* | Use SoftwareVersion in EntityCapabilities | James Booth | 2016-08-13 | 1 | -58/+51 |
| | |||||
* | Use DiscoIdentity in EntityCapabilities | James Booth | 2016-08-13 | 1 | -65/+77 |
| | |||||
* | Rename Capabilties -> EntityCapabilities | James Booth | 2016-08-13 | 1 | -21/+21 |
| | |||||
* | Reduce variable scope in caps_create_sha1_str | James Booth | 2016-08-13 | 1 | -15/+8 |
| | |||||
* | Use list for profanity service discovery features | James Booth | 2016-08-12 | 1 | -64/+27 |
| | |||||
* | Remove disco features added by plugins on unload | James Booth | 2016-08-11 | 1 | -0/+1 |
| | |||||
* | Move all filepath handling to files.c | James Booth | 2016-07-24 | 1 | -18/+5 |
| | |||||
* | Move xgd functions | James Booth | 2016-07-24 | 1 | -1/+1 |
| | |||||
* | Add config/files.c | James Booth | 2016-07-24 | 1 | -0/+1 |
| | |||||
* | Tidy headers | James Booth | 2016-07-24 | 1 | -1/+2 |
| | |||||
* | Update GPL link in headers | James Booth | 2016-07-24 | 1 | -1/+1 |
| | |||||
* | capabilities: use free instead of g_free | James Booth | 2016-07-18 | 1 | -2/+2 |
| | |||||
* | Merge remote-tracking branch 'pasis/const-char' | James Booth | 2016-05-01 | 1 | -10/+10 |
|\ | |||||
| * | Define stanza's attributes as const char* | Dmitry Podgorny | 2016-04-27 | 1 | -10/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | In most get-like funcitons libstrophe returns pointer to a string that resides in an internal structure (e.g. xmpp_stanza_t). Hence, Profanity must not change such strings. Define respective variables as 'const char*' to reduce a chance of error and conform future libstrophe's interface. This patch mostly replaces 'char *' with 'const char*', but also fixes two memory leaks after stanza_get_reason(). Add comment within stanza_get_reason() to fix conflict with different allocator types. | ||||
* | | Plugins: Added prof_disco_add_feature() | James Booth | 2016-04-30 | 1 | -0/+22 |
|/ | |||||
* | Removed #AX_PREFIX_CONFIG_H | James Booth | 2016-03-31 | 1 | -7/+7 |
| | |||||
* | Merge branch 'master' into plugins-c | James Booth | 2016-02-14 | 1 | -1/+1 |
|\ | | | | | | | | | | | Conflicts: src/main.c src/ui/console.c | ||||
| * | Updated copyright | James Booth | 2016-02-14 | 1 | -1/+1 |
| | | |||||
* | | Added C plugin code from plugins branch | James Booth | 2016-02-14 | 1 | -7/+7 |
|/ | |||||
* | Applied coding style to src/xmpp/ | James Booth | 2015-10-26 | 1 | -21/+21 |
| | |||||
* | Added jabber:iq:last to capabilities | James Booth | 2015-09-29 | 1 | -2/+8 |
| | |||||
* | Check for libmesode, fall back to libstrophe | James Booth | 2015-09-21 | 1 | -1/+7 |
| | |||||
* | Added conference and receipts features to caps query response | James Booth | 2015-09-09 | 1 | -0/+12 |
| | |||||
* | Use null check convention in capabilities.c | James Booth | 2015-05-04 | 1 | -15/+15 |
| | |||||
* | Updated copyright | James Booth | 2015-02-10 | 1 | -1/+1 |
| |