removed deprectated items in chat lobbies. Removed debug output in distant chat.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7944 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2015-02-14 21:10:05 +00:00
parent 6e8e5efb90
commit ee9144c79a
3 changed files with 4 additions and 37 deletions

View File

@ -11,7 +11,7 @@ List of fixes/improvements before 0.6
[ ] it's not possible to create a Forum thread without a Owner.
Bug? If not, then remove "No signature" from selection box
[X] the tooltip over GXS ids should show the avatar on the left side.
[ ] fix data race between GXS ID default icons
[X] fix data race between GXS ID default icons
GUI General
[ ] do we keep "Getting Started" ? the look needs to be improved
@ -32,7 +32,7 @@ List of fixes/improvements before 0.6
Chat lobbies
[ ] Chat lobbies should use Identities. That's a significant change, probably not backward compatible.
[ ] Remove deprecated code in rschatitems.h
[X] Remove deprecated code in rschatitems.h
Chat
[X] Distant chat window should show GXS avatars
@ -47,7 +47,7 @@ List of fixes/improvements before 0.6
[ ] reputations are not used yet. We should hide them.
[ ] Add timeout to Identities that are unused. Need to keep a time stamp list, updated
whenever the identity is used for checking signatures.
[ ] Fix avatar loading for identities. When loaded for the first time by forums, the avatar does not show up.
[X] Fix avatar loading for identities. When loaded for the first time by forums, the avatar does not show up.
Network
[ ] Friends => Friend nodes

View File

@ -45,7 +45,7 @@
#include <retroshare/rsids.h>
#include "distantchat.h"
#define DEBUG_DISTANT_CHAT
//#define DEBUG_DISTANT_CHAT
static const uint32_t DISTANT_CHAT_KEEP_ALIVE_TIMEOUT = 15 ; // send keep alive packet so as to avoid tunnel breaks.

View File

@ -186,39 +186,6 @@ class RsChatLobbyListRequestItem: public RsChatItem
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
};
class RsChatLobbyListItem_deprecated: public RsChatItem
{
public:
RsChatLobbyListItem_deprecated() : RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated) {}
RsChatLobbyListItem_deprecated(void *data,uint32_t size) ;
virtual ~RsChatLobbyListItem_deprecated() {}
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
virtual bool serialise(void *data,uint32_t& size) ;
virtual uint32_t serial_size() ;
std::vector<ChatLobbyId> lobby_ids ;
std::vector<std::string> lobby_names ;
std::vector<uint32_t> lobby_counts ;
};
class RsChatLobbyListItem_deprecated2: public RsChatItem
{
public:
RsChatLobbyListItem_deprecated2() : RsChatItem(RS_PKT_SUBTYPE_CHAT_LOBBY_LIST_deprecated2) {}
RsChatLobbyListItem_deprecated2(void *data,uint32_t size) ;
virtual ~RsChatLobbyListItem_deprecated2() {}
virtual std::ostream& print(std::ostream &out, uint16_t indent = 0);
virtual bool serialise(void *data,uint32_t& size) ;
virtual uint32_t serial_size() ;
std::vector<ChatLobbyId> lobby_ids ;
std::vector<std::string> lobby_names ;
std::vector<std::string> lobby_topics ;
std::vector<uint32_t> lobby_counts ;
};
class RsChatLobbyListItem: public RsChatItem
{
public: