mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Final Changes for V0.4.08a release:
* Updated Version numbers. * Added chat styles to installer. * Fixed .at() call on map -> doesn't work on windows/MacOSX. * Tweaked default font back to 10 for chat. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@564 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
87b7bfadb5
commit
22bfc3e821
@ -170,7 +170,7 @@ void BlogDialog::update(void)
|
||||
std::multimap<long int, std::string>::reverse_iterator blogIt = blogs[*it].rbegin();
|
||||
addUser(*it); // add usr to Qwidget tree
|
||||
|
||||
if(blogs.at(*it).empty())
|
||||
if(blogs[*it].empty())
|
||||
continue;
|
||||
|
||||
for( ; blogIt != blogs[*it].rend(); blogIt++)
|
||||
|
@ -111,7 +111,7 @@ PopupChatDialog::PopupChatDialog(std::string id, std::string name,
|
||||
ui.fontButton->setMenu(fontmenu);*/
|
||||
|
||||
mCurrentColor = Qt::black;
|
||||
mCurrentFont = QFont("Comic Sans MS", 12);
|
||||
mCurrentFont = QFont("Comic Sans MS", 10);
|
||||
|
||||
colorChanged(mCurrentColor);
|
||||
setFont();
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
; Define your application name
|
||||
!define APPNAME "RetroShare"
|
||||
!define VERSION "0.4.07a"
|
||||
!define VERSION "0.4.08a"
|
||||
!define APPNAMEANDVERSION "${APPNAME} ${VERSION}"
|
||||
|
||||
; Main Install settings
|
||||
@ -177,6 +177,10 @@ Section $(sec_data) sec_data
|
||||
SetOutPath "$INSTDIR\emoticons\kopete\"
|
||||
File /r release\emoticons\kopete\*.*
|
||||
|
||||
; Add Chat Style
|
||||
SetOutPath "$INSTDIR\style\"
|
||||
File /r release\style\*.*
|
||||
|
||||
SectionEnd
|
||||
|
||||
Section $(sec_mplayer) sec_mplayer
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
//#define USE_SVN_VERSIONS 1
|
||||
|
||||
#define VERSION "0.4.07a"
|
||||
#define VERSION "0.4.08a"
|
||||
|
||||
#if USE_SVN_VERSIONS
|
||||
#include "svn_revision.h"
|
||||
|
Loading…
Reference in New Issue
Block a user