diff --git a/libretroshare/src/pqi/authxpgp.cc b/libretroshare/src/pqi/authxpgp.cc index 72239dfb5..380dd9892 100644 --- a/libretroshare/src/pqi/authxpgp.cc +++ b/libretroshare/src/pqi/authxpgp.cc @@ -1205,6 +1205,7 @@ bool AuthXPGP::ProcessXPGP(XPGP *xpgp, std::string &id) mToSaveCerts = true; xpgpMtx.unlock(); /**** UNLOCK ****/ +#if 0 /******************** notify of new Cert **************************/ pqiNotify *pqinotify = getPqiNotify(); if (pqinotify) @@ -1212,6 +1213,7 @@ bool AuthXPGP::ProcessXPGP(XPGP *xpgp, std::string &id) pqinotify->AddFeedItem(RS_FEED_ITEM_PEER_NEW, xpgpid, "",""); } /******************** notify of new Cert **************************/ +#endif id = xpgpid; diff --git a/libretroshare/src/pqi/p3connmgr.cc b/libretroshare/src/pqi/p3connmgr.cc index 0ee4364f5..96f18ce84 100644 --- a/libretroshare/src/pqi/p3connmgr.cc +++ b/libretroshare/src/pqi/p3connmgr.cc @@ -1061,6 +1061,7 @@ void p3ConnectMgr::tickMonitors() notify->AddFeedItem(RS_FEED_ITEM_PEER_CONNECT, peer.id, "", ""); } } +#if 0 if (peer.actions & RS_PEER_DISCONNECTED) { pqiNotify *notify = getPqiNotify(); @@ -1071,6 +1072,7 @@ void p3ConnectMgr::tickMonitors() } } +#endif } } /* do the Others as well! */ diff --git a/libretroshare/src/rsiface/rstypes.h b/libretroshare/src/rsiface/rstypes.h index c7cbed251..5e3d3aa95 100644 --- a/libretroshare/src/rsiface/rstypes.h +++ b/libretroshare/src/rsiface/rstypes.h @@ -201,7 +201,7 @@ class DirDetails std::string name; std::string hash; std::string path; - uint32_t count; + uint64_t count; uint32_t age; uint32_t rank; @@ -215,7 +215,7 @@ class FileDetail std::string name; std::string hash; std::string path; - uint32_t size; + uint64_t size; uint32_t age; uint32_t rank; }; diff --git a/libretroshare/src/services/p3distrib.cc b/libretroshare/src/services/p3distrib.cc index 5bd687ecd..2f65a79f9 100644 --- a/libretroshare/src/services/p3distrib.cc +++ b/libretroshare/src/services/p3distrib.cc @@ -1102,6 +1102,8 @@ bool p3GroupDistrib::subscribeToGroup(std::string grpId, bool subscribe) if (!(git->second.flags & RS_DISTRIB_SUBSCRIBED)) { git->second.flags |= RS_DISTRIB_SUBSCRIBED; + + locked_notifyGroupChanged(git->second); mGroupsRepublish = true; } } @@ -1110,6 +1112,8 @@ bool p3GroupDistrib::subscribeToGroup(std::string grpId, bool subscribe) if (git->second.flags & RS_DISTRIB_SUBSCRIBED) { git->second.flags &= (~RS_DISTRIB_SUBSCRIBED); + + locked_notifyGroupChanged(git->second); mGroupsRepublish = true; } } diff --git a/libretroshare/src/services/p3msgservice.cc b/libretroshare/src/services/p3msgservice.cc index 6723a76f1..09acd13cc 100644 --- a/libretroshare/src/services/p3msgservice.cc +++ b/libretroshare/src/services/p3msgservice.cc @@ -149,6 +149,10 @@ int p3MsgService::incomingMsgs() { notify->AddPopupMessage(RS_POPUP_MSG, mi->PeerId(), "New Message from: "); + + std::ostringstream out; + out << mi->msgId; + notify->AddFeedItem(RS_FEED_ITEM_MESSAGE, out.str(), "", ""); } }