Commit 6cdd7937 authored by JC Brand's avatar JC Brand

Update docs due to recent pull requests.

parent 152d4886
...@@ -217,6 +217,7 @@ ...@@ -217,6 +217,7 @@
this.expose_rid_and_sid = false; this.expose_rid_and_sid = false;
this.forward_messages = false; this.forward_messages = false;
this.hide_muc_server = false; this.hide_muc_server = false;
this.hide_offline_users = false;
this.i18n = locales.en; this.i18n = locales.en;
this.keepalive = false; this.keepalive = false;
this.message_carbons = false; this.message_carbons = false;
...@@ -226,7 +227,6 @@ ...@@ -226,7 +227,6 @@
this.roster_groups = false; this.roster_groups = false;
this.show_controlbox_by_default = false; this.show_controlbox_by_default = false;
this.show_only_online_users = false; this.show_only_online_users = false;
this.hide_offline_users = false;
this.show_toolbar = true; this.show_toolbar = true;
this.storage = 'session'; this.storage = 'session';
this.use_otr_by_default = false; this.use_otr_by_default = false;
...@@ -258,14 +258,15 @@ ...@@ -258,14 +258,15 @@
'connection', 'connection',
'debug', 'debug',
'default_box_height', 'default_box_height',
'keepalive',
'message_carbons',
'expose_rid_and_sid', 'expose_rid_and_sid',
'forward_messages', 'forward_messages',
'fullname', 'fullname',
'hide_muc_server', 'hide_muc_server',
'hide_offline_users',
'i18n', 'i18n',
'jid', 'jid',
'keepalive',
'message_carbons',
'no_trimming', 'no_trimming',
'play_sounds', 'play_sounds',
'prebind', 'prebind',
...@@ -273,7 +274,6 @@ ...@@ -273,7 +274,6 @@
'roster_groups', 'roster_groups',
'show_controlbox_by_default', 'show_controlbox_by_default',
'show_only_online_users', 'show_only_online_users',
'hide_offline_users',
'show_toolbar', 'show_toolbar',
'sid', 'sid',
'storage', 'storage',
...@@ -2482,7 +2482,7 @@ ...@@ -2482,7 +2482,7 @@
var lines = $input.val().split('\n'); var lines = $input.val().split('\n');
for( var vk=0; vk<lines.length; vk++) { for( var vk=0; vk<lines.length; vk++) {
var val = $.trim(lines[vk]); var val = $.trim(lines[vk]);
if (val == '') if (val === '')
continue; continue;
value.push(val); value.push(val);
} }
......
...@@ -17,6 +17,9 @@ Changelog ...@@ -17,6 +17,9 @@ Changelog
* #251 Non-minified builds for debugging. [jcbrand] * #251 Non-minified builds for debugging. [jcbrand]
* #264 Remove unnecessary commas for ie8 compatibility. [Deuteu] * #264 Remove unnecessary commas for ie8 compatibility. [Deuteu]
* #267 Unread messages counter wrongly gets incremented by chat state notifications. [Deuteu] * #267 Unread messages counter wrongly gets incremented by chat state notifications. [Deuteu]
* #278 Unread messages counter doesn't unbind it's events. [Deuteu]
* #279 Handle more field types for MUC config forms. [gbonvehi]
* #280 New config option, ``hide_offline_users`` [gbonvehi]
0.8.3 (2014-09-22) 0.8.3 (2014-09-22)
------------------ ------------------
......
...@@ -1195,6 +1195,13 @@ Hide the ``server`` input field of the form inside the ``Room`` panel of the ...@@ -1195,6 +1195,13 @@ Hide the ``server`` input field of the form inside the ``Room`` panel of the
controlbox. Useful if you want to restrict users to a specific XMPP server of controlbox. Useful if you want to restrict users to a specific XMPP server of
your choosing. your choosing.
hide_offline_users
------------------
Default: ``false``
If set to ``true``, then don't show offline users.
i18n i18n
---- ----
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment