about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into inp-utf8James Booth2015-01-154-17/+27
|\
| * Moved input to ui module, renamed ui_readlineJames Booth2015-01-154-17/+27
| |
* | Merge branch 'master' into inp-utf8James Booth2015-01-151-10/+9
|\|
| * Tidy main loopJames Booth2015-01-151-10/+9
| |
* | Merge branch 'master' into inp-utf8James Booth2015-01-153-59/+72
|\|
| * Moved process_input to cmd_process_inputJames Booth2015-01-153-59/+72
| |
* | Merge branch 'master' into inp-utf8James Booth2015-01-154-10/+10
|\|
| * Moved input size variable to ui moduleJames Booth2015-01-154-10/+10
| |
* | Merge branch 'master' into inp-utf8James Booth2015-01-154-11/+15
|\|
| * Moved string termination out of main loopJames Booth2015-01-152-1/+4
| |
| * Removed ch from main loopJames Booth2015-01-154-10/+11
| |
* | Merge branch 'master' into inp-utf8James Booth2015-01-154-53/+64
|\|
| * Tidy profanity.cJames Booth2015-01-151-10/+12
| |
| * Moved remimder notification code out of main loopJames Booth2015-01-154-43/+52
| |
| * Renamed notify remind timerJames Booth2015-01-151-4/+4
| |
* | Merge branch 'master' into inp-utf8James Booth2015-01-156-146/+139
|\|
| * Moved win_handle_page to window moduleJames Booth2015-01-153-113/+115
| |
| * Inlined ui_handle_special_keysJames Booth2015-01-153-15/+6
| |
| * Removed result from main loopJames Booth2015-01-144-9/+9
| |
| * Pass value rather than address of ch during main loopJames Booth2015-01-144-24/+24
| |
* | Calculate input win display size includes wide charactersJames Booth2015-01-141-12/+22
|/
* 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
|/
* Merge remote-tracking branch 'savar/fix_fix_memory_leak'James Booth2015-01-141-1/+3
|\
| * 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
* | Updated gitignoreJames Booth2015-01-141-0/+1
|/
* Fixed segfault on eval_password due to moving popen callJames Booth2015-01-141-0/+8
|
* Merge remote-tracking branch 'incertia/eval_pass-fixes'James Booth2015-01-143-14/+22
|\
| * 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-122-1/+2
| |
| * eval_password code is now in cmd_connect so that it can be changedWill Song2015-01-122-11/+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-133-1/+75
|\ \ | |/ |/|
| * Add unit tests for eval_passwordPeter Vilim2015-01-123-1/+75
| |
* | Updated CHANGELOGJames Booth2015-01-131-0/+1
| |
* | Show eval_password if exists on /account showJames Booth2015-01-131-8/+10
| |
* | Removed unused include, free eval_passwordJames Booth2015-01-132-1/+1
| |
* | Merge remote-tracking branch 'peterlvilim/keyring'James Booth2015-01-1313-23/+98
|\|
| * fgets: buffer sizePeter Vilim2015-01-073-6/+11
| |
| * fix for fgetsPeter Vilim2015-01-071-1/+1
| |
| * mergePeter Vilim2015-01-072-3/+5
| |\
| | * Add support for evaluated passwordPeter Vilim2015-01-076-9/+65
| | |
| * | Fix current testsPeter Vilim2015-01-075-11/+24
| | |
| * | iofixedPeter Vilim2015-01-074-8/+33
| | |
| * | Add support for evaluated passwordPeter Vilim2015-01-066-5/+35
| |/
* | Updated CHANGELOGJames Booth2015-01-121-0/+1
| |
* | Merge remote-tracking branch 'savar/dynamic_input_block'James Booth2015-01-1212-26/+126
|\ \
| * | adding preference option for dynamic input blockingSimon Effenberg2015-01-126-14/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | /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-127-11/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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