about summary refs log tree commit diff stats
path: root/src/command
Commit message (Collapse)AuthorAgeFilesLines
* Free theme list after useJames Booth2015-02-091-5/+6
|
* Moved quote stripper to common, added testsJames Booth2015-02-081-26/+3
|
* Merge remote-tracking branch 'peterlvilim/quote-chars'James Booth2015-02-081-3/+34
|\ | | | | | | | | Conflicts: src/command/command.c
| * Strip quote chars from name autocompletePeter Vilim2015-01-141-0/+23
| |
* | Added code to generate HTML command reference for websiteJames Booth2015-02-082-0/+55
| |
* | Removed duplicate time_acJames Booth2015-02-061-4/+0
| |
* | Updated /wrap helpJames Booth2015-01-281-1/+1
| |
* | Renamed command group presence->presences to avoid clashJames Booth2015-01-282-2/+2
| |
* | Strip only trailing newline from eval_passwordJames Booth2015-01-281-1/+4
| |
* | Strip leading/trailing whitespace from result of eval_passwordJames Booth2015-01-281-0/+1
| | | | | | | | fixes #495
* | Simplified autocompleters and command historyJames Booth2015-01-164-360/+201
| |
* | Moved input line to inputwinJames Booth2015-01-151-3/+4
| |
* | Moved process_input to cmd_process_inputJames Booth2015-01-152-12/+58
|/
* Merge remote-tracking branch 'incertia/fixleak'James Booth2015-01-141-1/+1
|\
| * fix yet another potential leakWill Song2015-01-141-1/+1
| |
* | Don't free default account name until it has been lowercasedJames Booth2015-01-141-2/+2
|/
* fix the fix (memory leak)Simon Effenberg2015-01-141-1/+3
| | | | | the "fix a potential leak" from Will Song is not fully addressing the issue.. so now the "def" variable should definitely being freed
* Fixed segfault on eval_password due to moving popen callJames Booth2015-01-141-0/+8
|
* fix a potential leakWill Song2015-01-121-3/+3
|
* add a memory check just in caseWill Song2015-01-121-0/+4
|
* fix testsWill Song2015-01-121-1/+1
|
* eval_password code is now in cmd_connect so that it can be changedWill Song2015-01-121-1/+14
| | | | | without clearing it. eval_password errors are also now ignored, along with pclosing the popened eval_password.
* Merge remote-tracking branch 'peterlvilim/keyring'James Booth2015-01-132-4/+23
|\
| * Add support for evaluated passwordPeter Vilim2015-01-072-4/+23
| |
* | Merge remote-tracking branch 'savar/dynamic_input_block'James Booth2015-01-122-13/+72
|\ \
| * | adding preference option for dynamic input blockingSimon Effenberg2015-01-122-12/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | /inpblock is now having subcommands 'timeout' and 'dynamic' with: /inpblock timeout <milliseconds> and /inpblock dynamic <on|off> Defaults are: /inpblock timeout 500 /inpblock dynamic on To get the old behavior specify: /inpblock timeout 20 /inpblock dynamic off The dynamic mode will block incrementally after something should be written to the window or after a key was pressed. So pressing a key would set the timeout to 0ms and after 10 timeouts to the next bigger one. Example (with dynamic mode on): "/inpblock timeout 50" timeout series: 10x 0ms 10x 10ms (0ms + 10 times since last keypress) 10x 30ms (10ms + 20 times since last keypress) *x50ms until next key was pressed or
| * | trying to block (and save cpu power) more dynamicallySimon Effenberg2015-01-121-1/+1
|/ / | | | | | | | | | | | | | | | | instead of blocking too long if inpblock is set to something like 500ms the input timeout is not set directly to inpblock but is increasing dynamically from 0 to inpblock by a little algorithm FIXME: the call from the win_* method to the ui_input_* method looks wrong.. this causes a cross reference which shouldn't be
* | Merge remote-tracking branch 'incertia/exit-title'James Booth2015-01-123-7/+19
|\ \ | | | | | | | | | | | | | | | | | | Conflicts: src/command/command.c src/config/preferences.c src/config/preferences.h
| * | add exit title preference to group and add command for setting the preferenceWill Song2015-01-083-2/+22
| |/
* | Renamed titlebar preferenceJames Booth2015-01-122-8/+33
| |
* | Only show UI events for chat states when in sessionJames Booth2015-01-111-0/+4
| |
* | Added resource override for chat sessionsJames Booth2015-01-101-11/+2
| |
* | Added preferences for showing resource in titlebar and messagesJames Booth2015-01-102-11/+42
| |
* | Renamed resource -> resource_overrideJames Booth2015-01-101-2/+2
| |
* | Refactored chat session handling on sending messageJames Booth2015-01-042-118/+22
| |
* | Use resource in chat sessionsJames Booth2015-01-042-22/+104
|/
* Merge remote-tracking branch 'incertia/connect-default'James Booth2014-12-292-8/+76
|\ | | | | | | | | Conflicts: CHANGELOG
| * added warning about options not being usedWill Song2014-12-211-2/+4
| |
| * removing the account connected to the default account removes the default ↵Will Song2014-11-271-0/+6
| | | | | | | | account as well
| * /connect supports default accountWill Song2014-11-271-1/+13
| |
| * add some tooltip messages for /account and /connectWill Song2014-11-271-3/+6
| |
| * finish /account default acWill Song2014-11-271-0/+5
| |
| * add a bit of default account autocompleteWill Song2014-11-271-1/+10
| |
| * add default account property and commands associated with themWill Song2014-11-271-0/+31
| |
* | Fixed cmd_execute_default (resource instead of barejid)James Booth2014-12-291-1/+1
| |
* | Added chat_session_on_window_openJames Booth2014-12-281-12/+2
| |
* | Fixed chat state for non OTRJames Booth2014-12-282-125/+15
| |
* | Merge branch 'master' into chat-sessionsJames Booth2014-12-271-2/+1
|\ \
| * | Fixed /info command in roomsJames Booth2014-12-271-2/+1
| | |
* | | Moved chat states out of xmpp module for message send chatJames Booth2014-12-272-61/+160
|/ /