updated ubuntu changelog and packaging script

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8003 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2015-03-08 17:44:50 +00:00
parent 7b43f53a5e
commit 0a4c6b4ea2
2 changed files with 23 additions and 1 deletions

View File

@ -2,6 +2,8 @@ retroshare06 (0.6.0-0.XXXXXX~YYYYYY) YYYYYY; urgency=low
Improvements
* GUI
- Fixed display of version information.
- Optimized GxsIdDetails::process to load the gxs details directly when the caller is the gui thread.
- Removed not used base class GxsIdTreeWidget.
Used QPixmap instead of QIcon to draw the gxs image in GxsIdTreeWidgetItem.
Fixed use of transparent background in GxsIdDetails::GenerateCombinedPixmap
@ -9,6 +11,10 @@ retroshare06 (0.6.0-0.XXXXXX~YYYYYY) YYYYYY; urgency=low
- hide reputations which are not used yet (patch from sehraf)
* Channels/Forums/Posted
- Fixed refill of author column in forums.
- Trimmed whitespace from URL to fix internal retroshare links.
- Added Retroshare links support to PostedItems (don't seem to work yet).
- Enabled cancel button in CreateComment Dialog.
- avoid calling rsGxsChannels::setMessageReadStatus() when the message status is already what
we want. Removed one warning that has been cleared.
- improved GUI for Posted
@ -24,11 +30,16 @@ retroshare06 (0.6.0-0.XXXXXX~YYYYYY) YYYYYY; urgency=low
gives the possibility to push data to other nodes
* Identities
- fixed message tooltip for loading ids
- Added tooltip on key id column.
- Disable Send Message button for own Identities.
- Fixed initial size of the splitter in IdDialog.
* Chat
- Fixed missing spaces in chat style.
- merged in new lobbies with GXS ids. Old peers and new peers cannot see each others lobby lists.
Invitations and Messages of old and new peers will not be visible to each other.
- fixed mistake in distant chat (== instead of =)
- removed deprectated items in chat lobbies. Removed debug output in distant chat.
- fixed a few bugs in distant chat protocol (allow re-negociation of DH parameters if decryption
fails, correct passing of own gxs id for server side), making the system more reactive. Also
@ -39,9 +50,16 @@ retroshare06 (0.6.0-0.XXXXXX~YYYYYY) YYYYYY; urgency=low
* improvement of README file (patch by cave, modified)
* Connectivity
- removed systematic printout of outgoing items which killed performance (patch from electron)
- Removed debug info fom bdnet (Patch from electron)
- attempt to fix never ending thread. To be tested.
- Allow TLSv1.2 while keeping compatibility with TLS1 and 1.1 (Patch from cave)
- Added extra check against invalid sockfds, cansend / moretoread code
* Others
- added method in ftServer to allow retrieving data from shared/downloaded files (patch from electron, modified)
- fixed typo preventing compilation without RS_USE_BITDHT flag
* Packaging
- fixed compilation on debian squeeze. Removed placeHolder properties in CreateGxsForumMsg.ui
and GxsGroupDialog.ui which need to be set in the cpp. Added a new DEFINE=NO_SQLCIPHER to compile

View File

@ -88,9 +88,13 @@ cp $workdir/src/retroshare-gui/src/gui/chat/PopupChatDialog.ui $workdir/src/plug
# handling of libssh
#LIBSSH_VERSION=0.5.4
#LIBSSH_DIR=41
#LIBSSH_LOCATION=https://red.libssh.org/attachments/download/${LIBSSH_DIR}/libssh-${LIBSSH_VERSION}.tar.gz
LIBSSH_VERSION=0.6.4
LIBSSH_DIR=107
[ -f libssh-${LIBSSH_VERSION}.tar.gz ] || wget --no-check-certificate -O libssh-${LIBSSH_VERSION}.tar.gz https://red.libssh.org/attachments/download/${LIBSSH_DIR}/libssh-${LIBSSH_VERSION}.tar.gz
LIBSSH_LOCATION=https://git.libssh.org/projects/libssh.git/snapshot/libssh-${LIBSSH_VERSION}.tar.gz
[ -f libssh-${LIBSSH_VERSION}.tar.gz ] || wget --no-check-certificate -O libssh-${LIBSSH_VERSION}.tar.gz $LIBSSH_LOCATION
cd $workdir
tar zxvf ../libssh-${LIBSSH_VERSION}.tar.gz
cd ..