mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11536
This commit is contained in:
parent
ac612e3b2c
commit
f4514d35b5
|
@ -12642,10 +12642,10 @@ Rom 16 Nov 2006
|
|||
|
||||
Rom 16 Nov 2006
|
||||
- MGR: Revamp the messages dialog so that it is resizeable.
|
||||
- MGR: Remember the size of the various message columns
|
||||
- MGR: Remember the size of the dialog
|
||||
- MGR: Add Clipboard functionality to the messages dialog
|
||||
- MGR: Cleanup code in various other places
|
||||
- MGR: Remember the size of the various message columns.
|
||||
- MGR: Remember the size of the dialog.
|
||||
- MGR: Add clipboard functionality.
|
||||
- MGR: Cleanup code in various other places.
|
||||
|
||||
clientgui/
|
||||
AdvancedFrame.cpp
|
||||
|
@ -12653,3 +12653,9 @@ Rom 16 Nov 2006
|
|||
sg_DlgPreferences.cpp, .h
|
||||
sg_ProjectsComponent.cpp
|
||||
sg_SGUIListControl.cpp, .h
|
||||
|
||||
Rom 16 Nov 2006
|
||||
- MGR: Change points to credits.
|
||||
|
||||
clientgui/
|
||||
sg_StatImageLoader.cpp
|
||||
|
|
|
@ -96,7 +96,7 @@ void StatImageLoader::BuildUserStatToolTip() {
|
|||
//user credit text
|
||||
wxString userCredit;
|
||||
userCredit.Printf(wxT("%0.2f"), project->user_total_credit);
|
||||
wxString toolTipTxt = wxString(project->project_name.c_str(), wxConvUTF8 ) +wxT(". User ") + wxString(project->user_name.c_str(), wxConvUTF8) + wxT(" has ") + userCredit + wxT(" points.");
|
||||
wxString toolTipTxt = wxString(project->project_name.c_str(), wxConvUTF8 ) +wxT(". User ") + wxString(project->user_name.c_str(), wxConvUTF8) + wxT(" has ") + userCredit + wxT(" credits.");
|
||||
wxToolTip* userStatToolTip = new wxToolTip(toolTipTxt);
|
||||
SetToolTip(userStatToolTip);
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ dnl not sure exactly what the minimum version is (but 2.13 wont work)
|
|||
AC_PREREQ(2.57)
|
||||
|
||||
dnl Set the BOINC version here. You can also use the set-version script.
|
||||
AC_INIT(BOINC, 5.7.3)
|
||||
AC_INIT(BOINC, 5.7.4)
|
||||
|
||||
AC_ARG_ENABLE(debug,
|
||||
AS_HELP_STRING([--enable-debug],
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
#define BOINC_MINOR_VERSION 7
|
||||
|
||||
/* Release part of BOINC version number */
|
||||
#define BOINC_RELEASE 3
|
||||
#define BOINC_RELEASE 4
|
||||
|
||||
/* String representation of BOINC version number */
|
||||
#define BOINC_VERSION_STRING "5.7.3"
|
||||
#define BOINC_VERSION_STRING "5.7.4"
|
||||
|
||||
#if (defined(_WIN32) || defined(__APPLE__))
|
||||
/* Name of package */
|
||||
|
@ -26,13 +26,13 @@
|
|||
#define PACKAGE_NAME "BOINC"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "BOINC 5.7.3"
|
||||
#define PACKAGE_STRING "BOINC 5.7.4"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "boinc"
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "5.7.3"
|
||||
#define PACKAGE_VERSION "5.7.4"
|
||||
|
||||
#endif /* #if (defined(_WIN32) || defined(__APPLE__)) */
|
||||
|
||||
|
|
Loading…
Reference in New Issue