about summary refs log tree commit diff stats
path: root/src/muc.c
Commit message (Collapse)AuthorAgeFilesLines
* Fixed spelling.Christian Storm2015-02-171-1/+1
|
* Updated copyrightJames Booth2015-02-101-1/+1
|
* Simplified autocompleters and command historyJames Booth2015-01-161-7/+9
|
* Refactoring window types, removing recipient and from references - wipJames Booth2014-12-181-25/+29
|
* Removed hash_table_iter usage for room rosterJames Booth2014-11-031-7/+7
|
* Fixed nick changesJames Booth2014-10-101-0/+2
|
* Refactor muc user handlerJames Booth2014-10-071-1/+1
|
* Added jid autocomplete for affiliation commandsJames Booth2014-10-061-0/+55
|
* Added /room subject commandJames Booth2014-10-051-1/+5
|
* Store real jid with occupantsJames Booth2014-10-011-6/+13
|
* Added /room <affiliation> commandJames Booth2014-10-011-0/+23
|
* Added /room <role> commandJames Booth2014-10-011-0/+23
|
* Show occupants affiliation and role with /info in roomsJames Booth2014-09-301-0/+12
|
* wip - Store roles and affiliations with occupantsJames Booth2014-09-301-7/+11
|
* Changed rooms to use Occupant type instead of PContactJames Booth2014-09-301-39/+66
|
* Tidied muc moduleJames Booth2014-09-281-36/+36
|
* Store room affiliation and roleJames Booth2014-09-281-0/+156
|
* Check for NULL inside autocomplete_freeJames Booth2014-09-261-3/+1
|
* Create room list on muc_initJames Booth2014-09-261-155/+82
|
* Tidied muc.cJames Booth2014-09-261-104/+73
|
* Renamed autocomplete function to get listJames Booth2014-09-261-2/+2
|
* Removed NULL check when checking roster for nickJames Booth2014-09-251-6/+2
|
* Added jid->hash lookup for capabilitiesJames Booth2014-09-201-3/+2
|
* Validate usage of /room config command, added UI messagesJames Booth2014-09-031-0/+35
|
* Small spelling fixes in code and commentsDariusz Dwornikowski2014-08-271-2/+2
|
* Added license exemption for OpenSSL to source headersJames Booth2014-08-241-0/+12
|
* Added ": " after nick autocomplete when start of messageJames Booth2014-07-151-0/+3
|
* Save chat room message prefix for autocompleteJames Booth2014-07-151-29/+66
|
* Finished chat room nick autocompleteJames Booth2014-07-151-9/+21
|
* Added quote param to autocomplete_param_with_acJames Booth2014-07-091-2/+2
|
* Added quote param to autocomplete_completeJames Booth2014-07-091-2/+2
|
* Removed debug, added check for 0 length stringJames Booth2014-07-091-1/+0
|
* Added autocomplete for nicknames in MUC input textJames Booth2014-07-091-0/+27
| | | | issue #321
* Properly free muc hashtablesJames Booth2014-06-151-2/+2
|
* Fixed memleak when leaving roomsJames Booth2014-06-151-1/+1
|
* Added backwards compatible g_list_free_full for glib < 2.28James Booth2014-05-211-0/+1
|
* Handle room subject and broadcasts sent before roster receivedJames Booth2014-05-051-0/+64
| | | | Issue #341
* Fixed cppcheck warningsJames Booth2014-04-261-4/+2
|
* Rejoin private rooms after reconnectingJames Booth2014-04-231-0/+20
|
* Chat room windows now created only after successful joinJames Booth2014-04-211-2/+21
|
* Store password with roomJames Booth2014-04-201-1/+8
|
* Tidied ui dependenciesJames Booth2014-04-061-2/+0
|
* Updated copyrightJames Booth2014-03-091-1/+1
|
* Refactored muc_room_is_active to only take room, rather than full jidJames Booth2014-03-081-2/+2
|
* Added presence_error tests, added muc_close()James Booth2014-01-301-0/+10
|
* Fixe rejoining room after nickname conflictJames Booth2013-09-221-1/+3
| | | | fixes #241
* removed strdup in autocomplete callsDmitry Podgorny2013-08-261-2/+2
|
* Merge branch 'master' into nextdevJames Booth2013-08-051-1/+15
|\
| * Handle when servers dont send status 101 or jid for MUC nick changesJames Booth2013-08-051-1/+15
| |
* | most FREE_SET_NULL replaced with freeDmitry Podgorny2013-08-031-16/+4
|/ | | | | | FREE_SET_NULL makes extra assignment of NULL for pointers in stack or dynamic memory that is going to be freed. FREE_SET_NULL is useful for pointers that can be used in future.