From 37f206134b0fb15cb1412ae0bff1c1e0735412fe Mon Sep 17 00:00:00 2001 From: csoler Date: Sat, 9 Apr 2011 20:08:37 +0000 Subject: [PATCH] updated ubuntu packaging changelog and script git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4146 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- build_scripts/Ubuntu_src/changelog | 46 ++++++++++++++++++++++++++++++ build_scripts/Ubuntu_src/make.sh | 9 +++--- 2 files changed, 51 insertions(+), 4 deletions(-) diff --git a/build_scripts/Ubuntu_src/changelog b/build_scripts/Ubuntu_src/changelog index 37352ad1a..a51228b41 100644 --- a/build_scripts/Ubuntu_src/changelog +++ b/build_scripts/Ubuntu_src/changelog @@ -1,5 +1,51 @@ retroshare (0.5.1-0.XXXXXX~YYYYYY) YYYYYY; urgency=low + * Improvements + - added flat view for shared files, with search, sorting and temporised update + - enabled file preview for partially downloaded files, for non windows users + - removed display of directories from search + - added auto-download option to channels + - added random bias to turtle search and tunnels at maximum depth, to prevent security issues + - added biased rerouting of tunnels requests to statistically optimize tunnel length + - made sign GPG button disabled by default + - optimized lookups of/into FileEntry structures (faster, better memory coalescence) + - added tunning for auto-check of shared directories, in config + - updated french/german translations + - saved the visible state of the avatar picture in private chat for the friend. + - removed own settings for news feed + - added tooltip for systray to display nickname and location + - made lock file warning more explicit + + * Bug fixes + - channel download is now called only once for each channel post + - fixed cleaning issue of certificates. Added a button in cert dialog for cleaning. + - removed automatic cleaning of certs. + - fixed bug with utf8 chatacters in %appdata% paths on windows + - fixed crash on shutdown when the cache loading is running + - fixed some stylesheets to use gradients instead of a background images, + - fixed thread leak in file checking due to not calling pthread_join() on finished thread + - showing uploads by default, instead of current transfer + +retroshare (0.5.1-0.4097~lucid) lucid; urgency=low + + * Improvements + - attempt to make GPG errors more verbose at cert exchange time + - translate QuickStartWizard, GenCertDialog and StartDialog into german + - fixed tab order of the upload and download settings in QuickStartWizard + - Added a basic description of the chat style + - Added share incoming directory to the QuickStartWizard, while keeping + the Download directory shared by default + + * Bug Fixes + - implemented a backward compatible fix for advance searching with size + larger than 2Gb + - implemented a better management of tunnel requests + + + -- Cyril Soler Thu, 07 Mar 2010 21:35:46 +0100 + +retroshare (0.5.1-0.4087~lucid) lucid; urgency=low + * Improvements - The working (hashing) thread FileIndexMonitor is now stopped when RetroShare is closed. - Removed tab focus from the toolbar and image buttons. diff --git a/build_scripts/Ubuntu_src/make.sh b/build_scripts/Ubuntu_src/make.sh index 4f6f37823..2d9eb47f9 100755 --- a/build_scripts/Ubuntu_src/make.sh +++ b/build_scripts/Ubuntu_src/make.sh @@ -14,13 +14,14 @@ echo Revision number is $svn. echo Type ^C to abort, or enter to continue read tmp +svn=4097 rm -rf ./retroshare-0.5 # ./makeSourcePackage.sh for dist in jaunty karmic lucid maverick; do - sudo PBUILDFOLDER=/var/cache/pbuilder pbuilder-dist "$dist" build *.dsc - cp /var/cache/pbuilder/"$dist"_result/retroshare_0.5-1_amd64.deb ./RetroShare_0.5.1."$svn"_"$dist"_amd64.deb - sudo PBUILDFOLDER=/var/cache/pbuilder pbuilder-dist "$dist" i386 build *.dsc - cp /var/cache/pbuilder/"$dist"-i386_result/retroshare_0.5-1_i386.deb ./RetroShare_0.5.1."$svn"_"$dist"_i386.deb + sudo PBUILDFOLDER=/var/cache/pbuilder pbuilder-dist "$dist" build retroshare_0.5.1-0."$svn"~"$dist".dsc + cp /var/cache/pbuilder/"$dist"_result/retroshare_0.5.1-0."$svn"~"$dist"_amd64.deb . + sudo PBUILDFOLDER=/var/cache/pbuilder pbuilder-dist "$dist" i386 build retroshare_0.5.1-0."$svn"~"$dist".dsc + cp /var/cache/pbuilder/"$dist"-i386_result/retroshare_0.5.1-0."$svn"~"$dist"_i386.deb . done