about summary refs log tree commit diff stats
path: root/src/command
Commit message (Expand)AuthorAgeFilesLines
* Added form field helpJames Booth2014-09-161-0/+4
* Implemented /form helpJames Booth2014-09-162-8/+29
* Show form fields after updatingJames Booth2014-09-151-10/+10
* Added /form showJames Booth2014-09-152-3/+12
* Dont allow unsaved form windows to be closedJames Booth2014-09-151-0/+11
* Split /room and /form commandsJames Booth2014-09-153-286/+287
* Allow removing data from text-multi form fieldsJames Booth2014-09-141-5/+34
* Added setting of unique form list valuesJames Booth2014-09-141-4/+16
* Added /room remove command, reformetted form outputJames Booth2014-09-141-1/+23
* Added /room add for *-multiJames Booth2014-09-141-8/+28
* Added add/remove subcommands to room configJames Booth2014-09-132-5/+71
* Added form validation for jid-single typeJames Booth2014-09-131-0/+1
* Added form validation for list-single typeJames Booth2014-09-131-2/+12
* Added form validation for boolean typeJames Booth2014-09-131-0/+12
* Added form type check on setJames Booth2014-09-131-2/+10
* Added autocomplete for setting room config form tagsJames Booth2014-09-121-0/+12
* Check room config tag exists before settingJames Booth2014-09-121-4/+8
* Added setting of *-single room config valuesJames Booth2014-09-122-14/+42
* Close config winJames Booth2014-09-111-0/+2
* Close config window on submit/cancelJames Booth2014-09-111-9/+18
* Added /room command validation, reduced to one subcommandJames Booth2014-09-112-66/+75
* Implemented /room config submit for saving room configurationJames Booth2014-09-101-1/+16
* Move to existing room config window if existsJames Booth2014-09-081-1/+10
* Merge branch 'master' into roomconfigJames Booth2014-09-051-1/+1
|\
| * Changed summary for /help autoaway to reflect correct parameter 'time'Michael Phillips2014-09-051-1/+1
* | Added /room config edit and /room config cancelJames Booth2014-09-042-14/+32
|/
* Fixed spelling mistakeJames Booth2014-09-041-1/+1
* Updated help for /pingJames Booth2014-09-041-0/+1
* Added /ping commandJames Booth2014-09-043-1/+30
* Validate usage of /room config command, added UI messagesJames Booth2014-09-032-10/+41
* Send room destroy iq on /room config cancelJames Booth2014-09-031-0/+2
* Send instant room requestJames Booth2014-09-031-1/+3
* WIP - Handle /room config commandsJames Booth2014-09-031-1/+9
* Added /room config commandJames Booth2014-09-033-0/+56
* Always update UI in event loop, removed updates from rest of codeJames Booth2014-09-011-4/+0
* Added license exemption for OpenSSL to source headersJames Booth2014-08-246-0/+72
* Added /bookmark with no args usage when in chat roomJames Booth2014-08-192-61/+86
* "/bookmark add foo" crash - fixJan Hacker2014-08-171-4/+8
* Spelling errors fixed and hyphenation used as minus sign fixedDariusz Dwornikowski2014-08-111-1/+1
* Allow escaping commands using double slash "//"James Booth2014-08-061-2/+6
* Check for unknown commands and show message in consoleJames Booth2014-08-041-0/+7
* Show message when no group or empty roster on /whoJames Booth2014-07-221-0/+8
* Added _who_roster functionJames Booth2014-07-221-166/+173
* Added _who_room functionJames Booth2014-07-221-80/+84
* Show message when no contacts with presence for /whoJames Booth2014-07-221-33/+87
* Save chat room message prefix for autocompleteJames Booth2014-07-151-4/+2
* Added quote param to autocomplete_param_with_acJames Booth2014-07-091-33/+33
* Added quote param to autocomplete_completeJames Booth2014-07-091-1/+1
* Free resources on OTR shutdownJames Booth2014-06-261-0/+1
* Free aliases on cmd_initJames Booth2014-06-181-0/+1
28 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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488