mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10828
This commit is contained in:
parent
b702fd0810
commit
9382e75e29
|
@ -8381,3 +8381,10 @@ David 2 Aug 2006
|
|||
client_state.h
|
||||
cpu_sched.C
|
||||
cs_apps.C
|
||||
|
||||
Rom 2 Aug 2006
|
||||
- After successfully attaching to an account manager, display a balloon
|
||||
to reassure the participant that everything is fine.
|
||||
|
||||
clientgui/
|
||||
AdvancedFrame.cpp
|
||||
|
|
|
@ -408,7 +408,7 @@ bool CLIENT_STATE::poll_slow_events() {
|
|||
|
||||
now = dtime();
|
||||
|
||||
if (should_run_cpu_benchmarks() && !are_cpu_benchmarks_running() && projects.size()>0) {
|
||||
if (should_run_cpu_benchmarks() && !are_cpu_benchmarks_running() && projects.size() > 0) {
|
||||
run_cpu_benchmarks = false;
|
||||
start_cpu_benchmarks();
|
||||
}
|
||||
|
|
|
@ -1531,6 +1531,8 @@ void CAdvancedFrame::OnConnect(CFrameEvent& WXUNUSED(event)) {
|
|||
wxString strComputer = wxEmptyString;
|
||||
wxString strName = wxEmptyString;
|
||||
wxString strURL = wxEmptyString;
|
||||
wxString strDialogTitle = wxEmptyString;
|
||||
wxString strDialogDescription = wxEmptyString;
|
||||
bool bCachedCredentials = false;
|
||||
ACCT_MGR_INFO ami;
|
||||
PROJECT_INIT_STATUS pis;
|
||||
|
@ -1569,6 +1571,30 @@ void CAdvancedFrame::OnConnect(CFrameEvent& WXUNUSED(event)) {
|
|||
if (pAMWizard->Run()) {
|
||||
// If successful, hide the main window
|
||||
Hide();
|
||||
|
||||
// %s is the application name
|
||||
// i.e. 'BOINC Manager', 'GridRepublic Manager'
|
||||
strDialogTitle.Printf(
|
||||
_("%s"),
|
||||
wxGetApp().GetBrand()->GetApplicationName().c_str()
|
||||
);
|
||||
|
||||
// %s is the application name
|
||||
// i.e. 'BOINC Manager', 'GridRepublic Manager'
|
||||
// %s is the project name
|
||||
// i.e. 'BOINC', 'GridRepublic'
|
||||
strDialogDescription.Printf(
|
||||
_("%s has successfully attached to %s"),
|
||||
wxGetApp().GetBrand()->GetApplicationName().c_str(),
|
||||
wxGetApp().GetBrand()->GetProjectName().c_str()
|
||||
);
|
||||
|
||||
ShowAlert(
|
||||
strDialogTitle,
|
||||
strDialogDescription,
|
||||
wxOK | wxICON_INFORMATION,
|
||||
true
|
||||
);
|
||||
} else {
|
||||
// If failure, display the messages tab
|
||||
m_pNotebook->SetSelection(ID_LIST_MESSAGESVIEW - ID_LIST_BASE);
|
||||
|
|
|
@ -369,11 +369,11 @@ $w559= array(
|
|||
"
|
||||
);
|
||||
|
||||
$w549= array(
|
||||
"num"=>"5.4.9",
|
||||
$w5411= array(
|
||||
"num"=>"5.4.11",
|
||||
"status"=>"Recommended version",
|
||||
"file"=>"boinc_5.4.9_windows_intelx86.exe",
|
||||
"date"=>"5 May 2006",
|
||||
"file"=>"boinc_5.4.11_windows_intelx86.exe",
|
||||
"date"=>"2 Aug 2006",
|
||||
"type"=>"win_new",
|
||||
"features"=>"<ul>
|
||||
".$features_54."
|
||||
|
@ -736,7 +736,7 @@ $windows = array(
|
|||
"dbname" => "windows_intelx86",
|
||||
"versions"=>array(
|
||||
$w559,
|
||||
$w549,
|
||||
$w5411,
|
||||
$w5213,
|
||||
$w445,
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue