Skip to content

Commit

Permalink
build v3.2.0 for nc 12
Browse files Browse the repository at this point in the history
  • Loading branch information
sualko committed May 17, 2017
1 parent e3e1d60 commit 554ca9c
Show file tree
Hide file tree
Showing 14 changed files with 45 additions and 35 deletions.
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<name>JavaScript XMPP Chat</name>
<summary>Facebook-like chat</summary>
<description>Facebook-like chat with end-to-end encrypted conversation, video calls, multi-user rooms, XMPP and internal server backend.</description>
<version>3.2.0-beta.3</version>
<version>3.2.0</version>
<licence>agpl</licence>
<author mail="[email protected]">Klaus Herberth</author>
<author>Tobia De Koninck</author>
Expand Down
2 changes: 1 addition & 1 deletion build/appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<name>JavaScript XMPP Chat</name>
<summary>Facebook-like chat</summary>
<description>Facebook-like chat with end-to-end encrypted conversation, video calls, multi-user rooms, XMPP and internal server backend.</description>
<version>3.2.0-beta.3</version>
<version>3.2.0</version>
<licence>agpl</licence>
<author mail="[email protected]">Klaus Herberth</author>
<author>Tobia De Koninck</author>
Expand Down
9 changes: 6 additions & 3 deletions build/css/jsxc.oc.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* ojsxc v3.2.0-beta.3 - 2017-05-02
* ojsxc v3.2.0 - 2017-05-17
*
* Copyright (c) 2017 Klaus Herberth <[email protected]> <br>
* Released under the MIT license
*
* Please see http://www.jsxc.org/
*
* @author Klaus Herberth <[email protected]>
* @version 3.2.0-beta.3
* @version 3.2.0
* @license MIT
*/

Expand Down Expand Up @@ -2799,7 +2799,7 @@ fieldset[disabled] #jsxc_webrtc .checkbox label {
width: 14px;
height: 100%;
position: absolute;
left: -14px !important;
right: 100%;
top: 0;
z-index: 110;
background-color: transparent;
Expand Down Expand Up @@ -4443,6 +4443,9 @@ div.jsxc_video {
top: 45px;
z-index: 1500; }

#jsxc_toggleRoster {
width: 8px; }

#jsxc_windowList, #jsxc_windowListSB {
z-index: 1500; }

Expand Down
4 changes: 2 additions & 2 deletions build/js/eof.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* ojsxc v3.2.0-beta.3 - 2017-05-02
* ojsxc v3.2.0 - 2017-05-17
*
* Copyright (c) 2017 Klaus Herberth <[email protected]> <br>
* Released under the MIT license
*
* Please see http://www.jsxc.org/
*
* @author Klaus Herberth <[email protected]>
* @version 3.2.0-beta.3
* @version 3.2.0
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion build/js/jsxc/css/jsxc.css
Original file line number Diff line number Diff line change
Expand Up @@ -2552,7 +2552,7 @@ fieldset[disabled]
width: 14px;
height: 100%;
position: absolute;
left: -14px !important;
right: 100%;
top: 0;
z-index: 110;
background-color: transparent;
Expand Down
14 changes: 10 additions & 4 deletions build/js/jsxc/jsxc.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* jsxc v3.2.0-beta.2 - 2017-04-28
* jsxc v3.2.0 - 2017-05-17
*
* Copyright (c) 2017 Klaus Herberth <[email protected]> <br>
* Released under the MIT license
*
* Please see http://www.jsxc.org/
*
* @author Klaus Herberth <[email protected]>
* @version 3.2.0-beta.2
* @version 3.2.0
* @license MIT
*/

Expand All @@ -25,7 +25,7 @@ var jsxc = null, RTC = null, RTCPeerconnection = null;
*/
jsxc = {
/** Version of jsxc */
version: '3.2.0-beta.2',
version: '3.2.0',

/** True if i'm the master */
master: false,
Expand Down Expand Up @@ -3670,6 +3670,8 @@ jsxc.gui = {
$('[data-bid="' + bid + '"]').each(function() {
var el = $(this);

el.attr('data-status', pres);

if (!el.hasClass('jsxc_statusIndicator')) {
el = el.find('.jsxc_statusIndicator');
}
Expand Down Expand Up @@ -3801,7 +3803,11 @@ jsxc.gui = {
element.off('click').click(function(ev) {
ev.stopPropagation();

jsxc.gui.queryActions[action].call(jsxc, jid, params);
if (jsxc.xmpp.conn && jsxc.xmpp.conn.connected) {
jsxc.gui.queryActions[action].call(jsxc, jid, params);
} else {
jsxc.gui.showNotification($.t('no_connection'), $.t('You_have_to_go_online_'));
}

return false;
});
Expand Down
16 changes: 8 additions & 8 deletions build/js/jsxc/jsxc.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/js/jsxc/jsxc.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/js/jsxc/lib/jsxc.dep.js

Large diffs are not rendered by default.

15 changes: 8 additions & 7 deletions build/js/jsxc/lib/jsxc.dep.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/js/jsxc/lib/jsxc.dep.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/js/jsxc/lib/translation.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/js/ojsxc.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* ojsxc v3.2.0-beta.3 - 2017-05-02
* ojsxc v3.2.0 - 2017-05-17
*
* Copyright (c) 2017 Klaus Herberth <[email protected]> <br>
* Released under the MIT license
*
* Please see http://www.jsxc.org/
*
* @author Klaus Herberth <[email protected]>
* @version 3.2.0-beta.3
* @version 3.2.0
* @license MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ojsxc",
"version": "3.2.0-beta.3",
"version": "3.2.0",
"description": "Real-time chat app for Nextcloud",
"homepage": "http://www.jsxc.org/",
"bugs": "https://github.com/jsxc/jsxc/issues",
Expand Down

0 comments on commit 554ca9c

Please sign in to comment.