Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix memleak in bookmark minimize | Michael Vetter | 2020-05-24 | 1 | -0/+1 |
| | | | | Introduced in 36f2569e53e67fda6023c5ec5f6a7714cbce1946 | ||||
* | Fix segfault in new bookmark feature | Michael Vetter | 2020-05-22 | 1 | -2/+2 |
| | | | | | Fix 88c36745fe3f568f09fcd4078fc760a52e826eb7 Copy paste mistake. | ||||
* | Preserve Gajims minimize flag in bookmarks | Michael Vetter | 2020-05-22 | 1 | -1/+34 |
| | | | | Implement https://github.com/profanity-im/profanity/issues/1326 | ||||
* | Add option to add bookmark name | Michael Vetter | 2020-05-22 | 1 | -6/+21 |
| | | | | | | | | `/bookmark add|update` got `name` field. By default localpart of JID is used (like before) but now we can set the name ourselves. Regards https://github.com/profanity-im/profanity/issues/697 | ||||
* | Display bookmark name | Michael Vetter | 2020-05-22 | 1 | -0/+4 |
| | | | | | | Have field in struct and display the name in `/bookmark list`. Regards https://github.com/profanity-im/profanity/issues/697 | ||||
* | Add context to autocomplete_with_func and use it for omemo trust command | Paul Fariello | 2020-01-31 | 1 | -1/+1 |
| | | | | Fix #1068 | ||||
* | Use OMEMO for offline MUC members (#1242) | Paul Fariello | 2020-01-20 | 1 | -0/+3 |
| | |||||
* | Add vim modeline | Michael Vetter | 2019-11-13 | 1 | -0/+1 |
| | |||||
* | Remove prefix from stanza id | Michael Vetter | 2019-10-17 | 1 | -1/+1 |
| | | | | | We sent `prof_prefix_uuid` as id. Where the prefix was also optional. We don't need this at all. | ||||
* | _bookmark_destroy: follow normal logic | Michael Vetter | 2019-06-20 | 1 | -7/+5 |
| | |||||
* | Update copyright to include 2019 | Michael Vetter | 2019-01-22 | 1 | -1/+1 |
| | |||||
* | Move ID generation to xmpp folder | Michael Vetter | 2018-08-30 | 1 | -1/+1 |
| | | | | | | | | | | | create_unique_id() was changed to use UUIDs instead of a counter in the last commit. Since now it depends on connection_create_uuid() which is in the xmpp subfolder the function should also be moved there. Renamed it to connection_create_stanza_id() and moved it to src/xmpp/connection.c. Discussion happened in https://github.com/boothj5/profanity/pull/1010 | ||||
* | Add /rooms service autocompletion | James Booth | 2018-02-05 | 1 | -0/+12 |
| | |||||
* | Update copyright | James Booth | 2018-01-21 | 1 | -1/+1 |
| | |||||
* | Allow previous autocompletion with shift tab | James Booth | 2017-04-01 | 1 | -2/+2 |
| | |||||
* | Update Copyright | James Booth | 2017-01-28 | 1 | -1/+1 |
| | |||||
* | Add sv_ev_bookmark_autojoin | James Booth | 2016-08-28 | 1 | -16/+1 |
| | |||||
* | Rename Bookmark->jid to Bookmark->barejid | James Booth | 2016-08-28 | 1 | -19/+19 |
| | |||||
* | Use hash table for bookmarks | James Booth | 2016-08-21 | 1 | -195/+128 |
| | |||||
* | Use libstrophe xmpp_iq_new convenience function | James Booth | 2016-08-20 | 1 | -4/+1 |
| | |||||
* | Free ProfAccount | James Booth | 2016-07-25 | 1 | -0/+1 |
| | |||||
* | Tidy headers | James Booth | 2016-07-24 | 1 | -3/+4 |
| | |||||
* | Update GPL link in headers | James Booth | 2016-07-24 | 1 | -1/+1 |
| | |||||
* | Add ProfIdFreeCallback to free stale id handlers on connect | James Booth | 2016-06-08 | 1 | -1/+1 |
| | |||||
* | Option to bookmark room invites | James Booth | 2016-05-23 | 1 | -0/+18 |
| | | | | issue #813 | ||||
* | Move connection fulljid function | James Booth | 2016-05-06 | 1 | -1/+1 |
| | |||||
* | Rename jabber_ functions | James Booth | 2016-05-06 | 1 | -4/+4 |
| | |||||
* | Renamed connection.c -> session.c | James Booth | 2016-05-05 | 1 | -1/+1 |
| | |||||
* | Tidy xmpp headers | James Booth | 2016-05-04 | 1 | -2/+3 |
| | |||||
* | Rename id_handler_add -> iq_id_handler_add | James Booth | 2016-05-02 | 1 | -1/+1 |
| | |||||
* | Define stanza's attributes as const char* | Dmitry Podgorny | 2016-04-27 | 1 | -16/+17 |
| | | | | | | | | | | | | 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. | ||||
* | Removed #AX_PREFIX_CONFIG_H | James Booth | 2016-03-31 | 1 | -3/+3 |
| | |||||
* | Use one stanza handler per type (message, iq, presence) | James Booth | 2016-03-28 | 1 | -48/+5 |
| | | | | Allows plugins to stop stanza processing | ||||
* | Added basic stanza receive eooks | James Booth | 2016-03-27 | 1 | -7/+11 |
| | |||||
* | Use xmpp_send_raw_string instead of xmpp_send_raw | James Booth | 2016-03-26 | 1 | -2/+2 |
| | |||||
* | Added stanza send hooks for plugins | James Booth | 2016-03-26 | 1 | -2/+20 |
| | |||||
* | 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 | -3/+3 |
|/ | |||||
* | Applied coding style to src/xmpp/ | James Booth | 2015-10-26 | 1 | -11/+11 |
| | |||||
* | Check for libmesode, fall back to libstrophe | James Booth | 2015-09-21 | 1 | -1/+9 |
| | |||||
* | Use null check convention in bookmark.c | James Booth | 2015-05-04 | 1 | -11/+11 |
| | |||||
* | Moved server_events to event/ | James Booth | 2015-04-19 | 1 | -1/+1 |
| | |||||
* | Updated copyright | James Booth | 2015-02-10 | 1 | -1/+1 |
| | |||||
* | Simplified autocompleters and command history | James Booth | 2015-01-16 | 1 | -1/+1 |
| | |||||
* | Removed function pointers | James Booth | 2014-12-22 | 1 | -27/+15 |
| | |||||
* | Removed bookmark autojoin limit | James Booth | 2014-11-20 | 1 | -26/+15 |
| | |||||
* | Tidied muc module | James Booth | 2014-09-28 | 1 | -5/+5 |
| | |||||
* | Check for NULL inside autocomplete_free | James Booth | 2014-09-26 | 1 | -3/+1 |
| | |||||
* | Removed bookmarks todo | James Booth | 2014-08-31 | 1 | -1/+0 |
| |