about summary refs log tree commit diff stats
path: root/src/tools
Commit message (Collapse)AuthorAgeFilesLines
* Added sys/select.h header includesJames Booth2016-01-191-0/+1
|
* Applied coding style to src/tools/James Booth2015-10-256-33/+33
|
* Use null check convention in tinyurl.cJames Booth2015-05-041-1/+1
|
* Use null check convention in parser.cJames Booth2015-05-041-4/+4
|
* Merge branch 'master' into readlineJames Booth2015-02-231-5/+5
|\
| * Fixed spelling.Christian Storm2015-02-171-5/+5
| |
* | Merge branch 'master' into readlineJames Booth2015-02-116-6/+6
|\| | | | | | | | | | | Conflicts: src/tools/history.c src/tools/history.h
| * Updated copyrightJames Booth2015-02-108-8/+8
| |
* | Removed history and various key handlersJames Booth2015-01-302-328/+0
|/
* Simplified autocompleters and command historyJames Booth2015-01-164-41/+31
|
* Added compile time checks for big endian from @pasisJames Booth2014-10-261-2/+14
|
* Added patch from @pasis for big endian architecturesJames Booth2014-10-211-7/+11
|
* Check for NULL inside autocomplete_freeJames Booth2014-09-261-2/+4
|
* Renamed autocomplete function to get listJames Booth2014-09-262-18/+26
|
* Added autocompletion for jid-multi form fieldsJames Booth2014-09-171-8/+10
|
* Added autocompletion for form text-multi valuesJames Booth2014-09-171-10/+12
|
* Added form testsJames Booth2014-09-141-4/+6
|
* Added license exemption for OpenSSL to source headersJames Booth2014-08-248-0/+96
|
* Finished chat room nick autocompleteJames Booth2014-07-151-1/+1
|
* Added quote param to autocomplete_param_with_acJames Booth2014-07-092-3/+3
|
* Added quote param to autocomplete_completeJames Booth2014-07-092-6/+6
|
* Added quote param to autocomplete searchesJames Booth2014-07-091-7/+7
|
* Free tokens when 0 supplied an 0 min, parse_args_with_freetextJames Booth2014-06-171-0/+1
|
* Renamed sha1 functions to avoid naming clashesJames Booth2014-06-152-36/+36
|
* Fixed memleak in autocompleterJames Booth2014-06-151-0/+3
|
* Use public domain SHA1 code, remove libgcrypt dependencyJames Booth2014-06-012-0/+418
|
* Added common.h to parser.cJames Booth2014-05-221-0/+2
|
* Fixed potential segfaults on autocompleteJames Booth2014-05-081-0/+4
|
* Fixed cppcheck warningsJames Booth2014-04-262-14/+11
|
* Simplified parse_options to take first option as argumentJames Booth2014-04-152-5/+5
|
* Simplified parse_options to take gchar**James Booth2014-04-152-2/+13
|
* Refactored cmd_join to use parse_optionsJames Booth2014-04-141-2/+2
|
* Check for duplicate options in option parserJames Booth2014-04-141-2/+19
|
* Added parse_optionsJames Booth2014-04-142-1/+43
|
* Command argument parsers set result argumentJames Booth2014-04-092-6/+12
|
* Removed strcpy callsJames Booth2014-04-021-14/+16
|
* Updated copyrightJames Booth2014-03-098-8/+8
|
* Test message when removing autojoin for non existent bookmarkJames Booth2014-02-022-2/+2
|
* Don't allow /alias to overwrite standard commandJames Booth2014-01-252-0/+17
|
* Added comments to autocomplete.hJames Booth2013-12-101-1/+7
|
* Tidy autocomplete.hJames Booth2013-12-091-1/+7
|
* Removed unused boolean result from autocomplete add and removeJames Booth2013-12-092-8/+8
|
* Removed unused prototypes from autocomplete.hJames Booth2013-12-091-6/+0
|
* Moved free in parse_args_with_freetextJames Booth2013-09-231-2/+2
| | | | issue #226
* Fixed memory leak in parse_args_with_freetextJames Booth2013-09-231-2/+2
| | | | issue #226
* Use stack rather than heap for autcomplete_param_with_funcJames Booth2013-09-231-2/+1
| | | | issue #226
* Fix quoted nicknames in /group addJames Booth2013-08-271-1/+1
| | | | fixes #233
* refactred autocomplete_removeDmitry Podgorny2013-08-261-19/+10
|
* refactored autocomplete_addDmitry Podgorny2013-08-262-34/+11
| | | | Now this function responsible for memory allocation
* most FREE_SET_NULL replaced with freeDmitry Podgorny2013-08-031-4/+2
| | | | | | 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.