about summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Added roommention.term theme optionJames Booth2016-02-104-1/+36
|
* Added mention and trigger themes for consoleJames Booth2016-02-103-4/+12
|
* Fixed /role and /affiliation helpJames Booth2016-02-071-2/+2
|
* Fix room notification remindersJames Booth2016-02-075-12/+41
|
* Added /roster show|hide unsubscribedJames Booth2016-02-079-0/+181
|
* Don't show notification reminders for messages the user does not want ↵James Booth2016-02-048-49/+57
| | | | notifications for
* Tidy notify_room_message()James Booth2016-02-042-18/+12
|
* Tidy notify_message()James Booth2016-02-043-31/+12
|
* Tidy prefs_do_chat_notify()James Booth2016-02-041-13/+7
|
* Removed unused arg: prefs_do_chat_notify()James Booth2016-02-047-7/+7
|
* Implemented /console private settingJames Booth2016-02-038-130/+164
|
* Implemented /console chat settingJames Booth2016-02-033-8/+20
|
* Added console.chat preferenceJames Booth2016-02-034-3/+19
|
* Added /console chat autocompletionJames Booth2016-02-031-11/+20
|
* Update autocompleters on roster nick change/clearJames Booth2016-02-033-0/+37
| | | | fixes #720
* Fixed help formattingJames Booth2016-02-031-2/+2
|
* Handle self leaving room in private winsJames Booth2016-02-036-0/+154
|
* Handle occupant nick change in private winsJames Booth2016-02-023-0/+27
|
* Handle occupant kicked/banned in private chat winsJames Booth2016-02-023-1/+65
|
* Show message in private windows when user offlineJames Booth2016-02-027-4/+60
|
* Allow splitting roster rooms by conference serverJames Booth2016-02-017-26/+151
|
* Colour private chats by presence in roster panelJames Booth2016-01-312-17/+36
|
* Roster panel colour fixesJames Booth2016-01-311-7/+13
|
* Fixed /pref ui formattingJames Booth2016-01-311-110/+110
|
* Added roster.rooms.private.char settingJames Booth2016-01-317-40/+115
|
* Show orphaned private chatsJames Booth2016-01-311-5/+31
|
* Only add private chats to Rooms unread count in roster when room activeJames Booth2016-01-311-12/+15
|
* Show offline contacts with unread messages in rosterJames Booth2016-01-311-36/+14
|
* Removed unused arg from roster_get_ functionsJames Booth2016-01-315-27/+15
|
* Added filter functions to rosterJames Booth2016-01-311-24/+129
|
* Added functions for rooms and private chat headersJames Booth2016-01-311-84/+111
|
* Added _rosterwin_contacts_header functionJames Booth2016-01-301-131/+58
|
* Reorganise rosterwin.cJames Booth2016-01-301-410/+429
|
* Added _rosterwin_contacts_all functionJames Booth2016-01-301-65/+71
|
* Removed _rosterwin_contacts_by_no_group functionJames Booth2016-01-303-110/+15
|
* Moved offline check logic in roster panelJames Booth2016-01-301-3/+5
|
* Show private chat unread message count in roster panelJames Booth2016-01-281-2/+36
|
* Updated themesJames Booth2016-01-281-9/+9
|
* Added unread counts to rosterJames Booth2016-01-281-10/+130
|
* Store /roster count settingJames Booth2016-01-276-22/+58
|
* Added /roster count commandJames Booth2016-01-272-3/+28
|
* Fix handling of unknown characters with word wrapJames Booth2016-01-261-1/+5
|
* Added missing headerJames Booth2016-01-251-0/+1
|
* Themes: Tidy foreground colour loadingJames Booth2016-01-251-70/+71
|
* Added themes for roster room mention and triggersJames Booth2016-01-258-2/+31
| | | | closes #718
* Show console messages for room mention and triggersJames Booth2016-01-244-16/+56
| | | | closes #719
* Tidy handling room mention and room triggersJames Booth2016-01-245-32/+37
|
* Added roomtrigger colour themeJames Booth2016-01-246-21/+32
| | | | closes #717
* Roster private chat preferencesJames Booth2016-01-247-47/+206
|
* Added private chat roster groupJames Booth2016-01-242-2/+79
|
ef='#n796'>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 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092