Skip to content

Commit

Permalink
Current version is 0.16.383:
Browse files Browse the repository at this point in the history
Psi+ was updated.
Iris was updated.
Plugins were updated.
Extra patches were updated.
  • Loading branch information
tehnick committed Sep 17, 2014
1 parent bde9c7c commit 3913f4b
Show file tree
Hide file tree
Showing 38 changed files with 159 additions and 270 deletions.
2 changes: 1 addition & 1 deletion iconsets.qrc
Expand Up @@ -96,7 +96,7 @@
<file>iconsets/system/default/notification_chat_receive.png</file>
<file>iconsets/system/default/notification_chat_send.png</file>
<file>iconsets/system/default/notification_chat_time.png</file>
<file>iconsets/system/default/tango-throbber.mng</file>
<file>iconsets/system/default/throbber.png</file>
<file>iconsets/system/default/theme_title_texture.png</file>
<file>iconsets/system/default/psiplus/activity.png</file>
<file>iconsets/system/default/psiplus/mood.png</file>
Expand Down
6 changes: 6 additions & 0 deletions iconsets/system/default/icondef.xml
Expand Up @@ -432,6 +432,12 @@
<object mime='image/png'>theme_title_texture.png</object>
</icon>

<icon>
<x xmlns='name'>psi/throbber</x>
<x xmlns='type'>animation</x>
<object mime='image/png'>throbber.png</object>
</icon>

<!-- Whiteboarding -->
<icon>
<x xmlns='name'>psi/whiteboard</x>
Expand Down
Binary file removed iconsets/system/default/tango-throbber.mng
Binary file not shown.
Binary file added iconsets/system/default/throbber.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions iris/include/iris/xmpp_bitsofbinary.h
@@ -0,0 +1 @@
#include "../../src/xmpp/xmpp-im/xmpp_bitsofbinary.h"
2 changes: 2 additions & 0 deletions iris/src/jdns/src/jdns/jdns_p.h
Expand Up @@ -40,6 +40,8 @@
# define JDNS_OS_FREEBSD
#elif defined(__NetBSD__)
# define JDNS_OS_NETBSD
#elif defined(__OpenBSD__)
# define JDNS_OS_OPENBSD
#elif defined(sun) || defined(__sun)
# define JDNS_OS_SOLARIS
#elif defined(__APPLE__) && (defined(__GNUC__) || defined(__xlC__) || defined(__xlc__))
Expand Down
20 changes: 20 additions & 0 deletions iris/src/jdns/src/jdns/jdns_sys.c
Expand Up @@ -729,6 +729,10 @@ static int my_res_init()
#if defined(JDNS_OS_MAC) || defined(JDNS_OS_FREEBSD) || \
defined(JDNS_OS_NETBSD) || defined (JDNS_OS_SOLARIS)
# define USE_EXTEXT
#endif
#if defined(JDNS_OS_OPENBSD)
# define USE_INDEP_EXT

#endif

static jdns_dnsparams_t *dnsparams_get_unixsys()
Expand All @@ -752,6 +756,21 @@ static jdns_dnsparams_t *dnsparams_get_unixsys()
if(n == -1)
return params;

#ifdef USE_INDEP_EXT
for(n = 0; n < MAXNS && n < RESVAR.nscount; ++n)
{
struct sockaddr_in *sa = (struct sockaddr_in*)&(_res_ext.nsaddr_list[n]);
jdns_address_t *addr = jdns_address_new();
if (sa->sin_family = AF_INET6) {
struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *)sa;
jdns_address_set_ipv6(addr, sa6->sin6_addr.s6_addr);
} else {
jdns_address_set_ipv4(addr, ntohl(sa->sin_addr.s_addr));
}
jdns_dnsparams_append_nameserver(params, addr, JDNS_UNICAST_PORT);
jdns_address_delete(addr);
}
#else
// nameservers - ipv6
#ifdef __GLIBC__
for(n = 0; n < MAXNS && n < RESVAR._u._ext.nscount6; ++n)
Expand Down Expand Up @@ -788,6 +807,7 @@ static jdns_dnsparams_t *dnsparams_get_unixsys()
jdns_dnsparams_append_nameserver(params, addr, JDNS_UNICAST_PORT);
jdns_address_delete(addr);
}
#endif

// domain name
if(strlen(RESVAR.defdname) > 0)
Expand Down
104 changes: 0 additions & 104 deletions iris/src/xmpp/base64/base64.cpp

This file was deleted.

16 changes: 0 additions & 16 deletions iris/src/xmpp/base64/base64.h

This file was deleted.

8 changes: 0 additions & 8 deletions iris/src/xmpp/base64/base64.pri

This file was deleted.

45 changes: 0 additions & 45 deletions iris/src/xmpp/base64/unittest/base64test.cpp

This file was deleted.

2 changes: 0 additions & 2 deletions iris/src/xmpp/base64/unittest/unittest.pri

This file was deleted.

4 changes: 0 additions & 4 deletions iris/src/xmpp/base64/unittest/unittest.pro

This file was deleted.

1 change: 0 additions & 1 deletion iris/src/xmpp/modules.pri
Expand Up @@ -3,4 +3,3 @@ IRIS_XMPP_JID_MODULE = $$PWD/jid/jid.pri
IRIS_XMPP_SASL_MODULE = $$PWD/sasl/sasl.pri
IRIS_XMPP_BASE_MODULE = $$PWD/base/base.pri
IRIS_XMPP_ZLIB_MODULE = $$PWD/zlib/zlib.pri
IRIS_XMPP_BASE64_MODULE = $$PWD/base64/base64.pri
3 changes: 1 addition & 2 deletions iris/src/xmpp/sasl/digestmd5response.cpp
Expand Up @@ -25,7 +25,6 @@

#include "xmpp/sasl/digestmd5proplist.h"
#include "xmpp/base/randomnumbergenerator.h"
#include "xmpp/base64/base64.h"

namespace XMPP {

Expand All @@ -47,7 +46,7 @@ DIGESTMD5Response::DIGESTMD5Response(const QByteArray& challenge, const QString&
for(int n = 0; n < (int)a.size(); ++n) {
a[n] = (char) rand.generateNumberBetween(0, 255);
}
QByteArray cnonce = Base64::encode(a).toLatin1();
QByteArray cnonce = a.toBase64();

// make other variables
if (realm.isEmpty()) {
Expand Down
3 changes: 1 addition & 2 deletions iris/src/xmpp/sasl/scramsha1message.cpp
Expand Up @@ -26,7 +26,6 @@

#include "xmpp/base/randomnumbergenerator.h"
#include "xmpp/jid/jid.h"
#include "xmpp/base64/base64.h"

namespace XMPP {

Expand Down Expand Up @@ -60,7 +59,7 @@ SCRAMSHA1Message::SCRAMSHA1Message(const QString& authzid, const QString& authci
for(int n = 0; n < (int)a.size(); ++n) {
a[n] = (char) rand.generateNumberBetween(0, 255);
}
clientnonce = Base64::encode(a).toLatin1();
clientnonce = a.toBase64();
} else clientnonce = cnonce;

QTextStream(&result) << "n,";
Expand Down
2 changes: 1 addition & 1 deletion iris/src/xmpp/sasl/scramsha1response.cpp
Expand Up @@ -38,7 +38,7 @@ namespace XMPP {
SCRAMSHA1Response::SCRAMSHA1Response(const QByteArray& server_first_message, const QByteArray& password_in, const QByteArray& client_first_message, const QString &salted_password_base64, const RandomNumberGenerator& rand)
{
Q_UNUSED(rand);
QString pass_in(password_in);
QString pass_in = QString::fromUtf8(password_in);
QString pass_out;

QRegExp pattern("r=(.*),s=(.+),i=(\\d+)");
Expand Down

0 comments on commit 3913f4b

Please sign in to comment.