about summary refs log tree commit diff stats
path: root/tests/unittests/test_cmd_otr.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix prefs_get_str related leaks in unit testsMichael Vetter2019-06-191-0/+3
| | | | Related to https://github.com/profanity-im/profanity/issues/1019
* Fix OTR unit test after account_new API changePaul Fariello2019-04-171-1/+1
|
* Remove ui_current_print_formatted_lineJames Booth2016-10-161-6/+6
|
* Remove ui_current_print_lineJames Booth2016-10-161-2/+2
|
* Moved window_list.cJames Booth2016-07-241-1/+1
|
* Rename command sourcesJames Booth2016-05-221-2/+2
|
* Remove JABBER_STARTED, JABBER_UNDEFINED connection statesJames Booth2016-05-101-20/+0
|
* Rename jabber_ functionsJames Booth2016-05-061-1/+1
|
* Add session.cJames Booth2016-05-051-12/+12
|
* Tidy xmpp headersJames Booth2016-05-041-0/+1
|
* Fixed testsJames Booth2016-04-271-54/+33
|
* Removed #AX_PREFIX_CONFIG_HJames Booth2016-03-311-3/+3
|
* Added C plugin code from plugins branchJames Booth2016-02-141-3/+3
|
* Added account theme propertyJames Booth2016-01-221-1/+1
|
* Force tls on all connections, add tls policy account propertyJames Booth2015-10-181-1/+1
|
* Add ability to script commands after connectJames Booth2015-10-151-1/+1
|
* Split PGP incoming and outgoing message handlingJames Booth2015-08-301-4/+10
|
* Fixed tests for new command formatJames Booth2015-07-271-97/+31
|
* Moved setting otr.warn -> enc.warnJames Booth2015-06-211-62/+0
|
* Added pgp checks for message sendingJames Booth2015-06-211-2/+2
|
* Merge branch 'master' into openpgpJames Booth2015-06-171-63/+37
|\
| * Removed wins_get_current_* functionsJames Booth2015-06-171-63/+37
| |
* | Merge branch 'master' into openpgpJames Booth2015-06-171-34/+41
|\| | | | | | | | | | | Conflicts: src/command/commands.c src/command/commands.h
| * Added current window reference to command functionsJames Booth2015-06-171-34/+41
| |
* | Merge branch 'master' into openpgpJames Booth2015-06-151-5/+36
|\|
| * Tidied cmd_otr, added check-unit target to MakefileJames Booth2015-06-151-5/+36
| |
* | Merge branch 'master' into openpgpJames Booth2015-06-151-11/+22
|\|
| * Removed ui_get_current_chat()James Booth2015-06-151-11/+22
| |
* | Merge branch 'master' into openpgpJames Booth2015-06-121-1/+1
|/
* Moved all tests to tests folderJames Booth2015-06-121-0/+578
isanti/profani-tty/commit/src/command/commands.h?id=22db16e6463aad104a324f9e00f89290cc13d9bf'>22db16e6 ^
22db16e6 ^


3983ee1d ^
22db16e6 ^


22db16e6 ^
















d3cc5bd7 ^


0aa758cb ^
22db16e6 ^

fa6a26c6 ^
8f6b37f6 ^
6a8656a0 ^
c9f6a78f ^

a9fab9ed ^
41fe8c22 ^
5f1ba08f ^
a9fab9ed ^
a5a7db9e ^
cd86f5bc ^
a9fab9ed ^




b8c94376 ^
2490f5b4 ^
eb105e91 ^



































eb105e91 ^

eb105e91 ^
2215a379 ^
7a88898a ^
e57fa163 ^
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217