about summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Add /plugin reload commandJames Booth2016-07-105-2/+55
|
* Remove string allocation for conflistsJames Booth2016-07-101-3/+3
|
* Store python modules on loadJames Booth2016-07-091-9/+13
|
* Reaload python module if previous loaded on /plugin loadJames Booth2016-07-091-2/+14
|
* Plugin unload remove cmd_acs and close windowJames Booth2016-07-057-7/+75
|
* Revert "Move adding plugins commands to autocompleters"James Booth2016-07-052-4/+3
| | | | This reverts commit 97f79970252a06a1583ca1e1c8b22111720ddf94.
* Move adding plugins commands to autocompletersJames Booth2016-07-052-3/+4
|
* Add plugins on_unload hookJames Booth2016-07-056-0/+43
|
* Store plugin completers by plugin nameJames Booth2016-07-055-45/+96
|
* Pass plugin name to all autocompleter functionsJames Booth2016-07-047-16/+39
|
* Move prefs_remove_plugin to plugins_unloadJames Booth2016-07-042-2/+3
|
* Remove plugin callbacks in plugin_destroy functionsJames Booth2016-07-044-1/+12
|
* Store plugin window callbacks by plugin nameJames Booth2016-07-043-6/+35
|
* Use hash table for plugin timed functionsJames Booth2016-07-043-24/+52
|
* Free plugins commands on quitJames Booth2016-07-0410-49/+160
|
* Rename callback execte and destroy functionsJames Booth2016-07-034-17/+17
|
* Add plugin name to win_create api callJames Booth2016-07-036-6/+15
|
* Move plugin theme and settings initJames Booth2016-07-012-4/+2
|
* Use hash table to store pluginsJames Booth2016-06-304-109/+143
|
* Fix plugin load prefsJames Booth2016-06-301-1/+1
|
* Move plugin config add on loadJames Booth2016-06-302-1/+1
|
* /plugins unload command and completerJames Booth2016-06-307-2/+76
|
* Pass plugin name to api layerJames Booth2016-06-304-14/+14
|
* Revert "WIP - Unload plugin commands"James Booth2016-06-3020-161/+20
| | | | This reverts commit a01eb5d08e1b39d60a6f8fc26e5a87ceb92ec18f.
* WIP - Unload plugin commandsJames Booth2016-06-2920-20/+161
|
* Add macro for plugins completer addJames Booth2016-06-234-4/+11
|
* Add macro for C plugins register_timedJames Booth2016-06-234-8/+15
|
* Add function to get C plugin nameJames Booth2016-06-233-4/+25
|
* Add function to get plugin nameJames Booth2016-06-221-0/+20
|
* Add ProfIdFreeCallback to free stale id handlers on connectJames Booth2016-06-085-41/+86
|
* Fix memory leaksJames Booth2016-06-082-2/+8
|
* Free string on connect autocompleteJames Booth2016-06-081-0/+2
|
* Check for NULL before clearing connection dataJames Booth2016-06-011-3/+7
|
* Complete no arg for /account propertiesJames Booth2016-06-011-31/+39
|
* Complete no arg for /join propertiesJames Booth2016-06-011-19/+26
|
* Complete no arg for /connect propertiesJames Booth2016-06-011-50/+49
|
* Merge branch 'master' into complete-emptyJames Booth2016-05-316-158/+149
|\
| * Update /notify helpJames Booth2016-05-311-1/+2
| |
| * Remove commented codeJames Booth2016-05-311-26/+0
| |
| * Move /statuses options to /presence commandJames Booth2016-05-316-153/+137
| |
| * Add /presence titlebar subcommandJames Booth2016-05-313-32/+64
| |
* | Merge branch 'master' into complete-emptyJames Booth2016-05-252-14/+20
|\|
| * Update window navigation helpJames Booth2016-05-252-14/+20
| |
* | Complete no arg for /bookmark propertiesJames Booth2016-05-241-40/+51
| |
* | Complete no arg for /role setJames Booth2016-05-241-2/+4
| |
* | Complete no arg for /affiliation setJames Booth2016-05-241-2/+4
| |
* | Complete no arg for /script run|showJames Booth2016-05-241-2/+2
| |
* | Complete no arg for /theme loadJames Booth2016-05-241-1/+1
| |
* | Complete no arg for /plugins loadJames Booth2016-05-241-1/+1
| |
* | Allow empty autocomplete for /otr policyJames Booth2016-05-241-6/+6
| |
='n219' href='#n219'>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
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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727