Skip to content

Commit

Permalink
New release: 0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Oct 12, 2015
1 parent 6344703 commit af77b31
Show file tree
Hide file tree
Showing 41 changed files with 4,155 additions and 3,878 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "converse.js",
"description": "Web-based XMPP/Jabber chat client written in javascript",
"version": "0.9.5",
"version": "0.9.6",
"license": "MPL-2.0",
"devDependencies": {
"jasmine": "https://github.com/jcbrand/jasmine.git#1_3_x",
Expand Down
2 changes: 1 addition & 1 deletion builds/converse.min.js

Large diffs are not rendered by default.

35 changes: 23 additions & 12 deletions builds/templates.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,13 @@ obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
with (obj) {
__p += '<div class="box-flyout" style="height: ' +
__p += '<div class="box-flyout" ';
if (height) { ;
__p += ' style="height: ' +
((__t = (height)) == null ? '' : __t) +
'px">\n <div class="dragresize dragresize-tm"></div>\n <div class="chat-head chat-head-chatbox">\n <a class="close-chatbox-button icon-close"></a>\n <a class="toggle-chatbox-button icon-minus"></a>\n <div class="chat-title">\n ';
'px" ';
} ;
__p += '>\n <div class="dragresize"></div>\n <div class="chat-head chat-head-chatbox">\n <a class="close-chatbox-button icon-close"></a>\n <a class="toggle-chatbox-button icon-minus"></a>\n <div class="chat-title">\n ';
if (url) { ;
__p += '\n <a href="' +
((__t = (url)) == null ? '' : __t) +
Expand Down Expand Up @@ -141,14 +145,14 @@ obj || (obj = {});
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
with (obj) {
__p += '<div class="box-flyout" style="height: ' +
__p += '<div class="box-flyout" ';
if (height) { ;
__p += ' style="height: ' +
((__t = (height)) == null ? '' : __t) +
'px"\n ';
if (minimized) { ;
__p += ' style="display:none" ';
'px" ';
} ;
__p += '>\n <div class="dragresize dragresize-tm"></div>\n <div class="chat-head chat-head-chatroom">\n <a class="close-chatbox-button icon-close"></a>\n <a class="toggle-chatbox-button icon-minus"></a>\n <a class="configure-chatroom-button icon-wrench" style="display:none"></a>\n <div class="chat-title"> ' +
((__t = ( name )) == null ? '' : __t) +
__p += '>\n <div class="dragresize"></div>\n <div class="chat-head chat-head-chatroom">\n <a class="close-chatbox-button icon-close"></a>\n <a class="toggle-chatbox-button icon-minus"></a>\n <a class="configure-chatroom-button icon-wrench" style="display:none"></a>\n <div class="chat-title"> ' +
((__t = ( _.escape(name) )) == null ? '' : __t) +
' </div>\n <p class="chatroom-topic"><p/>\n </div>\n <div class="chat-body"><span class="spinner centered"/></div>\n</div>\n';

}
Expand Down Expand Up @@ -256,11 +260,16 @@ return __p

this["templates"]["controlbox"] = function(obj) {
obj || (obj = {});
var __t, __p = '', __e = _.escape;
var __t, __p = '', __e = _.escape, __j = Array.prototype.join;
function print() { __p += __j.call(arguments, '') }
with (obj) {
__p += '<div class="box-flyout" style="height: ' +
__p += '<div class="box-flyout" ';
if (height) { ;
__p += ' style="height: ' +
((__t = (height)) == null ? '' : __t) +
'px">\n <div class="dragresize dragresize-tm"></div>\n <div class="chat-head controlbox-head">\n <ul id="controlbox-tabs"></ul>\n <a class="close-chatbox-button icon-close"></a>\n </div>\n <div class="controlbox-panes"></div>\n</div>\n';
'px" ';
} ;
__p += '>\n <div class="dragresize"></div>\n <div class="chat-head controlbox-head">\n <ul id="controlbox-tabs"></ul>\n <a class="close-chatbox-button icon-close"></a>\n </div>\n <div class="controlbox-panes"></div>\n</div>\n';

}
return __p
Expand Down Expand Up @@ -544,6 +553,8 @@ __p += '<div class="chat-message ' +
((__t = (extra_classes)) == null ? '' : __t) +
'" data-isodate="' +
((__t = (isodate)) == null ? '' : __t) +
'" data-msgid="' +
((__t = (msgid)) == null ? '' : __t) +
'">\n <span class="chat-message-' +
((__t = (sender)) == null ? '' : __t) +
'">' +
Expand Down Expand Up @@ -857,7 +868,7 @@ __p += '<dd class="available-chatroom">\n<a class="open-room" data-room-jid="' +
'"\n title="' +
((__t = (open_title)) == null ? '' : __t) +
'" href="#">' +
((__t = (name)) == null ? '' : __t) +
((__t = (_.escape(name))) == null ? '' : __t) +
'</a>\n<a class="room-info icon-room-info" data-room-jid="' +
((__t = (jid)) == null ? '' : __t) +
'"\n title="' +
Expand Down
5 changes: 3 additions & 2 deletions docs/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
Changelog
=========

0.9.6 (Unreleased)
0.9.6 (2015-10-12)
------------------

* Bugfix. Spinner doesn't disappear when scrolling up (when server doesn't support XEP-0313). [jcbrand]
* #462 Fix MUC rooms with names containing special characters not working [1st8]
* #467 Fix outgoing chat messages not having a msgid when being put into sessionStorage [1st8]
* #468 Fix [object Object] being sometimes shown as status [1st8]
* #472 Fix "Cannot read property 'splitOnce' of undefined" when typing /clear in a chat room. [jcbrand]
* #493 Roster wasn't being updated after a Roster push update [teseo, jcbrand]
* #496 Bugfix. Pings weren't being sent out. [teseo, jcbrand]
* #467 Fix outgoing chat messages not having a msgid when being put into sessionStorage [1st8]
* #499 Message not received due to non-unique message ids. [jcbrand]

0.9.5 (2015-08-24)
------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.9.5'
version = '0.9.6'
# The full version, including alpha/beta/rc tags.
release = '0.9.5'
release = '0.9.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 4 additions & 4 deletions locale/af/LC_MESSAGES/converse.json
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,10 @@
null,
"Fout: kon nie die opdrag uitvoer nie"
],
"Error: the \"": [
null,
""
],
"Change user's affiliation to admin": [
null,
""
Expand Down Expand Up @@ -794,10 +798,6 @@
null,
"Terug"
],
"The provider rejected your registration attempt. ": [
null,
"Die verskaffer het u registrasieversoek verwerp."
],
"XMPP Username:": [
null,
"XMPP Gebruikersnaam:"
Expand Down

0 comments on commit af77b31

Please sign in to comment.