about summary refs log tree commit diff stats
path: root/src/plugins
Commit message (Expand)AuthorAgeFilesLines
* Allow installing plugins from directoryJames Booth2017-02-052-0/+45
* Allow loading all pluginsJames Booth2017-02-052-3/+26
* Allow unloading all pluginsJames Booth2017-02-052-0/+22
* Update CopyrightJames Booth2017-01-2824-24/+24
* Add pre chat and room message blockingJames Booth2017-01-226-15/+73
* Add chat and room show calls to plugins apiJames Booth2017-01-216-0/+343
* Allow room display properies to be set by pluginsJames Booth2017-01-206-0/+218
* Allow chat prefix char to be set by pluginsJames Booth2017-01-206-1/+222
* Add titlebar encryption text to plugins apiJames Booth2017-01-196-0/+111
* Fix conditional compileJames Booth2017-01-181-0/+4
* Add prof.encryption_reset to Plugins APIJames Booth2017-01-186-0/+54
* Remove status from cl_ev_presence_sendJames Booth2017-01-152-3/+2
* Add get_room_nick to plugins apiJames Booth2016-11-066-0/+41
* Add win_printJames Booth2016-10-151-3/+3
* Use win_printf_line where appropriateJames Booth2016-10-151-2/+2
* Add ch arg to win_printf_lineJames Booth2016-10-151-1/+1
* Use THEME_DEFAULTJames Booth2016-10-141-1/+1
* Add win_printf_lineJames Booth2016-10-141-1/+1
* Always use string format in win_printfJames Booth2016-10-121-3/+3
* Remove win_print, use win_printf insteadJames Booth2016-10-111-3/+3
* Allow filepath autocompletion in pluginsJames Booth2016-10-108-1/+97
* Remove hash table replace entry when adding plugin timed callbacksJames Booth2016-10-091-2/+0
* Fix assertion errors in unit testsJames Booth2016-09-251-0/+2
* Use hashtables for plugin disco featuresJames Booth2016-08-172-28/+66
* Remove disco features added by plugins on unloadJames Booth2016-08-1111-18/+90
* Check return values from python plugin hooksJames Booth2016-08-111-57/+91
* Add resource to chat message plugin hooksJames Booth2016-08-106-120/+121
* Rename plugin jid argumentsJames Booth2016-08-102-43/+43
* Rename plugins settings functionsJames Booth2016-08-078-104/+104
* Return int on c_api_settings_string_list_remove_allJames Booth2016-08-013-4/+4
* Return boolean on prof_settings_string_list_remove_all()James Booth2016-08-015-9/+18
* Remove log debugsJames Booth2016-08-011-7/+0
* Add string lists settings to pluginsJames Booth2016-08-018-0/+233
* Add typedefs to C plugin APIJames Booth2016-07-302-6/+9
* Use g_strndup in c_api.cJames Booth2016-07-271-2/+2
* Fix memory leaksJames Booth2016-07-251-0/+1
* Fix memory leaksJames Booth2016-07-251-1/+3
* Decrement reference count on python hook args objectsJames Booth2016-07-251-23/+39
* Use Py_RETURN_NONEJames Booth2016-07-251-56/+56
* Free python_str_or_unicode_to_string resultsJames Booth2016-07-256-9/+28
* Remove debug on plugin win createJames Booth2016-07-242-2/+0
* Move all filepath handling to files.cJames Booth2016-07-245-50/+29
* Move xgd functionsJames Booth2016-07-243-4/+4
* Add config/files.cJames Booth2016-07-243-0/+3
* Tidy headersJames Booth2016-07-248-15/+12
* Moved window_list.cJames Booth2016-07-242-2/+2
* Make header defines consistentJames Booth2016-07-2412-22/+27
* Reorder headersJames Booth2016-07-241-2/+2
* Add /plugins python_version commandJames Booth2016-07-242-3/+8
* Python plugins: Free string valuesJames Booth2016-07-241-2/+57
'n411' href='#n411'>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