Commit graph

224 commits

Author SHA1 Message Date
mathieui
9885203c67 Update the plugins to use the PluginAPI
Also:
- Add get_conversation_messages() to PluginAPI
- Make plugins_autoload colon-separated instead of space-separated
    (for consistency)
- Replace a JID() with a safeJID() in the uptime plugin
2013-03-08 22:53:35 +01:00
mathieui
f40cfe2669 Add a show_s2s_errors config option (cf #2182) 2013-03-04 16:01:35 +01:00
mathieui
e861290d10 Add a plugins_conf_dir option 2013-03-03 00:24:18 +01:00
Florent Le Coz
1e60dc2cea Add the color of the resource (for dynamic conversations) in the dark theme. 2013-01-26 05:44:08 +01:00
mathieui
d0a8304e55 Add the save_status, status, and status_message options
(the name show is not intuitive, so I used status and status_message)
- The status is send when connecting, and is the same used when joining
  rooms
- save_status is true by default, and will make poezio save the status
  whenever it changes
- status and status_message are empty by default
2013-01-02 19:07:36 +01:00
mathieui
a1607c4c6e Fix #2082 (xml:lang)
This is now already done in sleekxmpp, so I added a “lang” configuration
option. TODO: use the locale of the system.
2012-12-31 14:00:09 +01:00
Florent Le Coz
e52992cb6c Fix the color of the information text in the dark plugin. 2012-12-17 05:10:43 +01:00
mathieui
08ca9bd5c5 Sort the configurations options by name in the documentation
(instead of chaos)
2012-12-15 22:57:57 +01:00
Florent Le Coz
786f0e7222 Introduce a special "reverse" value for the COLOR_HIGHLIGHT_NICK theme option.
If COLOR_HIGHLIGHT_NICK = "reverse", the highlight nick will be in reverse
mode.
fix #2165
2012-12-15 02:42:30 +01:00
Florent Le Coz
e2592f5cdf Add a new show_timestamps option to hide/show timestamps in text buffers. 2012-12-07 23:39:49 +01:00
Florent Le Coz
14cb5128b3 Fix a typo in the default conf 2012-11-30 15:14:47 +01:00
Florent Le Coz
5bfbbb2c24 Add a hide_user_lits option that does what it says.
fix #2170
2012-11-30 15:14:47 +01:00
mathieui
6781f67e80 Preload history into discussion windows (à la mcabber)
- 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-11 16:01:53 +01:00
Florent Le Coz
7f7ec57f40 Add a add_space_after_completion bool option.
fix #2150
2012-11-06 18:02:31 +00:00
mathieui
09ff076bc4 Rewrite the tab number handling
- Now the tab number is computed instead of assigned and fixed
- Added tabs.GapTab to keep the old behaviour
- Added a create_gaps option, defaults to true (may change in the
  future)
- If there are gaps before using /set to change the option to false,
  they will be removed.
(this is a preparation for the move_tab command)
2012-09-26 01:54:20 +02:00
Johannes Krude
affdcb07b4 added muc_history_length support 2012-09-02 14:06:04 +02:00
mathieui
8c0b3f8ae5 Add a filter_info_messages option
- This option takes a list of words separated by colons
- All the messages containing those words will not be shown
2012-08-05 13:08:06 +02:00
mathieui
0cb39b32a4 Do not generate invalid jids (e.g. localpart@domainpart/)
This is in prevision of a sleekxmpp update with JID validation.
Also, comment the “server” option in the config file a bit better.
2012-08-01 20:10:00 +02:00
mathieui
9905646184 Various changes to the roster sorting
- Change the separator from _ to :
- Move the functions away in another module to avoir cluttering the
  roster code
- Add a case-sensitive sort (“sname”)
2012-08-01 14:42:02 +02:00
mathieui
c890fefbc4 Add an "online" contact sorting method
- put the online contacts at the beginning of the list
- allows, e.g. jid_reverse_online_reverse, to put offline contacts at
  the start of the group, in alphabetical order
2012-08-01 01:36:18 +02:00
mathieui
71f813af28 Add a roster_group_sort option, which works like roster_sort
- defaults to "name" (sort by group name)
- document it
- also, micro-optimize get_nb_connected_contacts()
2012-08-01 01:06:57 +02:00
mathieui
1625a4f41f Add a roster_sort option to sort the contacts inside the roster groups
- defaults to jid_show (which means that they are sorted into sub-groups
  by show and are sorted by JID inside those)
- See the default config file or the documentation for details
2012-07-31 23:40:53 +02:00
mathieui
ee97ba6b6c Make the autorejoin option work with bans, too, and fix the documentation 2012-07-31 13:38:53 +02:00
mathieui
88d32a7bc4 Add an autorejoin_delay option
- document it
- works in per-tab config too
2012-07-30 19:05:20 +02:00
mathieui
82e242305d Remove the shell_completion
- completion is normal with no way to change it
(shell_completion was buggy)
- remove it in the default config and in the doc too
2012-07-19 02:09:24 +02:00
mathieui
737c6aae43 Fix a comment in the default config file 2012-06-01 22:46:58 +02:00
mathieui
32f8ada92d Put the personal words in the last words completion (M-/)
(instead of the normal completion)
2012-05-23 16:34:07 +02:00
mathieui
12bd9b589c Add personal words completion - Fixes #1723
This commits adds a “words” variable to the configuration file. This
variable must contain a list of words, separated by colons (:).
Those words will then be completed upon tab completion in the chatrooms,
private conversations, and direct conversations.
2012-05-23 16:25:53 +02:00
mathieui
b36247e7c9 Remove the unused “port” option.
custom_port is already used instead.
2012-05-22 20:04:41 +02:00
mathieui
0f8a5abdc0 Add an option to always show the separator - Fixes #2240 2012-05-17 16:55:31 +02:00
mathieui
0c6a0abe86 Document some more options 2012-05-10 19:25:32 +02:00
mathieui
abe8c0ab71 Add a show_roster_jids option 2012-04-19 00:20:03 +02:00
mathieui
25a9a36201 Document the new options 2012-04-18 15:57:43 +02:00
mathieui
27a7bfc92c Add a whitespace_interval option 2012-03-13 18:46:02 +01:00
mathieui
5c412a66b8 Add a ca_cert_path option 2012-03-09 00:48:49 +01:00
mathieui
497e9fc685 Added doc for ignore_certificate and certificate options 2012-03-09 00:36:58 +01:00
mathieui
c7da566f0a Fixes #2324 2012-02-15 23:01:50 +01:00
mathieui
c26ff221fd Documentation update 2012-02-15 22:29:13 +01:00
Florent Le Coz
695a7ebeba Merge branch 'master' of https://git.louiz.org/poezio 2012-02-15 20:10:00 +01:00
Florent Le Coz
0606c2b351 Add the new option in the configuration file. 2012-02-15 20:09:44 +01:00
mathieui
b89cd8fd83 Fixes #2303 (add user_list_sort option) 2012-02-14 11:49:09 +01:00
Florent Le Coz
9534b5252b Add ATTENTION colors to dark theme 2012-01-27 19:35:10 +01:00
mathieui
bbcd9c631c Add an auto_reconnect option 2012-01-26 17:21:13 +01:00
mathieui
825d5a6dd1 Beep when receiving a MUC invitation (by default) 2012-01-26 10:05:34 +01:00
mathieui
8deb901253 Doc/config file for this new option 2011-11-27 13:06:49 +01:00
mathieui
d3e74edfa4 Add the new option to the default config file 2011-11-26 23:32:19 +01:00
Florent Le Coz
a40199d8ef Add an option to display vertical tabs from bottom to top. 2011-11-16 02:23:40 +01:00
Florent Le Coz
034a2bde2c Update the dark theme for the vertical tabs. 2011-11-16 02:09:31 +01:00
Florent Le Coz
1777d7414d Document the two new options. 2011-11-16 02:09:30 +01:00
mathieui
2dc4ec3bad Doc for custom_host and custom_port (config file and asciidoc) 2011-11-10 17:20:47 +01:00
Florent Le Coz
458e853874 Merge branch 'master' of https://git.louiz.org/poezio into plugins 2011-11-05 01:42:50 +01:00
Florent Le Coz
7e8ea8e47f Merge branch 'doc' 2011-11-03 03:42:19 +01:00
Florent Le Coz
ebef15ec40 Add configure and keys documentation, also edit some default configuration values. 2011-11-02 20:21:09 +01:00
Emmanuel Gil Peyrot
dac8a12abf Add a config option that display the nick in join/part/status
change/etc. in that user color. Fixes #2282.
2011-11-01 17:14:43 +01:00
Florent Le Coz
0451127ff8 Merge branch 'master' into plugins 2011-10-29 07:20:10 +02:00
mathieui
a8b3909fde French → English 2011-10-24 21:27:37 +02:00
Florent Le Coz
0764708f7b Set room to poezio@muc.poezio.eu 2011-10-16 21:55:14 +02:00
Florent Le Coz
b6cfd03300 add color for participant none in dark theme 2011-09-30 17:34:40 +02:00
Florent Le Coz
deea31d9b7 merge missing changeset from default into plugin, so both branches are up to date 2011-09-29 00:25:01 +02:00
Florent Le Coz
cb4f095291 [zorun] update man, add key bindings descriptions, etc 2011-09-29 00:18:08 +02:00
Florent Le Coz
c80022e816 merge default into plugins branch. So that branch is still up to date too 2011-09-25 20:12:43 +02:00
Florent Le Coz
fa5044f423 Create dark theme with 256 colours support 2011-09-25 20:11:10 +02:00
Florent Le Coz
674f151c38 Default theme is now ok, I think 2011-09-25 19:24:14 +02:00
Florent Le Coz
cac130e754 Autoload plugins 2011-09-24 23:44:52 +02:00
Florent Le Coz
9432c755ae Add plugins_dir to default conf 2011-09-24 22:29:02 +02:00
mathieui
2fe05e12a4 Fixes #2247 2011-09-19 01:17:01 +02:00
mathieui
7a31299292 Add a color state for disconnected rooms (Fixes #2166) 2011-09-12 10:56:02 +02:00
Florent Le Coz
eb180ed52e Add (optional) lazy resize, and also fix the screen becoming empty when resizing to a lower width. 2011-09-09 19:12:20 +02:00
Florent Le Coz
94436e075b Fix a tb on invalid show in presence from a muc
(Displays a warning in that case, so that we can laugh about it.)
2011-08-11 23:31:03 +02:00
Florent Le Coz
a99257ad9a Key bindings \o/ 2011-07-03 02:06:40 +02:00
Florent Le Coz
b470c7875f Beep() on highlight/message/private-messages (configurable) 2011-06-27 22:01:57 +02:00
Florent Le Coz
9889baf0ce Make the information messages "pop" the information buffer temporarly 2011-04-16 18:07:14 +02:00
Florent Le Coz
6cd5f8d4f7 Fix the dispay of links in xhtml messages. Reenabling xhtml-im by default 2011-04-10 16:44:26 +02:00
Florent Le Coz
cb1abbd945 Disable xhtml-im by default 2011-04-04 19:19:27 +02:00
Florent Le Coz
a0248d4324 Change the highlight color of the default theme 2011-03-29 16:48:25 +02:00
Florent Le Coz
8b032a6ece Fix the highlight (now the nick is colored, not the message itself) 2011-03-29 14:27:30 +02:00
Florent Le Coz
dcd29c636f Change how colors are handled. With \x19x etc
Should work like before and be a little lighter on the RA
2011-03-29 12:44:19 +02:00
Florent Le Coz
3084a9cff7 Do not send chat states if send_chat_states = false in config 2011-02-24 20:41:52 +01:00
Florent Le Coz
85d645b7d2 Automated merge with http://hg.louiz.org/poezio 2011-02-14 14:54:56 +01:00
Florent Le Coz
4b31e5acf1 Make the number of lines and messages kept in memory configurable
and lower (a lot) the number of lines kept in the info_win buffers
This lower the memory usage.
2011-02-14 14:54:26 +01:00
Florent Le Coz
1a058c3579 Make it possible to define bold in the theme files 2011-02-13 22:26:05 +01:00
Florent Le Coz
7509fb0002 Prompt password if no password is provided in config file 2011-01-13 23:20:17 +01:00
Florent Le Coz
c2d1bf211f man page typo 2011-01-12 21:39:13 +01:00
Florent Le Coz
b10fd0d229 Update CHANGELOG and s/codingteam.net/dev.louiz.org/ 2011-01-12 21:23:03 +01:00
Florent Le Coz
89ed926096 Vcard support removed, btw 2011-01-12 21:01:08 +01:00
Florent Le Coz
17aeebce3a Update man page 2011-01-12 20:54:32 +01:00
Florent Le Coz
6d4e5c069e Finish the two default themes
And remove the automatic copy of the config files
2011-01-12 20:09:48 +01:00
Florent Le Coz
67d3622e1d Update the default MUC in default config 2011-01-10 17:07:16 +01:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
cfc3309009 restaure software version and local time 2011-01-09 00:09:51 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
94f44a5254 show_inactive_tabs lets the other chose if she wants to display ALL tabs or just those with activity 2011-01-01 13:17:54 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
c77842e1be fixed #1892 save folded rosters and info_win_height in the config file 2010-12-17 14:36:14 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
5fa43e61e1 add some details in man page 2010-11-23 13:33:34 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
2c92d097a1 typo 2010-11-23 13:31:25 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
0216ac29db Do not refresh the screen on each input 2010-11-15 13:16:30 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
f4d4a205f1 a few renamings, and some other stuff 2010-11-15 11:59:09 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
545902be7d ConversationTab interface 2010-11-10 21:15:08 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
b0d73d6b52 default config update 2010-10-31 18:59:31 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
bc3dc5c604 fix man page 2010-10-25 09:02:00 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
d4e3e51c1f update e-mail address and README 2010-10-04 01:45:16 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
118a4c9b95 this time it should be ok :^) 2010-09-11 02:12:52 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
dc13b82bd4 only have 64 colours, so everything works fine on every terminal, even on tmux. Fixed #1824 2010-09-11 01:50:18 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
d2fef9112d Well, and add the theme, btw 2010-08-22 16:42:45 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
107a9e99e3 also this 2010-08-22 16:34:14 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
b512ae587c add man page. fixed #1670 2010-08-07 23:26:55 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
4f1a38535e Alternative nickname. fixed #1711 2010-08-07 00:57:36 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
432bab0b6b logs are now xdg compliant, fixed #1520 2010-07-01 22:01:09 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
cf88579ec7 Use louiz for the default nick, fixed #1535 2010-06-30 09:56:03 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
a35866ba8d code cleanup before 0.6 beta 2010-06-13 16:01:38 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
ff33a84de7 logs work. fixed #1108 2010-06-13 02:19:01 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
d03ce7e869 fix the hide_join_exit and hide_status_change options not working, also don't send the vcard if we are not using anonymous auth 2010-06-13 01:30:06 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
36c5269b0e non-anonymous authentication, fixed #1185 2010-05-21 13:16:40 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
d80a16ac9c Display the status change and/or disconnect for recent-speakers only. fixed #1288 2010-05-11 16:45:14 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
f7ae12fc83 Fix some details in the default conf 2010-05-10 15:18:18 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
baaf910283 don't use proxy (default) 2010-02-16 13:37:40 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
da5a8aa8d3 fixed #1151 2010-02-16 13:37:08 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
64d9f44833 fixed #1138 #1111 2010-02-14 03:51:03 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
d72780d58d debut de vcard : les avatars 2010-02-13 15:18:39 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
808c0854e8 fixed #1163 2010-02-13 01:08:44 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
b421515598 #fixed 1160 2010-02-12 03:30:40 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
66ea0ea1c1 fixed #1112 2010-02-12 02:32:50 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
b9a05fe48a changement de la police du logo 2010-02-09 00:53:21 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
246761b7a8 /usr/bin/environ c'est mieux 2010-02-01 20:28:33 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
747674a5ec fix resize problem and default_nick 2010-01-31 15:35:59 +00:00
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13
9faeb0674c cleanup, launch.sh, makefile 2010-01-31 05:33:54 +00:00