Comparar commits

...

5 Commits

Autor SHA1 Mensagem Data
sualko d6da5c217e build 0.7.1 2014-03-18 12:05:30 +01:00
sualko 26af2b97c4 fix unique message id 2014-03-18 11:28:10 +01:00
sualko 47ec163d10 Revert "build v0.7.1"
This reverts commit 9871b696ee.
2014-03-11 00:27:27 +01:00
sualko 9871b696ee build v0.7.1 2014-03-11 00:18:52 +01:00
Klaus 9eb372e155 Fix emoticons 2014-03-11 00:03:11 +01:00
5 arquivos alterados com 17 adições e 12 exclusões
+5
Ver Arquivo
@@ -1,3 +1,8 @@
v0.7.1 / 2014-03-18
===
- fix emoticons
- fix unique message id
v0.7.0 / 2014-03-07
===
- add sound notifications
+1 -1
Ver Arquivo
@@ -1,6 +1,6 @@
{
"name": "jsxc",
"version": "0.7.0",
"version": "0.7.1",
"description": "Real-time chat app",
"homepage": "http://jsxc.org/",
"license": "MIT",
+6 -6
Ver Arquivo
@@ -1,5 +1,5 @@
/**
* jsxc v0.7.0 - 2014-03-07
* jsxc v0.7.1 - 2014-03-18
*
* Copyright (c) 2014 Klaus Herberth <klaus@jsxc.org> <br>
* Released under the MIT license
@@ -7,7 +7,7 @@
* Please see http://jsxc.org/
*
* @author Klaus Herberth <klaus@jsxc.org>
* @version 0.7.0
* @version 0.7.1
*/
var jsxc;
@@ -22,7 +22,7 @@ var jsxc;
*/
jsxc = {
/** Version of jsxc */
version: '0.7.0',
version: '0.7.1',
/** True if i'm the master */
master: false,
@@ -1983,7 +1983,7 @@ var jsxc;
var chat = jsxc.storage.getUserItem('chat_' + cid) || [];
var data = jsxc.storage.getUserItem('buddy_' + cid);
var html_msg = msg;
var uid = jsxc.xmpp.conn.getUniqueId('msg');
var uid = new Date().getTime() + ':msg';
if (chat.length > jsxc.options.numberOfMsg) {
chat.pop();
@@ -2068,7 +2068,7 @@ var jsxc;
var msgDiv = $("<div>");
msgDiv.addClass('jsxc_chatmessage jsxc_' + direction);
msgDiv.attr('id', uid);
msgDiv.text(msg);
msgDiv.html(msg);
if (received) {
msgDiv.addClass('jsxc_received');
@@ -2247,7 +2247,7 @@ var jsxc;
<div class="jsxc_avatar">☺</div>\
</div>\
<div id="jsxc_menu">\
<span></span>\
<span></span>\
<ul>\
<li class="jsxc_muteNotification">%%Mute%%</li>\
<li class="jsxc_addBuddy">%%Add_buddy%%</li>\
+2 -2
Ver Arquivo
@@ -1,5 +1,5 @@
/**
* jsxc v0.7.0 - 2014-03-07
* jsxc v0.7.1 - 2014-03-18
*
* Copyright (c) 2014 Klaus Herberth <klaus@jsxc.org> <br>
* Released under the MIT license
@@ -7,7 +7,7 @@
* Please see http://jsxc.org/
*
* @author Klaus Herberth <klaus@jsxc.org>
* @version 0.7.0
* @version 0.7.1
*/
/* jsxc, Strophe, SDPUtil, getUserMediaWithConstraints, setupRTC, jQuery */
+3 -3
Ver Arquivo
@@ -1971,7 +1971,7 @@ var jsxc;
var chat = jsxc.storage.getUserItem('chat_' + cid) || [];
var data = jsxc.storage.getUserItem('buddy_' + cid);
var html_msg = msg;
var uid = jsxc.xmpp.conn.getUniqueId('msg');
var uid = new Date().getTime() + ':msg';
if (chat.length > jsxc.options.numberOfMsg) {
chat.pop();
@@ -2056,7 +2056,7 @@ var jsxc;
var msgDiv = $("<div>");
msgDiv.addClass('jsxc_chatmessage jsxc_' + direction);
msgDiv.attr('id', uid);
msgDiv.text(msg);
msgDiv.html(msg);
if (received) {
msgDiv.addClass('jsxc_received');
@@ -2235,7 +2235,7 @@ var jsxc;
<div class="jsxc_avatar">☺</div>\
</div>\
<div id="jsxc_menu">\
<span></span>\
<span></span>\
<ul>\
<li class="jsxc_muteNotification">%%Mute%%</li>\
<li class="jsxc_addBuddy">%%Add_buddy%%</li>\