about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Separated colours from main preferencesJames Booth2012-11-217-348/+478
|
* Added more colour preferencesJames Booth2012-11-217-167/+320
|
* Send presence changes to chat roomsJames Booth2012-11-203-2/+33
|
* Status bar message now correctly overwrites previous messageJames Booth2012-11-191-1/+19
|
* Handling commands after /disconnectJames Booth2012-11-197-17/+96
|
* Moved disconnect code to profanity moduleJames Booth2012-11-193-4/+11
|
* Handle room broadcastsJames Booth2012-11-197-9/+67
|
* Fixed workaround for old server self room presence checkJames Booth2012-11-191-0/+1
|
* Handle legacy delayed messages in chat roomsJames Booth2012-11-193-22/+25
|
* Handle room member presenceJames Booth2012-11-197-1/+55
|
* Return whether or not room member presence was changedJames Booth2012-11-182-2/+14
|
* Show message when own nickname changed in chat roomsJames Booth2012-11-187-6/+65
|
* Moved function to remove from roster on nick changeJames Booth2012-11-182-1/+3
|
* Fixed error when not nick name change presenceJames Booth2012-11-181-3/+2
|
* Handle nick changes from other usersJames Booth2012-11-189-26/+227
|
* Allow nick change in chat roomJames Booth2012-11-187-0/+76
|
* Support legacy delayed delivery (XEP-0091) as well as XEP-0203James Booth2012-11-183-13/+41
|
* Merge remote-tracking branch 'dmitry/macos'James Booth2012-11-183-12/+54
|\ | | | | | | | | Conflicts: src/command.c
| * use internal implementation of getlineDmitry Podgorny2012-11-183-12/+54
| | | | | | | | MacOS doesn't have function getline
| * command.c: replace strndup with strdupDmitry Podgorny2012-11-181-3/+5
| | | | | | | | | | | | | | Function strndup conforms to POSIX.1-2008 and MacOS doesn't have it. strndup doesn't make sense when a string is copied to the end. So replacing fixes incompatibility with MacOS and doesn't influence to execution.
* | Commands now use parser function to handle parametersJames Booth2012-11-184-653/+554
| |
* | Added usage of command parserJames Booth2012-11-181-177/+188
| |
* | Handle commands with min 0 argsJames Booth2012-11-183-0/+39
| |
* | Added command parser for commands accepting free textJames Booth2012-11-182-2/+144
| | | | | | | | e.g. /msg user@host here is a message
* | Merge pull request #85 from pasis/devJames Booth2012-11-171-1/+3
|\ \ | | | | | | prevent double free of jabber_conn.status
| * | prevent double free of jabber_conn.statusDmitry Podgorny2012-11-181-1/+3
| |/
* / Added parser moduleJames Booth2012-11-188-39/+266
|/
* Merge pull request #84 from pasis/devJames Booth2012-11-172-3/+3
|\ | | | | _cmd_tiny: fix allocation for usage variable
| * _win_notify_remind: fix possible buffer overflowDmitry Podgorny2012-11-161-1/+1
| | | | | | | | fix buffer overflow when 'unread' is greater than 999
| * _cmd_set_boolean_preference: fix usage allocationDmitry Podgorny2012-11-161-1/+1
| |
| * _cmd_tiny: fix allocation for usage variableDmitry Podgorny2012-11-161-1/+1
|/
* Started work on command parserJames Booth2012-11-151-218/+263
|
* Changed /wins outputJames Booth2012-11-141-18/+9
|
* Fixed spelling mistake in helpJames Booth2012-11-141-1/+1
|
* Renamed /status -> /infoJames Booth2012-11-141-8/+8
|
* Show when unread messages in /wins listJames Booth2012-11-141-3/+18
|
* Treat room presence as onlineJames Booth2012-11-142-5/+14
| | | | Needs to be changed to show status changes
* Added /wins command to list active windowsJames Booth2012-11-143-3/+80
|
* Set correct window type on private messagesJames Booth2012-11-145-12/+24
|
* Merge pull request #81 from pasis/priorityJames Booth2012-11-138-14/+156
|\ | | | | introduce priority support
| * introduce _strtoi() and validation of typed numbersDmitry Podgorny2012-11-141-7/+37
| |
| * fix crash on changing priority when disconnectedDmitry Podgorny2012-11-141-1/+6
| | | | | | | | | | sending presence causes null pointer dereference when disconnected because ctx variable isn't set