update changelog and corrected some path for win libs

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4974 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2012-02-20 12:38:04 +00:00
parent 7764fbd158
commit 67c3321ae4
6 changed files with 67 additions and 12 deletions

View File

@ -3,7 +3,7 @@ set MINGW=%QTDIR%\mingw
set PATH=%QTDIR%\qt\bin;%QTDIR%\bin;%MINGW%\bin;%PATH%
"D:\Programme\TortoiseSVN\bin\SubWCRev" . libretroshare\src\util\rsversion.in libretroshare\src\util\rsversion.h
"D:\Program Files\Tortoisesvn\bin\SubWCRev" . libretroshare\src\util\rsversion.in libretroshare\src\util\rsversion.h
cd libbitdht\src
@ -31,6 +31,8 @@ mingw32-make
cd ..\..\retroshare-gui\src
mingw32-make clean
qmake RetroShare.pro
mingw32-make

View File

@ -292,12 +292,12 @@ win32 {
SOURCES += upnp/upnputil.c
UPNPC_DIR = ../../../../miniupnpc-1.3
GPG_ERROR_DIR = ../../../../libgpg-error-1.7
GPGME_DIR = ../../../../gpgme-1.1.8
UPNPC_DIR = ../../../miniupnpc-1.3
GPG_ERROR_DIR = ../../../libgpg-error-1.10
GPGME_DIR = ../../../gpgme-1.1.8
PTHREADS_DIR = ../../../../pthreads-w32-2-8-0-release
ZLIB_DIR = ../../../../zlib-1.2.3
PTHREADS_DIR = ../../../pthreads-w32-2-8-0-release
ZLIB_DIR = ../../../zlib-1.2.3
SSL_DIR = ../../../../OpenSSL

View File

@ -7,7 +7,7 @@
#include <string>
#define LIB_VERSION "0.5.3a"
#define LIB_VERSION "0.5.3b"
#define SVN_REVISION "Revision $WCREV$"
namespace RsUtil {

View File

@ -1,4 +1,4 @@
CONFIG += qt gui uic qrc resources uitools idle bitdht # framecatcher# blogs
CONFIG += qt gui uic qrc resources uitools idle bitdht# framecatcher# blogs
QT += network xml script
TEMPLATE = app
@ -118,7 +118,7 @@ win32 {
PRE_TARGETDEPS += ../../libretroshare/src/lib/libretroshare.a
LIBS += ../../libretroshare/src/lib/libretroshare.a
LIBS += -L"../../../../lib"
LIBS += -L"../../../lib"
LIBS += -lssl -lcrypto -lgpgme -lpthreadGC2d -lminiupnpc -lz
# added after bitdht
# LIBS += -lws2_32
@ -128,8 +128,8 @@ win32 {
DEFINES += WINDOWS_SYS
GPG_ERROR_DIR = ../../../../libgpg-error-1.7
GPGME_DIR = ../../../../gpgme-1.1.8
GPG_ERROR_DIR = ../../../libgpg-error-1.10
GPGME_DIR = ../../../gpgme-1.1.8
INCLUDEPATH += . $${GPGME_DIR}/src $${GPG_ERROR_DIR}/src
}

View File

@ -1,3 +1,56 @@
Changes for v0.5.3b
* Improvements
- Added BSD specific changes - data directory and #including <sys/params.h>
- improved plugin management to allow services to be used, and config pages to be added
- Improvement to plugin system:
- made config page system more automatic, to allow addign config pages from plugins
- added (disabled) checkbox and function to allow all plugins for development
- added config page methods to RsPlugin class
- Mark local existing files in SearchDialog with red text color.
- added early sending of chunkmap request to newly added sources
- Improvements to file transfer:
- corrected 2 potential flaws of swarming causing request of unavailable data (This should normally be taken care of on the server side!)
- improved swarming test code with fault simulation
- only ask CRC32 maps to peers that have a complete file.
- Moved the news feed tab to the first position.
- Added Cache system for GPG Certificates.
- This should reduce gpg calls by 90+%.
- Added translation for "[ ... Missing Message ... ]".
- removed cache adding strategy to DL queue that was O(n^2). Now addign cache at the end of the queue
- The channel message (in channels) is set to read when the user clicks on the show more button.
- The forum/channel news feed is removed when the user reads the message in forums/channels.
- The standard font is now used for new chat lobbies.
- Added a new menu item to set the font of a private chat and chat lobby to the default font.
- set max chunk inactivity period to 5 mins instead of 1 mins. Shoudl favor slow DLs. This is nw possible since missing bits will be re-asked regularly
- Changed the color of the time of the compact chat style from red to gray.
- disabled autodownload when subscribing to a channel.
- Sort nick names by name in the chat lobby.
- Added multi friend recommendation dialog.
- You can start it from the tools menu in FriendsDialog.
* Fixes
- Fixed tab order in config pages Directories and Server.
- corrected stupid bug in settings causing crash when a plugin is ot loaded correctly
- Fixed compile on Windows with enabled shadow build of Qt Creator.
- patch by AsamK to save finished/checking transfers
- Fixed private message notification. Remove offline private messages of none friends at startup and when a friend is removed.
- Moved the removing of the history of removed friends from p3PeerMgrIMPL to p3ChatService.
- DownloadToaster:
- Fixed handling of utf8 characters in the file name
- Replaced QDesktopServices by RsUrlHandler to handle collections
- Fixed crash after opening a collection (Thanks to AsamK =
- Fixed usage of utf8 characters in certificate links (gpg and location name) (Patch from Asamk)
- added missing IPs to certificate links
- Fixed bug when the user clicks on a link without http:// in a QTextBrowser. This link was opened directly in RetroShare.
- Show clickable links in the channel feed message.
- fixed reference to tryNetMode.
Attempted fix for maintaining External Port in Manual Forwarded Mode.
- added check for RS_NET_MODE_EXT instead of RS_NET_MODE_TRY_EXT... as trys aren't used in p3PeerMgr.
- removed tryMode from external interface - as this data is not available anymore.
- Removed setting this parameter in p3peers.cc
Changes for v0.5.3a
* Improvements

View File

@ -2,7 +2,7 @@
; Define your application name
!define APPNAME "RetroShare"
!define VERSION "0.5.1 4049"
!define VERSION "0.5.3b 4972"
!define APPNAMEANDVERSION "${APPNAME} ${VERSION}"
!define QTBASE "D:\qt\2010.01"