about summary refs log tree commit diff stats
path: root/src/plugins
Commit message (Expand)AuthorAgeFilesLines
* Plugins: Added on_room_history_messageJames Booth2016-04-086-0/+69
* Plugins: Added completer_clearJames Booth2016-04-078-0/+45
* Plugins: Added on_room_win_focusJames Booth2016-04-076-0/+52
* Plugins: Added on_chat_win_focusJames Booth2016-04-076-0/+56
* Plugins: Added completer_removeJames Booth2016-04-078-0/+60
* Plugins: Renamed register_ac->completer_addJames Booth2016-04-076-9/+10
* Removed #AX_PREFIX_CONFIG_HJames Booth2016-03-311-12/+12
* Added missing include in callbacks.cJames Booth2016-03-311-0/+1
* Added plugins presence hooksJames Booth2016-03-306-253/+397
* Plugins: Added basic incoming message functionJames Booth2016-03-296-6/+48
* Use one stanza handler per type (message, iq, presence)James Booth2016-03-281-0/+3
* Added basic stanza receive eooksJames Booth2016-03-276-0/+204
* Added stanza send hooks for pluginsJames Booth2016-03-266-2/+235
* Added integer settings for pluginsJames Booth2016-03-268-0/+90
* Added plugin string settingsJames Booth2016-03-268-0/+95
* Added boolean settings for pluginsJames Booth2016-03-2510-5/+252
* Added prof_send_stanza to plugins APIJames Booth2016-03-236-0/+37
* Parse plugin args with freetext parserJames Booth2016-03-152-6/+15
* Plugins: Fix python threadingJames Booth2016-03-092-4/+62
* Merge branch 'master' into plugins-pythonJames Booth2016-03-077-8/+38
|\
| * Plugins: Added callbacks init and close functionsJames Booth2016-03-076-7/+37
* | Merge branch 'master' into plugins-pythonJames Booth2016-03-071-0/+4
|\|
| * Free GLists in plugin autocompletersJames Booth2016-03-071-0/+4
| * Merge remote-tracking branch 'origin/master'James Booth2016-02-281-1/+1
| |\
* | | Added current_win_is_console to python APIJames Booth2016-02-281-0/+12
* | | Merge branch 'master' into plugins-pythonJames Booth2016-02-285-0/+22
|\| |
| * | Added current_win_is_console to plugins apiJames Booth2016-02-285-0/+22
* | | Merge branch 'master' into plugins-pythonJames Booth2016-02-251-1/+1
|\ \ \ | | |/ | |/|
| * | Remove default from plugin theme NULL checksJames Booth2016-02-251-1/+1
| |/
* | Merge branch 'master' into plugins-pythonJames Booth2016-02-251-1/+1
|\|
| * Check for NULLs before testing plugin themeJames Booth2016-02-251-1/+1
* | Merge branch 'master' into plugins-pythonJames Booth2016-02-241-0/+1
|\|
| * Added missing string.h include to plugins/api.cJames Booth2016-02-241-0/+1
* | Added python_api_cons_bad_cmd_usageJames Booth2016-02-241-0/+12
* | Added python plugins codeJames Booth2016-02-246-3/+1194
|/
* Added theme support to pluginsJames Booth2016-02-218-118/+231
* Return result from plugin callsJames Booth2016-02-216-59/+157
* Added prof_cons_bad_cmd_usage plugin functionJames Booth2016-02-185-2/+20
* Integrated plugins with /help commandJames Booth2016-02-182-0/+16
* Added cmd_help_autocomplete_addJames Booth2016-02-181-0/+2
* Added new help format to c plugins WIPJames Booth2016-02-188-14/+56
* Fix plugin command memleakJames Booth2016-02-152-1/+3
* Removed non c plugin codeJames Booth2016-02-142-84/+0
* Updated copyrightJames Booth2016-02-1414-14/+14
* Added C plugin code from plugins branchJames Booth2016-02-1414-0/+2096
itle='Blame the previous revision' href='/akkartik/mu/blame/html/003trace.test.cc.html?h=hlt&id=e35c2d6857e1ed916221faae707e3c53ff8ed042'>^
6e1eeeeb ^

d3a9db3a ^
204dae92 ^

201458e3 ^
6e1eeeeb ^

d3a9db3a ^
204dae92 ^

201458e3 ^
6e1eeeeb ^
d3a9db3a ^
204dae92 ^

201458e3 ^
6e1eeeeb ^
d3a9db3a ^
204dae92 ^

201458e3 ^
6e1eeeeb ^


d3a9db3a ^
6e1eeeeb ^






















d3a9db3a ^
6e1eeeeb ^














d3a9db3a ^
6e1eeeeb ^




d3a9db3a ^
6e1eeeeb ^




d3a9db3a ^
6e1eeeeb ^





d3a9db3a ^
6e1eeeeb ^






d3a9db3a ^
6e1eeeeb ^






c504ca56 ^












6e1eeeeb ^
672e3e50 ^


a654e4ec ^
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193