Commit 10da240e authored by JC Brand's avatar JC Brand

New release 2.0.0

parent 713922a9
{
"name": "converse.js",
"description": "Web-based XMPP/Jabber chat client written in javascript",
"version": "1.0.6",
"version": "2.0.0",
"license": "MPL-2.0",
"devDependencies": {
"jasmine": "https://github.com/jcbrand/jasmine.git#1_3_x",
......
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -546,16 +546,20 @@ __p += '\n <span class="spinner login-submit"/>\n ';
__p += '\n ';
if (!auto_login) { ;
__p += '\n ';
if (authentication == LOGIN) { ;
if (authentication == LOGIN || authentication == EXTERNAL) { ;
__p += '\n <label>' +
((__t = (label_username)) == null ? '' : __t) +
'</label>\n <input type="text" name="jid" placeholder="' +
((__t = (placeholder_username)) == null ? '' : __t) +
'">\n <label>' +
'">\n ';
if (authentication !== EXTERNAL) { ;
__p += '\n <label>' +
((__t = (label_password)) == null ? '' : __t) +
'</label>\n <input type="password" name="password" placeholder="' +
'</label>\n <input type="password" name="password" placeholder="' +
((__t = (placeholder_password)) == null ? '' : __t) +
'">\n <input class="pure-button button-primary" type="submit" value="' +
'">\n ';
} ;
__p += '\n <input class="pure-button button-primary" type="submit" value="' +
((__t = (label_login)) == null ? '' : __t) +
'">\n <span class="conn-feedback"></span>\n ';
} ;
......@@ -988,10 +992,10 @@ __p += ' selected="selected" ';
__p += '\n value="online">' +
((__t = (label_online)) == null ? '' : __t) +
'</option>\n <option ';
if (chat_state === 'chatty') { ;
if (chat_state === 'chat') { ;
__p += ' selected="selected" ';
} ;
__p += '\n value="chatty">' +
__p += '\n value="chat">' +
((__t = (label_chatty)) == null ? '' : __t) +
'</option>\n <option ';
if (chat_state === 'dnd') { ;
......
# Changelog
## 2.0.0 (Unreleased)
## 2.0.0 (2016-09-16)
- Backwards incompatible change: the `_super` attribute in plugins is now named `__super__`. [jcbrand]
- Continuously attempt to resurrect dead connections when `auto_reconnect` is `true`. [jcbrand]
- Update the 'rooms' API to allow user to pass in room attributes. [jcbrand]
......
......@@ -48,9 +48,9 @@ copyright = u'2014, JC Brand'
# built documents.
#
# The short X.Y version.
version = '1.0.6'
version = '2.0.0'
# The full version, including alpha/beta/rc tags.
release = '1.0.6'
release = '2.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
......
......@@ -35,7 +35,7 @@ authentication
--------------
* Default: ``login``
* Allowed values: `login`_, `anonymous`_, `prebind`_
* Allowed values: `login`_, `external`, `anonymous`_, `prebind`_
This option states the way converse.js will authenticate.
......@@ -46,6 +46,16 @@ The default means is ``login``, which means that the user either logs in manuall
username and password, or automatically if used together with ``auto_login=true``
and ``jid`` and ``password`` values. See `auto_login`_.
external
~~~~~~~~
This setting will still show a login form and submit button, but the form will
only contain an input for the user's JID, *not* for the password.
That's because this setting is intended to be used when you are using
SASL-EXTERNAL as authentication mechanism, in which case a password is usually
not required.
anonymous
~~~~~~~~~
......
......@@ -18,6 +18,10 @@
null,
"ek"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
"tik tans"
......@@ -206,13 +210,21 @@
null,
"Klik om hierdie kontakte te verskuil"
],
"Attempting to reconnect": [
"Reconnecting": [
null,
"Herkonnekteer"
],
"The connection has dropped, attempting to reconnect.": [
null,
""
],
"Error": [
"Disconnected": [
null,
"Fout"
"Ontkoppel"
],
"The connection to the chat server has dropped": [
null,
""
],
"Authenticating": [
null,
......@@ -594,10 +606,6 @@
null,
"wil jou kontak wees"
],
"An error has occured": [
null,
"'n Fout het voorgekom"
],
"Re-establishing encrypted session": [
null,
"Herstel versleutelde sessie"
......
This diff is collapsed.
......@@ -19,6 +19,10 @@
null,
"jo"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
"està escrivint"
......@@ -203,9 +207,17 @@
null,
"Feu clic per amagar aquests contactes"
],
"Error": [
"The connection has dropped, attempting to reconnect.": [
null,
"Error"
""
],
"Disconnected": [
null,
""
],
"The connection to the chat server has dropped": [
null,
""
],
"Authenticating": [
null,
......@@ -567,10 +579,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
"S'està tornant a establir la sessió xifrada"
......
This diff is collapsed.
This diff is collapsed.
......@@ -15,6 +15,10 @@
null,
"Ich"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
"tippt"
......@@ -187,13 +191,21 @@
null,
"Hier klicken um diese Kontakte zu verstecken"
],
"Attempting to reconnect": [
"Reconnecting": [
null,
"Verbindung wiederherstellen …"
],
"The connection has dropped, attempting to reconnect.": [
null,
""
],
"Disconnected": [
null,
""
],
"Error": [
"The connection to the chat server has dropped": [
null,
"Fehler"
""
],
"Authenticating": [
null,
......@@ -555,10 +567,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
"Verschlüsselte Sitzung wiederherstellen"
......
This diff is collapsed.
......@@ -19,6 +19,10 @@
null,
""
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
""
......@@ -203,11 +207,23 @@
null,
""
],
"Attempting to reconnect": [
"Reconnecting": [
null,
""
],
"The connection has dropped, attempting to reconnect.": [
null,
""
],
"Disconnected": [
null,
""
],
"Error": [
"The connection to the chat server has dropped": [
null,
""
],
"Connection error": [
null,
""
],
......@@ -215,6 +231,10 @@
null,
""
],
"Authentication failed.": [
null,
""
],
"Authentication Failed": [
null,
""
......@@ -595,10 +615,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
""
......
This diff is collapsed.
......@@ -15,6 +15,10 @@
null,
"yo"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
""
......@@ -163,13 +167,21 @@
null,
"Chat"
],
"Attempting to reconnect": [
"Reconnecting": [
null,
"Reconectando"
],
"The connection has dropped, attempting to reconnect.": [
null,
""
],
"Error": [
"Disconnected": [
null,
"Desconectado"
],
"The connection to the chat server has dropped": [
null,
"Error"
""
],
"Authenticating": [
null,
......@@ -507,10 +519,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
"Re-estableciendo sesión cifrada"
......
This diff is collapsed.
......@@ -15,6 +15,10 @@
null,
"moi"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
"écrit"
......@@ -191,13 +195,21 @@
null,
"Cliquez pour cacher ces contacts"
],
"Attempting to reconnect": [
"Reconnecting": [
null,
"Reconnexion"
],
"The connection has dropped, attempting to reconnect.": [
null,
""
],
"Error": [
"Disconnected": [
null,
"Déconnecté"
],
"The connection to the chat server has dropped": [
null,
"Erreur"
""
],
"Authenticating": [
null,
......@@ -559,10 +571,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
"Rétablissement de la session encryptée"
......
This diff is collapsed.
......@@ -15,6 +15,10 @@
null,
"אני"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
"מקליד(ה) כעת"
......@@ -195,9 +199,21 @@
null,
"לחץ כדי להסתיר את אנשי קשר אלה"
],
"Error": [
"Reconnecting": [
null,
"כעת מתחבר"
],
"The connection has dropped, attempting to reconnect.": [
null,
"שגיאה"
""
],
"Disconnected": [
null,
"מנותק"
],
"The connection to the chat server has dropped": [
null,
""
],
"Authenticating": [
null,
......@@ -559,10 +575,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
"בסס מחדש ישיבה מוצפנת"
......
This diff is collapsed.
......@@ -18,6 +18,10 @@
null,
"Én"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
"gépel..."
......@@ -202,9 +206,21 @@
null,
"A csevegő partnerek elrejtése"
],
"Error": [
"Reconnecting": [
null,
"Kapcsolódás"
],
"The connection has dropped, attempting to reconnect.": [
null,
"Hiba"
""
],
"Disconnected": [
null,
"Szétkapcsolva"
],
"The connection to the chat server has dropped": [
null,
""
],
"Authenticating": [
null,
......@@ -570,10 +586,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
"Titkosított kapcsolat újraépítése"
......
This diff is collapsed.
......@@ -14,6 +14,10 @@
null,
"saya"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
""
......@@ -162,13 +166,17 @@
null,
""
],
"Attempting to reconnect": [
"The connection has dropped, attempting to reconnect.": [
null,
""
],
"Error": [
"Disconnected": [
null,
"Kesalahan"
"Terputus"
],
"The connection to the chat server has dropped": [
null,
""
],
"Authenticating": [
null,
......@@ -498,10 +506,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
"Menyambung kembali sesi terenkripsi"
......
This diff is collapsed.
......@@ -15,6 +15,10 @@
null,
"me"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
"sta scrivendo"
......@@ -199,9 +203,17 @@
null,
"Clicca per nascondere questi contatti"
],
"Error": [
"The connection has dropped, attempting to reconnect.": [
null,
""
],
"Disconnected": [
null,
"Errore"
"Disconnesso"
],
"The connection to the chat server has dropped": [
null,
""
],
"Authenticating": [
null,
......@@ -567,10 +579,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
""
......
This diff is collapsed.
......@@ -15,6 +15,10 @@
null,
"私"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
""
......@@ -163,13 +167,17 @@
null,
""
],
"Attempting to reconnect": [
"The connection has dropped, attempting to reconnect.": [
null,
""
],
"Error": [
"Disconnected": [
null,
"エラー"
"切断中"
],
"The connection to the chat server has dropped": [
null,
""
],
"Authenticating": [
null,
......@@ -499,10 +507,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
"暗号化セッションの再接続"
......
This diff is collapsed.
......@@ -15,6 +15,10 @@
null,
"meg"
],
"A very large message has been received.This might be due to an attack meant to degrade the chat performance.Output has been shortened.": [
null,
""
],
"is typing": [
null,
"skriver"
......@@ -175,13 +179,21 @@
null,
"Klikk for å skjule disse kontaktene"
],
"Attempting to reconnect": [
"Reconnecting": [
null,
"Kobler til igjen"
],
"The connection has dropped, attempting to reconnect.": [
null,
""
],
"Disconnected": [
null,
""
],
"Error": [
"The connection to the chat server has dropped": [
null,
"Feil"
""
],
"Authenticating": [
null,
......@@ -535,10 +547,6 @@
null,
""
],
"An error has occured": [
null,
""
],
"Re-establishing encrypted session": [
null,
"Gjenopptar kryptert økt"
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
{
"name": "converse.js",
"version": "1.0.6",
"version": "2.0.0",
"description": "Browser based XMPP instant messaging client",
"main": "main.js",
"directories": {
......
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