Menu

Main Menu
Talk Get Daily Search

Member's Online

    User Name
    Password

    [Announce] Yappari - New maintainership and new features!

    Reply
    Page 55 of 157 | Prev | 45   53     54   55   56     57   65 | Next | Last
    NerdKnight | # 541 | 2015-03-09, 00:48 | Report

    Originally Posted by ceene View Post
    Can you send me your coredump file alongside the binary with debug symbols you compiled? Maybe I can find something... I don't know, I'll have to check the values of some objects (specifically I want to check at least decodedStream and decodedBuffer).

    Thank you!
    I been testing this patch:
    Code:
    diff --git a/src/yappari-application/Whatsapp/bintreenodereader.cpp b/src/yappari-application/Whatsapp/bintreenodereader.cpp
    index 6d32774..3c10fcf 100644
    --- a/src/yappari-application/Whatsapp/bintreenodereader.cpp
    +++ b/src/yappari-application/Whatsapp/bintreenodereader.cpp
    @@ -55,9 +55,6 @@ bool BinTreeNodeReader::getOneToplevelStream()
         }
     
         //qDebug() << "[[ " + readBuffer.toHex();
    -    if (decodedStream.isOpen()) {
    -        decodedStream.close();
    -    }
     
         if (decodeRawStream(flags, 0, bufferSize)) {
             decodedStream.setBuffer(&decodedBuffer);
    @@ -146,6 +143,9 @@ bool BinTreeNodeReader::nextTree(ProtocolTreeNode& node)
         node.setSize(getOneToplevelStreamSize());
     
         result = nextTreeInternal(node);
    +    if (decodedStream.isOpen()) {
    +        decodedStream.close();
    +    }
         Utilities::logData("INCOMING:\n" + node.toString());
         return result;
     }
    here I close the stream as soon the node reading is complete, so it doesn't need to be checked if it is open when I need to read a new one (I think this makes more sense).
    I'm running Yappri with this patch for a day connecting to several different networks and no crashes so far.
    To compile with debugging symbols, I add the following to yappari-aplication.pro (remember to revert it in production)
    Code:
    diff --git a/src/yappari-application/yappari-application.pro b/src/yappari-application/yappari-application.pro
    index 761c7c7..0c9c0ab 100644
    --- a/src/yappari-application/yappari-application.pro
    +++ b/src/yappari-application/yappari-application.pro
    @@ -34,7 +34,7 @@
     #-------------------------------------------------
    
     QT          += core gui network sql maemo5 phonon
    -CONFIG      += mobility qtdbus network link_pkgconfig
    +CONFIG      += mobility qtdbus network link_pkgconfig debug
     MOBILITY     = systeminfo messaging
     PKGCONFIG   += libosso-abook-1.0 libebook-1.2 gtk+-2.0 gstreamer-0.10 libpulse libexif
     INCLUDEPATH += /usr/include/libosso-abook-1.0 /usr/include/evolution-data-server-1.4/ /usr/include/gtk-2.0 /usr/include/gstreamer-0.10
    then run the script src/test_build.sh, this will create the directory build-scratchbox, the you can copy src/build-scratchbox/yappari-application/Yappari to your n900, install gdb in your n900 an run Yappari with gdb Yappari, the executable will be al little bigger (above 30M).
    I haven't installed sp-rich-core yet, so I have no coredumps, but I think with gdb I can gather as much information. If it crashes again I'll send you more.

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following 2 Users Say Thank You to NerdKnight For This Useful Post:
    BLC, Fatalist

     
    fffffred | # 542 | 2015-03-09, 01:06 | Report

    Hi,

    Anyone having issues with Group Info not displaying all the actual participants?

    I have a group that was created back in 2013 Owned by myself. I wish to remove some older participants, but their details are not showing up for me to remove... In fact, I only have 1 participant on my list and this person was added post updates.

    Do you require log to assess this situation?

    Regards,
    Fred

    Edit | Forward | Quote | Quick Reply | Thanks

    Last edited by fffffred; 2015-03-09 at 04:49.

     
    coderus | # 543 | 2015-03-09, 04:43 | Report

    Originally Posted by fffffred View Post
    Hi,

    Anyone having issues with Group Info not displaying all the actual participants?

    I have a group that was created back in 2013 Owned by myself. I wish to remove some older participants, but their details are not showing up for me to remove... In fact, I only have 1 participant on my list and this person was added post updates.

    Do you require log to access this situation?

    Regards,
    Fred
    details can be showed only when you add person to your phonebook and synced.

    Edit | Forward | Quote | Quick Reply | Thanks

     
    Ast007 | # 544 | 2015-03-09, 11:48 | Report

    I cant seem to delete two chats. There is no1 in the group at all. Any ideas?

    +

    Will we be getting The Voice call function?

    Edit | Forward | Quote | Quick Reply | Thanks

    Last edited by Ast007; 2015-03-09 at 23:16.

     
    fenik2089 | # 545 | 2015-03-14, 06:36 | Report

    again the problem with authorization in yappari today asked for the phone number and code is not sent

    Edit | Forward | Quote | Quick Reply | Thanks

     
    aim120 | # 546 | 2015-03-14, 07:06 | Report

    Originally Posted by fenik2089 View Post
    again the problem with authorization in yappari today asked for the phone number and code is not sent
    I have the same problem as well.

    Edit | Forward | Quote | Quick Reply | Thanks

     
    hanie | # 547 | 2015-03-14, 08:14 | Report

    What's happen again?!

    Edit | Forward | Quote | Quick Reply | Thanks

     
    coderus | # 548 | 2015-03-14, 08:42 | Report

    Originally Posted by Ast007 View Post
    Will we be getting The Voice call function?
    I don't think so, unless anybody experienced in voip protocol can help us to reverse whatsapp functions.

    Originally Posted by hanie View Post
    What's happen again?!
    S40 client v2.12.68 is out, Yappari need to update tokens: https://coderus.openrepos.net/whites...atsapp_scratch

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following 4 Users Say Thank You to coderus For This Useful Post:
    BLC, ceene, DeadHorseRiding, Fatalist

     
    NeedKeyboardAndLinux | # 549 | 2015-03-14, 08:50 | Report

    Thank you, I will check later. But I fear that sooner or later WhatsApp kicks our client.

    Edit | Forward | Quote | Quick Reply | Thanks

     
    coderus | # 550 | 2015-03-14, 09:07 | Report

    Originally Posted by NeedKeyboardAndLinux View Post
    Thank you, I will check later. But I fear that sooner or later WhatsApp kicks our client.
    No, they can do it only if developer is idiot.

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following 4 Users Say Thank You to coderus For This Useful Post:
    BLC, ceene, DeadHorseRiding, newone2

     
    Page 55 of 157 | Prev | 45   53     54   55   56     57   65 | Next | Last
vBulletin® Version 3.8.8
Normal Logout