summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-12-15Sort the configurations options by name in the documentationmathieui
(instead of chaos)
2012-12-15Fix a TB on python < 3.2mathieui
2012-12-15(should) Fix #2175 ; prevent bugs caused by tab gapsmathieui
2012-12-15Fix #2172 (select which rooms are logged)mathieui
2012-12-15Make /w command better.Florent Le Coz
fix #2185
2012-12-15Fix the '^?' characters appearingmathieui
2012-12-15In user lists, the upper line is now the upper most person.Florent Le Coz
This means you cannot scroll too high. fix #2180
2012-12-15Fix the position of the ++ indicator in muc user list when asc sort is in use.Florent Le Coz
fix #2181
2012-12-15Add support for /set <option> toggle, which toggles the current valueFlorent Le Coz
fix #2184
2012-12-15Introduce a special "reverse" value for the COLOR_HIGHLIGHT_NICK theme option.Florent Le Coz
If COLOR_HIGHLIGHT_NICK = "reverse", the highlight nick will be in reverse mode. fix #2165
2012-12-15Do not use COLOR_HIGHLIGHT_NICK for things not related to highlighted nicks.Florent Le Coz
2012-12-14Use get_wch() if available, otherwise use the old (maybe buggy) method.Florent Le Coz
This makes it possible to read the ctrl+arrows keys with python3.3, assign ctrl+left/right to next/previous tab, in the default config.
2012-12-13bugfix: count roster list length by real listed item and not count filtered ↵Łabędź
items bugfix: use cache table of roster (created on every refresh) to get selected row object, fixing bad row selecting when jumping over group (was changing pos variable and not selected_row while moving to next contact after group)
2012-12-07Add a new show_timestamps option to hide/show timestamps in text buffers.Florent Le Coz
2012-12-05Sort items in /helpmathieui
2012-11-30Force a resize of the interface whenever we /set something.Florent Le Coz
This avoid some garbage on the screen when we set an option that changes the behaviour of the UI.
2012-11-30Add a hide_user_lits option that does what it says.Florent Le Coz
fix #2170
2012-11-30Fix a byte value in the utf-8 decoding in poopt.Florent Le Coz
2012-11-23Fix the timedelta for python 3.1mathieui
2012-11-22Revert "Fix #2151 (cannot reload the OTR plugin)"mathieui
Importlib is utterly broken in python < 3.3, So revert for now This reverts commit a1c3d0dcdf0b202cbf861c27b04cb8630b68f89f. Conflicts: src/plugin_manager.py
2012-11-22Fix the slow searchmathieui
2012-11-22Make the search usable againmathieui
- Disable the history when searching - → allow moving the cursor around to select a contact when searching - fix refresh issues
2012-11-21Hack to make importlib work on python < 3.3mathieui
2012-11-18Fix #2154mathieui
2012-11-18For some reasons, importlib.machinery does not work on some platformsmathieui
2012-11-17Changes to the plugin_dir option are now taken into account on runtimemathieui
2012-11-17Fix #2151 (cannot reload the OTR plugin)mathieui
We were using the deprecated imp methods, now we use importlib
2012-11-17Fix the history numbers when re-joining a roommathieui
the <history/> element had a xmlns="" instead of the proper namespace.
2012-11-11Preload history into discussion windows (à la mcabber)mathieui
- New option load_log defaulting to 200 to indicate the number of lines to be loaded - It’s still very raw, and the format of the message does not match the format of the normal room history, for example - Works in the Private chat, MUC, and Conversation tabs Thanks to labedz <github@labedz.org> for the original code
2012-11-06Add a add_space_after_completion bool option.Florent Le Coz
fix #2150
2012-11-05Fix the completion for /infomathieui
2012-11-05Fix a traceback when opening a conversation with a resource from the rostermathieui
2012-11-05Catch IqTimeout exception when removing a contact from the roster.Florent Le Coz
2012-10-22Make the Executor class reliable.Florent Le Coz
Plugins do not need to escape the command arguments or remove the line breaks and care about how the will get parsed anymore, they just need to pass a list of args. Do not spawn an additional shell, for more clarity, simplicity and possibly security.
2012-10-15Fix a refresh issue with /messagemathieui
2012-10-15Fixes #2368 (/join /nick not working)mathieui
2012-10-15Prettify the /names commandmathieui
2012-10-15Fix the number of connected contacts/total number in the rostermathieui
2012-10-15Put back the “truc@chose.com is now online” messagesmathieui
2012-10-14Fix a traceback on completion_versionmathieui
2012-10-14Rename /connect to /reconnect and make it rostertab-onlymathieui
2012-10-14Also add the decorators modulemathieui
2012-10-14Do not display "None" in the /self commandmathieui
2012-10-14Add decorators to handle refreshs more easilymathieui
(and fix one more issue with the refresh in the roster)
2012-10-14Add a space after a nick completion not at the start of the line.Florent Le Coz
2012-10-14Do not quotify the status in /status command.Florent Le Coz
2012-10-14Correctly use MORE instead of PLUS.Florent Le Coz
2012-10-14Fix a refresh issue on space in the rostermathieui
2012-10-14Should boost the roster speedmathieui
- use a generator instead of a listcomp - don’t use a JID for the resource
2012-10-13Fixes #2374 (Crash on " " in the MUC list)mathieui
- Also fixes arefresh issue (up&down keys didn’t refresh the win) - Rework the style of the Columns a bit (was 2-spaces indent & trailing spaces)