about summary refs log tree commit diff stats
path: root/src/ui/mucwin.c
Commit message (Expand)AuthorAgeFilesLines
* MUC: Show offline members in sidebarThorben Günther2021-03-081-0/+3
* Update copyrightMichael Vetter2021-01-081-1/+1
* Fix various typosMichael Vetter2020-12-101-1/+1
* Apply coding styleMichael Vetter2020-07-071-189/+189
* Revert "Apply coding style"Michael Vetter2020-07-071-192/+192
* Apply coding styleMichael Vetter2020-07-071-192/+192
* Feature request - XEP-0373: OpenPGP for XMPP (OX)DebXWoody2020-06-291-0/+3
* Build URL ac upon printing of message in windowMichael Vetter2020-05-201-0/+1
* Remove unanimous MAM displayMichael Vetter2020-04-251-17/+6
* _mucwin_print_mention(): No need to assign posMichael Vetter2020-04-201-1/+1
* Add to_jid field to ProfMessage structMichael Vetter2020-04-111-3/+3
* Retrieve message type from databaseMichael Vetter2020-04-081-1/+1
* Adapt win_print_history() to work with muc tooMichael Vetter2020-04-061-16/+1
* Use ProfMessage as parameter for win_println_incoming_muc_msg()Michael Vetter2020-03-091-1/+1
* Dont filter out own MUC messages if muc history is set to 'regular'Michael Vetter2020-02-211-3/+3
* Allow utf8 symbols as omemo/pgp/otr indicator charMichael Vetter2020-02-201-84/+91
* Parse mentions and triggers in muc history if display is 'regular'Michael Vetter2020-02-201-19/+26
* Add option to color MUC history like regular messagesMichael Vetter2020-02-201-1/+12
* Refactor mucwin_history()Michael Vetter2020-02-191-6/+7
* Refactor win_print_history()Michael Vetter2020-02-171-1/+1
* Refactor win_print_outgoing_muc_msg()Michael Vetter2020-02-171-1/+1
* Refactor win_println_incoming_muc_msg()Michael Vetter2020-02-171-1/+1
* Rename `win_println_them_message()` -> `win_println_incoming_muc_msg()`Michael Vetter2020-02-141-1/+1
* xep-0308: Implement LMC for outgoing MUC messagesMichael Vetter2020-02-141-2/+19
* xep-0308: Display corrected incoming MUC messages correctlyMichael Vetter2020-02-121-1/+1
* Update my Copyright to 2020Michael Vetter2020-01-031-1/+1
* separator: Enable for MUC and PRIVWIN tooMichael Vetter2019-12-131-0/+2
* Add vim modelineMichael Vetter2019-11-131-0/+1
* Don't override ProfMessage Id with origin-idMichael Vetter2019-10-311-1/+1
* Replace sent_messages list with algoMichael Vetter2019-10-311-3/+1
* Remove not needed codeMichael Vetter2019-09-291-4/+0
* Rename prof_message_t into ProfMessagePaul Fariello2019-06-201-1/+1
* Set foreground color for untrusted messagesPaul Fariello2019-06-201-1/+1
* Add prof_message_t to wrap all message attributesPaul Fariello2019-06-201-15/+20
* Add myself to copyrightMichael Vetter2019-06-171-0/+1
* Safe last MUC message timestamp per MUCMichael Vetter2019-06-111-0/+2
* Handle MUC anonymous state when auto starting OMEMOPaul Fariello2019-04-171-1/+1
* Add OMEMO policyPaul Fariello2019-04-171-0/+19
* Handle message without id in MUCPaul Fariello2019-04-141-1/+1
* Rework MUC reflected message filteringPaul Fariello2019-04-101-2/+9
* Log and print outgoing encrypted messagePaul Fariello2019-04-101-11/+35
* Fix /me display when highlighting user in MUCsMichael Vetter2019-02-261-8/+14
* Update copyright to include 2019Michael Vetter2019-01-221-1/+1
* Do not highlight room tab on subject changeJames Booth2018-03-101-11/+0
* Add preferences for tab displayJames Booth2018-03-091-6/+6
* Show name in statusbar tabs WIPJames Booth2018-03-081-6/+6
* Update copyrightJames Booth2018-01-211-1/+1
* Update CopyrightJames Booth2017-01-281-1/+1
* Allow room display properies to be set by pluginsJames Booth2017-01-201-4/+45
* Add win highlight fuctionsJames Booth2016-10-151-12/+12
>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 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