mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-07 22:22:45 -04:00
updated ubuntu packaging scripts to version 0.5.4. Updated version numbers in rsversion.h
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5555 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
3d799ede29
commit
bc726b925c
10 changed files with 60 additions and 19 deletions
|
@ -1,4 +1,44 @@
|
||||||
retroshare (0.5.3-0.XXXXXX~YYYYYY) YYYYYY; urgency=low
|
retroshare (0.5.4-0.XXXXXX~YYYYYY) YYYYYY; urgency=low
|
||||||
|
|
||||||
|
* Improvements
|
||||||
|
- improved plugin system
|
||||||
|
* now using two lists of rejected/accepted plugins. RS asks at start to load unknown plugins
|
||||||
|
when plugins or main executable have changed.
|
||||||
|
* added API and SVN numbers into required external plugin symbols
|
||||||
|
* added help dialog to plugins
|
||||||
|
* improved version number scripts to add the missing revision number as a int
|
||||||
|
- Added window icon for the application. All windows without a parent are now showing this icon.
|
||||||
|
- Moved some internal stylesheets to the file Standard.qss.
|
||||||
|
- Tweaked standard style of the feed items.
|
||||||
|
- moved file rsversion.h to rsguiversion.h, since it caused a conflict with libretroshare/src/util/rsversion.h
|
||||||
|
when included as util/rsversion.h. Updated version detail script.
|
||||||
|
- reworked context channel menu to allow unsubscribing from own channels. Removed some irrelevant items.
|
||||||
|
Added warning when publish rights can/cannot be restored.
|
||||||
|
- Improved ProfileManager
|
||||||
|
* removed combobox and added export to the list of identities
|
||||||
|
* add extension to the filename when the user enters a name without extension
|
||||||
|
* refill list after generating a new identity
|
||||||
|
- Fixed height of the search input field when using no stylesheet.
|
||||||
|
- Changed the colors of the feed items. It was too bright.
|
||||||
|
- Enabled the menu item in the context menu again to copy the link when right clicking on a link.
|
||||||
|
- Reworked some elements in the standard gui.
|
||||||
|
- Added VOIP Plugin to windows installer
|
||||||
|
- Added new finish translation from Beluga
|
||||||
|
- Added two buttons to the NotifyPage to show examples of the activated news feeds and toasters.
|
||||||
|
Can also be used to test the stylesheets.
|
||||||
|
- Reworked design of the toaster and moved internal stylesheets to the file Standard.qss.
|
||||||
|
|
||||||
|
* Bugs
|
||||||
|
- Fixed report of failing connexion attempts/recepts. Cleaned the code a little bit
|
||||||
|
- Fixed message in pgphandler when signing a post
|
||||||
|
- Fixed small display issue causing the availability map to become black when more than 6 sources are present
|
||||||
|
- Added missing close of the temporary keyring file. Now the keyring is saved properly and the newly
|
||||||
|
added keys are not lost after shutdown of RetroShare.
|
||||||
|
- Patch from AsamK to avoid crash when no uids are present in the key. How can this happen anyway?
|
||||||
|
|
||||||
|
-- Cyril Soler <csoler@users.sourceforge.net> Sat, 15 Sept 2012 14:30:00 +0100
|
||||||
|
|
||||||
|
retroshare (0.5.3-0.5503~natty) natty; urgency=low
|
||||||
|
|
||||||
* Improvements
|
* Improvements
|
||||||
- Big cleaning of style sheets
|
- Big cleaning of style sheets
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
rm ./retroshare_0.5.3-0.*_source.build
|
rm ./retroshare_0.5.4-0.*_source.build
|
||||||
rm ./retroshare_0.5.3-0.*_source.changes
|
rm ./retroshare_0.5.4-0.*_source.changes
|
||||||
rm ./retroshare_0.5.3-0.*.tar.gz
|
rm ./retroshare_0.5.4-0.*.tar.gz
|
||||||
rm ./retroshare_0.5.3-0.*.diff.gz
|
rm ./retroshare_0.5.4-0.*.diff.gz
|
||||||
rm ./retroshare_0.5.3-0.*.dsc
|
rm ./retroshare_0.5.4-0.*.dsc
|
||||||
rm *.upload
|
rm *.upload
|
||||||
|
|
||||||
rm *~
|
rm *~
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
APPNAME := retroshare-linkscloud-plugin-0.5.3
|
APPNAME := retroshare-linkscloud-plugin-0.5.4
|
||||||
builddir:
|
builddir:
|
||||||
mkdir -p builddir
|
mkdir -p builddir
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ fi
|
||||||
svn update
|
svn update
|
||||||
|
|
||||||
###################### PARAMETERS ####################
|
###################### PARAMETERS ####################
|
||||||
version="0.5.3"
|
version="0.5.4"
|
||||||
######################################################
|
######################################################
|
||||||
|
|
||||||
if test "$1" = "" ; then
|
if test "$1" = "" ; then
|
||||||
|
@ -113,8 +113,9 @@ mv -f retroshare-0.5/debian/control.tmp retroshare-0.5/debian/control
|
||||||
|
|
||||||
cd retroshare-0.5
|
cd retroshare-0.5
|
||||||
|
|
||||||
for i in natty; do
|
#for i in sid; do
|
||||||
#for i in precise squeeze oneiric karmic lucid maverick natty; do
|
#for i in natty; do
|
||||||
|
for i in precise oneiric karmic lucid maverick natty; do
|
||||||
echo copying changelog for $i
|
echo copying changelog for $i
|
||||||
cat ../changelog | sed -e s/XXXXXX/"$svn"/g | sed -e s/YYYYYY/"$i"/g > debian/changelog
|
cat ../changelog | sed -e s/XXXXXX/"$svn"/g | sed -e s/YYYYYY/"$i"/g > debian/changelog
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
echo This script is going to build the debian source package for RetroShare LinksCloud plugin, from the svn.
|
echo This script is going to build the debian source package for RetroShare LinksCloud plugin, from the svn.
|
||||||
#nosvn=true
|
#nosvn=true
|
||||||
workdir=retroshare-linkscloud-plugin-0.5.3
|
workdir=retroshare-linkscloud-plugin-0.5.4
|
||||||
|
|
||||||
if test -d "$workdir" ; then
|
if test -d "$workdir" ; then
|
||||||
echo Please remove the $workdir directory first.
|
echo Please remove the $workdir directory first.
|
||||||
|
@ -17,7 +17,7 @@ fi
|
||||||
svn update
|
svn update
|
||||||
|
|
||||||
###################### PARAMETERS ####################
|
###################### PARAMETERS ####################
|
||||||
version="0.5.3"
|
version="0.5.4"
|
||||||
######################################################
|
######################################################
|
||||||
|
|
||||||
if test "$1" = "" ; then
|
if test "$1" = "" ; then
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
echo This script is going to build the debian source package for RetroShare VOIP plugin, from the svn.
|
echo This script is going to build the debian source package for RetroShare VOIP plugin, from the svn.
|
||||||
#nosvn=true
|
#nosvn=true
|
||||||
workdir=retroshare-voip-plugin-0.5.3
|
workdir=retroshare-voip-plugin-0.5.4
|
||||||
|
|
||||||
if test -d "$workdir" ; then
|
if test -d "$workdir" ; then
|
||||||
echo Please remove the $workdir directory first.
|
echo Please remove the $workdir directory first.
|
||||||
|
@ -17,7 +17,7 @@ fi
|
||||||
svn update
|
svn update
|
||||||
|
|
||||||
###################### PARAMETERS ####################
|
###################### PARAMETERS ####################
|
||||||
version="0.5.3"
|
version="0.5.4"
|
||||||
######################################################
|
######################################################
|
||||||
|
|
||||||
if test "$1" = "" ; then
|
if test "$1" = "" ; then
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
Apply dput ppa:csoler-users/retroshare-snapshots retroshare_0.5.3#.changes
|
Apply dput ppa:csoler-users/retroshare-snapshots retroshare_0.5.4#.changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
APPNAME := retroshare-voip-plugin-0.5.3
|
APPNAME := retroshare-voip-plugin-0.5.4
|
||||||
builddir:
|
builddir:
|
||||||
mkdir -p builddir
|
mkdir -p builddir
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#define LIB_VERSION "0.5.3c"
|
#define LIB_VERSION "0.5.4"
|
||||||
#define SVN_REVISION "Revision: 5501 date : 22:25:46 09.04.12"
|
#define SVN_REVISION "Revision: 5501 date : 15:32:07 09.09.12"
|
||||||
#define SVN_REVISION_NUMBER 5501
|
#define SVN_REVISION_NUMBER 5501
|
||||||
|
|
||||||
namespace RsUtil {
|
namespace RsUtil {
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
****************************************************************/
|
****************************************************************/
|
||||||
|
|
||||||
|
|
||||||
#define GUI_VERSION "0.5.3c"
|
#define GUI_VERSION "0.5.4"
|
||||||
|
|
||||||
#define GUI_REVISION "Revision: "
|
#define GUI_REVISION "Revision: "
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue