about summary refs log tree commit diff stats
path: root/src/config
Commit message (Expand)AuthorAgeFilesLines
* Only overwrite preferences with theme when them loaded, not on startupJames Booth2014-11-301-3/+16
* Merge remote-tracking branch 'incertia/account-remove'James Booth2014-11-242-0/+12
|\
| * implement account removalWill Song2014-11-232-0/+12
* | Free string after setting theme ui preference, fixed valgrind warningJames Booth2014-11-241-0/+1
|/
* Added [ui] preferences to themesJames Booth2014-11-191-0/+56
* Tidied theme.cJames Booth2014-11-191-201/+62
* Added /theme colours commandJames Booth2014-11-172-46/+96
* Changed type to enum for presence colour attributesJames Booth2014-11-162-0/+19
* Added support for bold theme settingsJames Booth2014-11-162-55/+93
* Replaced colours with theme_item_tJames Booth2014-11-162-43/+101
* Added /time settingJames Booth2014-11-162-0/+6
* Added /roster size and /occupants size settingsJames Booth2014-11-152-0/+45
* Added /roster show|hide command, only show roster on connect successJames Booth2014-11-102-0/+18
* Added /wrap user preference for enabling/disabling word wrappingJames Booth2014-11-092-0/+5
* Added /presence command to show contacts presenceJames Booth2014-11-074-46/+93
* Added main.text.me and main.text.them theme settingsJames Booth2014-11-072-68/+82
* Merge branch 'master' into symlinksJames Booth2014-10-262-0/+22
|\
| * Added /account clear [account] portJames Booth2014-10-232-0/+11
| * Added /account clear [account] serverJames Booth2014-10-232-0/+11
* | Follow symlinks for profrc and accounts filesJames Booth2014-10-262-2/+16
|/
* Set file permissions for preferences fileJames Booth2014-10-181-0/+7
* Set file permissions for accounts fileJames Booth2014-10-181-0/+6
* Added /privileges command to set UI option for showing roles/affiliations in ...James Booth2014-10-182-0/+5
* Added occupants UI preferenceJames Booth2014-10-092-0/+5
* Added license exemption for OpenSSL to source headersJames Booth2014-08-248-0/+96
* Enable splash logo by defaultJames Booth2014-08-091-0/+1
* Set auto reconnect to 30 seconds by defaultJames Booth2014-07-291-1/+5
* Colour chat room messages that contain users nicknameJames Booth2014-07-162-30/+37
* Added quote param to autocomplete_completeJames Booth2014-07-092-3/+3
* Free aliases on cmd_initJames Booth2014-06-181-4/+8
* Added deallocation function for string prefs, added otr policy enumJames Booth2014-06-182-5/+16
* Free account_name preference on autoconnectJames Booth2014-06-171-1/+1
* Free GError on prefs loadJames Booth2014-06-171-3/+12
* Fixed memleak when writing preferences fileJames Booth2014-06-151-1/+2
* Added settings to show message text in notificationsJames Booth2014-05-242-0/+8
* Added notification setting for typing in current windowJames Booth2014-05-242-0/+5
* Added settings for message notifications in current windowJames Booth2014-05-242-0/+10
* Added /notify room mention settingJames Booth2014-05-242-0/+2
* Split regular and chat room notify settingsJames Booth2014-05-242-0/+4
* Added backwards compatible g_list_free_full for glib < 2.28James Booth2014-05-211-0/+1
* Implemented per contact OTR policy settingJames Booth2014-05-113-3/+49
* Added /otr policy for contacts in account preferencesJames Booth2014-05-112-0/+116
* Added otr to /account clear propertiesJames Booth2014-05-112-0/+11
* Added OTR policy account preferenceJames Booth2014-05-114-6/+31
* Moved global OTR settings to [otr] groupJames Booth2014-05-112-10/+31
* Fixed cppcheck warningsJames Booth2014-04-263-10/+1
* Merge remote-tracking branch 'lucian/master'James Booth2014-04-222-2/+10
|\
| * Added /otr policy to commands (still need to add autocomplete stuff?)lightb2014-04-191-0/+3
| * Added PREF_OTR_POLICY to preferences.c -> key -> otr.policylightb2014-04-191-0/+4
| * Added PREF_OTR_POLICY - should be default global policy and set to MANUALlightb2014-04-191-1/+2
|/
81'>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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423