change various std::string to char[n], to improve performance.
NOTE: std::string should ONLY be used in cases where there is
no a priori limit on string length.
If there's a limit (e.g. because the string originates in
a fixed-size database field) always use char[n].
svn path=/trunk/boinc/; revision=20877
update the way that app versions are identified.
Old: WORKUNIT contains version_num
RESULT contains app_version_num (but only if running)
New: Keep old fields so new client works with old manager.
RESULT contains version_num, plan_class
Manager: if RESULT doesn't have version/plan_class
(because talking to old client)
look up app version based on WU version num.
svn path=/trunk/boinc/; revision=16903
(corresponding to the get_project_config.php web RPC):
- platforms: list of platforms supported by the project
- sched_stopped: scheduler disabled
- web_stopped: DB-driven web features disabled
- min_client_version
- GUI RPC: add the following items to CC_STATE:
- platforms: list of platforms supported by the client
(this replaces the unused <platform_name>)
- GUI RPC: add the following items to PROJECT_LIST_ENTRY
(entry in the "all projects" list):
- platforms: list of platforms supported by the project
- GUI RPC: move APP_VERSION pointer from WORKUNIT to RESULT;
include plan class in APP_VERSION lookup.
This completes the change of March 2008,
and allows the Manager to work correctly when a project
has two different app versions of the same (app, platform, version)
running on a client at once (e.g., a CPU and a GPU app)
- get_project_config.php: remove logic that checks client version.
This page is accessed by PHP, not just by client
- web: add link to forum page to get forum as RSS
svn path=/trunk/boinc/; revision=16900
of 'organization'.
- MGR: Add a new tab status to the Simple GUI for when
the client has been instructed to delay starting
applications via the <delay_start> option in cc_config.xml
(From Kevin Reed)
clientgui/
sg_ImageButton.cpp, .h
sg_ViewTabPage.cpp
SkinManager.cpp
svn path=/trunk/boinc/; revision=16280
- scheduler: fix bug in adaptive replication:
if send an unreplicated job to untrusted host,
set both wu.target_nresults and wu.min_quorum to app.target_nresults.
svn path=/trunk/boinc/; revision=15762
NOTE: Do not use the at() function on a vector unless you
also use a try/catch handler.
- MGR: Remove code duplication
clientgui/
sg_ClientStateIndicator.h
sg_ProgressBar.cpp, .h
sg_ViewTabPage.cpp
svn path=/trunk/boinc/; revision=14936
to close when the red X was clicked
- BSG: Added better text to status messages and tooltips
- BSG: Increased slide show timer to 10 seconds
svn path=/trunk/boinc/; revision=11507
- BSG: Remove workunit name
- BSG: Formatting changes to text on main screen
- BSG: Re-arrange the layout on the main screen
svn path=/trunk/boinc/; revision=11497
- Added a 'change' button to the preferences to change just the skin
- Fixed bug that caused the skin to crash when a invalid skin was selected
- Do not flash the 'messages' between red and black for messages that arrive while
the messages dialogue is open
- Set the selected tab when the BSG is first opened to be a workunit that is currently running
svn path=/trunk/boinc/; revision=11303
- Update User Stats when a rpc has completed with a project
- Update project slide show when new downloads have been received from the project
svn path=/trunk/boinc/; revision=11285
- Add message to space below slide show images to explain status of the workunit (running, paused)
- Fixed bug that sometimes caused slide shows to not load properly when first downloaded
or after they have been updated by the project
- Prevent workunit name from overflowing the side of BSG
- Play with tabs to make the selected tab stand out
- Fixed bug which caused a crash when switching between simple and advanced views
- Fixed a significant memory leak
- Eliminate some compiler warnings
svn path=/trunk/boinc/; revision=11274
- Eliminate dual timer issue if you change skins and have a slide show running
- Extend the wxFlatNotebook and moved all code related to the notebook and workunits into the new class (WorkunitNotebook)
- Change the height of the BSG to 570 pixels (from 600)
- Change the display area for the slide show to eliminate black border except where required by text for show graphics. New dimensions are width = 290, height = 126
- Check for updated slideshows after a project RPC and any files finish downloading
svn path=/trunk/boinc/; revision=11267