about summary refs log tree commit diff stats
path: root/src/profanity.c
Commit message (Expand)AuthorAgeFilesLines
...
| * Moved handle_software_version_result to server_eventsJames Booth2014-01-051-8/+0
| * Moved handle_lost_connection and handle_failed_login to server_eventsJames Booth2014-01-051-19/+0
| * Moved handle_login_account_success to server_eventsJames Booth2014-01-051-16/+0
| * Added server_events.cJames Booth2014-01-051-15/+0
* | Merge branch 'master' into otrJames Booth2013-12-151-5/+29
|\|
| * Seperated command functions into moduleJames Booth2013-12-151-1/+1
| * Added simple mock test, refactored rosterJames Booth2013-12-141-1/+1
| * Merge branch 'master' into refactor2James Booth2013-11-111-1/+13
| |\
| * | Moved idle chat state handling out of ui moduleJames Booth2013-10-071-1/+25
| * | PREF_STATUSES, moved checks to profanity moduleJames Booth2013-10-061-2/+2
* | | Added /otr commandJames Booth2013-11-081-3/+0
* | | Load keys and fingerprints for account on connectJames Booth2013-11-081-0/+3
* | | Added libotrJames Booth2013-11-081-1/+4
| |/ |/|
* | Allow "account" setting in [connection] to autconnect the accountJames Booth2013-11-071-0/+4
* | Merge remote-tracking branch 'tsenart/connect-on-startup'James Booth2013-11-071-1/+9
|\ \ | |/ |/|
| * Connect to an account on start-upTomás Senart2013-10-141-1/+7
|/
* Moved muc error handling to profanity.cJames Booth2013-10-061-0/+9
* Moved UI error handler code to ui/coreJames Booth2013-10-061-21/+1
* Fix nickname change conflictsJames Booth2013-09-221-1/+3
* Fixe rejoining room after nickname conflictJames Booth2013-09-221-0/+5
* Use git revision in development stringsJames Booth2013-09-171-1/+9
* refactored mkdir_recursiveDmitry Podgorny2013-08-031-3/+9
* Show messages on /group add and /group removeJames Booth2013-06-231-0/+16
* Show message when removing contact from group when not in groupJames Booth2013-06-231-2/+10
* Show message when contact already in groupJames Booth2013-06-231-0/+8
* Added message in console on /roster removeJames Booth2013-06-021-0/+7
* Added message in console on /roster addJames Booth2013-06-021-0/+7
* Fixed autoawayJames Booth2013-05-301-0/+1
* Refactored roster push handlingJames Booth2013-05-211-3/+3
* Removed contact_list, moved roster logic to xmpp/roster moduleJames Booth2013-05-061-1/+0
* Renamed contact_list_ functions to roster_James Booth2013-05-061-9/+9
* Fixed error when losing connection and segfaulting on notify_remind()James Booth2013-05-061-1/+2
* Added /duck command to perform searches using duckduckgo chat botJames Booth2013-05-051-0/+7
* Added groupchat logsJames Booth2013-05-051-0/+7
* Added desktop notification option for subscription requestsJames Booth2013-04-271-0/+3
* Only set autoaway when status is "online" or "chat"James Booth2013-04-271-27/+30
* Support for XEP-0249 Direct MUC InvitationsJames Booth2013-04-241-2/+10
* Added notifier moduleJames Booth2013-04-211-0/+1
* Renamed remaining win_ functionsJames Booth2013-04-211-52/+52
* Renamed win_current_get_recipient -> ui_current_win_recipientJames Booth2013-04-211-1/+1
* Replace window type functions with single function returning typeJames Booth2013-04-211-9/+10
* Renamed cons_bad_show -> cons_show_errorJames Booth2013-04-211-5/+5
* Show message in console when receiving chat room invitesJames Booth2013-03-241-0/+8
* Implemented output for /disco infoJames Booth2013-03-141-0/+7
* Added output for /disco itemsJames Booth2013-03-141-0/+7
* Show name as well as jid for room listJames Booth2013-03-141-9/+1
* Page off after /rooms commandJames Booth2013-03-141-0/+1
* Added basic /rooms command to get chat room listJames Booth2013-03-131-0/+14
* Init and shutdown of libstrophe moved, free resources before creatingJames Booth2013-02-271-0/+1
* Colour title on /caps and /software outputJames Booth2013-02-171-3/+3
='#n627'>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
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