field with the cookie information since we do not know ahead
of time which format the account manager uses. Once the
get_project_config RPC has completed, we'll know which one
is the correct one.
clientgui/
WizardAttach.cpp
svn path=/trunk/boinc/; revision=23557
- add <heartbeat_debug> log flag
- show trickle-up and int file upload msgs if <app_msg_receive> set
- if scheduler RPC reason is trickle-up, say so
- manager:
- restore "non CPU intensive" to task description
- project properties: show if RPC in progress or trickle-up pending.
(show these low-probability things only if present)
- manager: fix Unix build
(from Ian Hay)
svn path=/trunk/boinc/; revision=23365
- MGR: Re-enable the next button when the terms of use wizard
page when the back button is pressed.
clientgui/
DlgEventLog.cpp
TermsOfUsePage.cpp
svn path=/trunk/boinc/; revision=23363
by enabling/disabling the next button as needed.
- MGR: Fix a couple of warnings.
clientgui/
sg_CustomControls.cpp
sg_DlgMessages.cpp
TermsOfUsePage.cpp
UserDisagreesPage.cpp, .h (Deleted)
WizardAttach.cpp, .h
svn path=/trunk/boinc/; revision=23293
- new GPU types can be added easily
- users can specify GPUs in cc_config.xml,
referred to by app_info.xml,
and they will be scheduled by BOINC
and passed --device N options
Note: the parsing of cc_config.xml is not done yet.
- RPC protocols (account manager and scheduler)
can now specify GPU types in separate elements
rather than embedding them in tag names
e.g. <no_rsc>NVIDIA</no_rsc> rather than <no_cuda/>
- client: in account manager replies, parse elements of the form
<no_rsc>NAME</no_rsc>
indicating the GPUs of type NAME should not be used.
This allows account managers to control GPU types
not hardwired into the client.
Note: <no_cuda/> and <no_ati/> will continue to be supported.
- scheduler RPC reply: add
<no_rsc_apps>NAME</no_rsc_apps>
(NAME = GPU name)
to indicate that the project has no jobs for the indicated GPU type.
<no_cuda_apps> etc. are still supported
- client/lib: remove set_debts() GUI RPC
- client/scheduler RPC
remove <cuda_backoff> etc. (superceded by no_app)
Exception: <ip_result> elements in sched request
still have <ncudas> and <natis>.
Fix this later.
Implementation notes:
- client/lib: change "CUDA" to "NVIDIA" in type/variable names, and in XML
Continue to recognize "CUDA" for compatibility
- host_info.coprocs no longer used within the client;
use a global var (COPROCS coprocs) instead.
COPROCS now has an array of COPROCs;
GPUs types are identified by the array index.
Index zero means CPU.
- a bunch of other resource-specific structs (like RSC_WORK_FETCH)
are now stored in arrays, with same indices as COPROCS
(i.e. index 0 is CPU)
- COPROCS still has COPROC_NVIDIA and COPROC_ATI structs to hold vendor-specific info
- APP_VERSION now has a struct GPU_USAGE to describe its GPU usage
svn path=/trunk/boinc/; revision=23253
if a project has old server software and
doesn't export platform list (e.g. Superlink)
don't show a confusing "this project may not support
your type of computer" message;
svn path=/trunk/boinc/; revision=23216
list control does not contain any items. This can cause a crash
if the all_projects_list.xml is empty.
clientgui/
AccountManagerInfoPage.cpp
ProjectInfoPage.cpp
svn path=/trunk/boinc/; revision=23194
values to 0/24. Default value is now 6 hours between notification reminders.
clientgui/
BOINCBaseFrame.cpp
BOINCDialupManager.cpp
BOINCTaskBar.cpp
DlgOptions.cpp
svn path=/trunk/boinc/; revision=23141
for the current theme. My commit on 3 Mar 2010 wasn't good enough
for High-Contrast themes.
clientgui/
BOINCBaseView.cpp
DlgEventLog.cpp
svn path=/trunk/boinc/; revision=23137
is the 'no notice' notice and then we transition to a single notice
from another source.
clientgui/
NoticeListCtrl.cpp, .h
svn path=/trunk/boinc/; revision=23132
introduced during the Unicode conversion phase for Windows. Passing
a wide character string into an narrow character function causes
a NULL reference exception.
TODO: There is still an issue if the manager attempts to write to
stderr when the BOINC Manager log files are redirected to a
directory in which the user doesn't have access too.
clientgui/
SkinManager.cpp
svn path=/trunk/boinc/; revision=22998
on exit for Linux. It was orginally supposed to be enabled when
the balloon features were enabled, but got lost in ifdef hell.
(From "Lee")
clientgui/
DlgExitMessage.cpp
MainDocument.cpp
svn path=/trunk/boinc/; revision=22992
(Button Text is Verdana 8pt. in MS Paint)
clientgui/res/skins/default/graphic/
advanced_link_image.xpm
clientgui/res/templates/skins/
advanced_link_image.gif (Added)
btnAdvancedView.png (Removed)
svn path=/trunk/boinc/; revision=22935
SGUI Preferences dialog. Changing the font color wasn't as easy as
I had hoped and the black background for the skin doesn't do any
good when the text itself is black as well.
clientgui/
sg_DlgMessages.cpp
sg_DlgPreferences.cpp
svn path=/trunk/boinc/; revision=22900
- manager: change "add account manager" to "use account manager".
"Add" is confusing, because you can't add multiple account managers
like you add projects.
- client: recognize a few new ATI GPU models
from Robert Kreß
svn path=/trunk/boinc/; revision=22843
size information when it is in a minimized state.
- MGR: Fix the close dialog issue on wxGTK, apparently there is a
hidden flag that governs the handling of the GTK callback
function. Fixes#962 (Thanks for the patch cli)
clientgui/
DlgAdvPreferencesBase.cpp
DlgEventLog.cpp
DlgItemProperties.cpp
svn path=/trunk/boinc/; revision=22635
- MGR: Add missing ellipses for the new instance of BOINC Manager and
Event Log.
- MGR: Display a simple message when saying that there are no notices
to be displayed when the client reports there are zero notices.
clientgui/
AdvancedFrame.cpp
NoticeListCtrl.cpp
svn path=/trunk/boinc/; revision=22558
ShowWindow() on an application frame to restore an application from
a minimized state or a hidden state on Windows(75% of the UI test
automation would fail at Microsoft without this ability), it appeartly
isn't for other platforms. wxWidgets is or appears to be tracking window
state internally, which leads to problems when the OS restores the window
and the rest of the framework doesn't know about that change in state.
Certain window events were being ignored (like WM_CLOSE, menu selection
events, etc.). So replace the previous mechinism for bringing an existing
instance of the BOINC Manager to the foreground by creating a new global
window message which is tracked by the system tray icon. When the new
global message is fired make sure the CBOINCGUIApp::SetActiveGUI() function
is called to restore the window state which in turn updates all the internal
framework data structures.
clientgui/
BOINCGUIApp.cpp
clientgui/
BOINCTaskBar.cpp, .h
clientgui/msw/
taskbarex.cpp, .h
svn path=/trunk/boinc/; revision=22547
in the newly launched application that was throwing the error. Double
quotes around the parameter didn't fix the issue. For the time being
just hard code 'boincmgr.exe' as argv[0] as it isn't used by the Windows
client at all. wxWidgets won't find --multiple if it is argv[0].
clientgui/
AdvancedFrame.cpp
svn path=/trunk/boinc/; revision=22529
cycle, before any window or document creation. Prevents rapid window
creation and then destruction.
clientgui/
BOINCGUIApp.cpp, .h
svn path=/trunk/boinc/; revision=22504
close is selected on the window instead of the menu. Ideally the main
window would just be hidden until the notification icon is clicked, but
apparently wxWidgets/GTK/X doesn't like it when you attempt to hide the
main window.
- MGR: Display what cpu architecture the manager was built for in the about
box.
clientgui/
BOINCBaseFrame.cpp
DlgAbout.cpp
svn path=/trunk/boinc/; revision=22442
- MGR: If connected to the localhost, don't display the computer name
in the window title.
- MGR: Change the exit menu item text to be a little more specific about
what is being shutdown. Use the same scheme as the exit text in the
status bar so that it'll automatically be localized.
- SCR: Remove some old Win9x code.
clientgui/
AdvancedFrame.cpp
BOINCTaskBar.cpp
clientscr/
screensaver_win.cpp, .h
svn path=/trunk/boinc/; revision=22402
a skin is defined.
- MGR: A new new skin which will become the new default skin.
clientgui/
SkinManager.cpp
clientgui/skin/BOINC
<Various Files>
svn path=/trunk/boinc/; revision=22317