auto download option:

ability to enable and disable channels auto dl added
added gui update to channel feed
msg download not enabled yet

cache opt:
added more enable cache opt #defines to disable cache opt code





git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4133 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2011-04-07 22:10:10 +00:00
parent 814c5d1619
commit 1bef23042f
4 changed files with 664 additions and 613 deletions

View file

@ -188,7 +188,7 @@ void ChanNewItem::unsubscribeChannel()
#endif
if (rsChannels)
{
rsChannels->channelSubscribe(mChanId, false);
rsChannels->channelSubscribe(mChanId, false, false);
}
updateItemStatic();
}
@ -202,7 +202,7 @@ void ChanNewItem::subscribeChannel()
#endif
if (rsChannels)
{
rsChannels->channelSubscribe(mChanId, true);
rsChannels->channelSubscribe(mChanId, true, true);
}
updateItemStatic();
}