about summary refs log tree commit diff stats
path: root/src/plugins/c_api.c
Commit message (Expand)AuthorAgeFilesLines
* Add plugin get_barejid_from_roster functionDustin Lagoy2021-04-291-0/+7
* Change nick to name in api to match conventionDustin Lagoy2021-04-281-3/+3
* Add plugin prof_get_nick_from_roster functionDustin Lagoy2021-04-281-0/+7
* Add config.h in files were it was missingMichael Vetter2021-03-261-0/+2
* Apply coding styleMichael Vetter2020-07-071-88/+91
* Revert "Apply coding style"Michael Vetter2020-07-071-92/+89
* Apply coding styleMichael Vetter2020-07-071-89/+92
* Add vim modelineMichael Vetter2019-11-131-0/+1
* Update copyright to include 2019Michael Vetter2019-01-221-1/+1
* Update copyrightJames Booth2018-01-211-1/+1
* Update CopyrightJames Booth2017-01-281-1/+1
* Add chat and room show calls to plugins apiJames Booth2017-01-211-0/+30
* Allow room display properies to be set by pluginsJames Booth2017-01-201-0/+28
* Allow chat prefix char to be set by pluginsJames Booth2017-01-201-0/+28
* Add titlebar encryption text to plugins apiJames Booth2017-01-191-0/+14
* Add prof.encryption_reset to Plugins APIJames Booth2017-01-181-0/+7
* Add get_room_nick to plugins apiJames Booth2016-11-061-0/+7
* Allow filepath autocompletion in pluginsJames Booth2016-10-101-0/+12
* Remove disco features added by plugins on unloadJames Booth2016-08-111-3/+5
* Rename plugins settings functionsJames Booth2016-08-071-24/+24
* Return int on c_api_settings_string_list_remove_allJames Booth2016-08-011-2/+2
* Add string lists settings to pluginsJames Booth2016-08-011-0/+28
* Use g_strndup in c_api.cJames Booth2016-07-271-2/+2
* Free python_str_or_unicode_to_string resultsJames Booth2016-07-251-1/+1
* Remove debug on plugin win createJames Booth2016-07-241-1/+0
* Add missing includeJames Booth2016-07-241-0/+1
* Update GPL link in headersJames Booth2016-07-241-1/+1
* Pass plugin name to all autocompleter functionsJames Booth2016-07-041-6/+16
* Free plugins commands on quitJames Booth2016-07-041-3/+11
* Add plugin name to win_create api callJames Booth2016-07-031-3/+6
* Pass plugin name to api layerJames Booth2016-06-301-3/+3
* Revert "WIP - Unload plugin commands"James Booth2016-06-301-2/+2
* WIP - Unload plugin commandsJames Booth2016-06-291-2/+2
* Add macro for plugins completer addJames Booth2016-06-231-2/+5
* Add macro for C plugins register_timedJames Booth2016-06-231-3/+6
* Add function to get C plugin nameJames Booth2016-06-231-2/+21
* Plugins: Added prof_disco_add_feature()James Booth2016-04-301-0/+7
* Plugins: Added more muc hooksJames Booth2016-04-151-1/+15
* Plugins: Added completer_clearJames Booth2016-04-071-0/+7
* Plugins: Added completer_removeJames Booth2016-04-071-0/+7
* Plugins: Renamed register_ac->completer_addJames Booth2016-04-071-3/+3
* Plugins: Added basic incoming message functionJames Booth2016-03-291-0/+7
* Added integer settings for pluginsJames Booth2016-03-261-0/+14
* Added plugin string settingsJames Booth2016-03-261-0/+14
* Added boolean settings for pluginsJames Booth2016-03-251-0/+14
* Added prof_send_stanza to plugins APIJames Booth2016-03-231-0/+7
* Plugins: Added callbacks init and close functionsJames Booth2016-03-071-1/+1
* Added current_win_is_console to plugins apiJames Booth2016-02-281-0/+7
* Added theme support to pluginsJames Booth2016-02-211-29/+15
* Return result from plugin callsJames Booth2016-02-211-20/+16
/a> 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 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938