about summary refs log tree commit diff stats
path: root/src/xmpp/bookmark.c
Commit message (Expand)AuthorAgeFilesLines
* _bookmark_destroy: follow normal logicMichael Vetter2019-06-201-7/+5
* Update copyright to include 2019Michael Vetter2019-01-221-1/+1
* Move ID generation to xmpp folderMichael Vetter2018-08-301-1/+1
* Add /rooms service autocompletionJames Booth2018-02-051-0/+12
* Update copyrightJames Booth2018-01-211-1/+1
* Allow previous autocompletion with shift tabJames Booth2017-04-011-2/+2
* Update CopyrightJames Booth2017-01-281-1/+1
* Add sv_ev_bookmark_autojoinJames Booth2016-08-281-16/+1
* Rename Bookmark->jid to Bookmark->barejidJames Booth2016-08-281-19/+19
* Use hash table for bookmarksJames Booth2016-08-211-195/+128
* Use libstrophe xmpp_iq_new convenience functionJames Booth2016-08-201-4/+1
* Free ProfAccountJames Booth2016-07-251-0/+1
* Tidy headersJames Booth2016-07-241-3/+4
* Update GPL link in headersJames Booth2016-07-241-1/+1
* Add ProfIdFreeCallback to free stale id handlers on connectJames Booth2016-06-081-1/+1
* Option to bookmark room invitesJames Booth2016-05-231-0/+18
* Move connection fulljid functionJames Booth2016-05-061-1/+1
* Rename jabber_ functionsJames Booth2016-05-061-4/+4
* Renamed connection.c -> session.cJames Booth2016-05-051-1/+1
* Tidy xmpp headersJames Booth2016-05-041-2/+3
* Rename id_handler_add -> iq_id_handler_addJames Booth2016-05-021-1/+1
* Define stanza's attributes as const char*Dmitry Podgorny2016-04-271-16/+17
* Removed #AX_PREFIX_CONFIG_HJames Booth2016-03-311-3/+3
* Use one stanza handler per type (message, iq, presence)James Booth2016-03-281-48/+5
* Added basic stanza receive eooksJames Booth2016-03-271-7/+11
* Use xmpp_send_raw_string instead of xmpp_send_rawJames Booth2016-03-261-2/+2
* Added stanza send hooks for pluginsJames Booth2016-03-261-2/+20
* Merge branch 'master' into plugins-cJames Booth2016-02-141-1/+1
|\
| * Updated copyrightJames Booth2016-02-141-1/+1
* | Added C plugin code from plugins branchJames Booth2016-02-141-3/+3
|/
* Applied coding style to src/xmpp/James Booth2015-10-261-11/+11
* Check for libmesode, fall back to libstropheJames Booth2015-09-211-1/+9
* Use null check convention in bookmark.cJames Booth2015-05-041-11/+11
* Moved server_events to event/James Booth2015-04-191-1/+1
* Updated copyrightJames Booth2015-02-101-1/+1
* Simplified autocompleters and command historyJames Booth2015-01-161-1/+1
* Removed function pointersJames Booth2014-12-221-27/+15
* Removed bookmark autojoin limitJames Booth2014-11-201-26/+15
* Tidied muc moduleJames Booth2014-09-281-5/+5
* Check for NULL inside autocomplete_freeJames Booth2014-09-261-3/+1
* Removed bookmarks todoJames Booth2014-08-311-1/+0
* Added license exemption for OpenSSL to source headersJames Booth2014-08-241-0/+12
* "/bookmark add foo" crash - fixJan Hacker2014-08-171-1/+3
* Added quote param to autocomplete_completeJames Booth2014-07-091-1/+1
* Renamed generate_unique_id -> create_unique_idJames Booth2014-06-151-1/+1
* Fixed usages of get_unique_id to free resultJames Booth2014-06-151-1/+2
* Use account muc_nick when no nick for bookmarkJames Booth2014-05-231-1/+4
* Refactored bookmarks to use option parser, allow bookmarking rooms with passw...James Booth2014-05-101-39/+128
* Chat room windows now created only after successful joinJames Booth2014-04-211-1/+1
* Fixed handling of room subjectJames Booth2014-04-131-1/+0
or Ben Burwell <ben@benburwell.com> 2019-08-02 13:10:42 -0400 committer Drew DeVault <sir@cmpwn.com> 2019-08-03 10:48:47 -0400 Fix directory completion case sensitivity' href='/akspecs/aerc/commit/commands/commands.go?h=0.3.0&id=63f934ee71cdf2c96379c393566556b7c289cceb'>63f934e ^
f9d26ee ^




63f934e ^

















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146