2006-01-04 13:14:14 +00:00
|
|
|
Rom 4 Jan 2006
|
|
|
|
- Branding update for GridRepublic
|
|
|
|
|
|
|
|
client/win/
|
|
|
|
boinc_cli.rc
|
|
|
|
boinc_cmd.rc
|
|
|
|
boinc_ss.rc
|
|
|
|
clientgui/
|
|
|
|
AccountInfoPage.cpp, .h
|
|
|
|
BOINCGUIApp.cpp, .h
|
|
|
|
WizardAccountManager.cpp
|
|
|
|
WizardAttachProject.cpp
|
|
|
|
resource.h
|
|
|
|
clientgui/res/
|
|
|
|
gridrepublic.ico
|
|
|
|
gridrepublic.xpm
|
|
|
|
gridrepublicamwizard.xpm (Added)
|
|
|
|
clientgui/res/
|
|
|
|
gridrepublic.ico
|
|
|
|
gridrepublicamwizard.bmp (Added)
|
|
|
|
win_build/installerv2/
|
|
|
|
GridRepublic.ism
|
|
|
|
win_build/installerv2/redist/GridRepublic/
|
|
|
|
GridRepublic.ico
|
|
|
|
GridRepublic.url
|
|
|
|
|
|
|
|
Rom 4 Jan 2006 (HEAD)
|
|
|
|
- Tag for 5.3.7 release, all platforms
|
|
|
|
boinc_core_release_5_3_7
|
|
|
|
|
2006-01-05 06:42:45 +00:00
|
|
|
David 4 Jan 2006
|
|
|
|
- replace safe_strncpy() with strlcpy() everywhere.
|
|
|
|
Same semantics, but the former is less efficient.
|
|
|
|
- simplified Bruce's recent fix to escape_string()
|
|
|
|
|
2006-01-05 07:28:12 +00:00
|
|
|
checkin_notes_2005 (new - Woo Hoo!)
|
2006-01-05 06:42:45 +00:00
|
|
|
api/
|
|
|
|
boinc_api.C
|
2006-01-05 07:28:12 +00:00
|
|
|
client/win/
|
|
|
|
hostinfo_win.cpp
|
2006-01-05 06:42:45 +00:00
|
|
|
db/
|
|
|
|
db_base.C
|
|
|
|
lib/
|
|
|
|
app_ipc.C
|
|
|
|
diagnostics.C
|
|
|
|
filesys.C
|
|
|
|
language.C
|
|
|
|
parse.C
|
|
|
|
util.C,h
|
|
|
|
sched/
|
|
|
|
handle_request.C
|
|
|
|
tools/
|
|
|
|
backend_lib.C
|
2006-01-05 07:37:51 +00:00
|
|
|
|
|
|
|
David 4 Jan 2006
|
|
|
|
- scheduler: scan_work_array(): if add_result_to_reply() fails, do NOT
|
|
|
|
reinsert the entry in the array by resetting the "present" flag.
|
|
|
|
We previously cleared this flag,
|
|
|
|
so the array entry may have been refilled by the feeder,
|
|
|
|
and it might be in the CHECKED_OUT state.
|
|
|
|
(from Paul Buck)
|
|
|
|
|
|
|
|
sched/
|
|
|
|
sched_array.C
|
2006-01-05 08:15:18 +00:00
|
|
|
|
|
|
|
Bruce 5 Jan 2006
|
|
|
|
- Fixed David's mistake in simplifying my fix to escape_string()!
|
|
|
|
db/
|
|
|
|
db_base.C
|
|
|
|
|
2006-01-05 08:52:20 +00:00
|
|
|
David 4 Jan 2006
|
|
|
|
- fixed inefficient unescape_string()
|
|
|
|
|
|
|
|
db/
|
|
|
|
db_base.C
|
2006-01-05 09:30:41 +00:00
|
|
|
|
|
|
|
Bruce 5 Jan 2006
|
|
|
|
- Fixed new unescape_string(): didn't null terminate string.
|
|
|
|
|
|
|
|
db/
|
|
|
|
db_base.C
|
|
|
|
|
2006-01-06 09:02:26 +00:00
|
|
|
Bruce 6 Jan 2006
|
|
|
|
- Nasty bug in API lib. See checkin_nodes_2004 December 22.
|
|
|
|
Functions meant to be used from within C shoud never be
|
|
|
|
declared bool!
|
|
|
|
|
|
|
|
Fix: change boinc_is_standalone() to return int not bool.
|
|
|
|
|
|
|
|
Note: some API functions still return bools, but since E@H
|
|
|
|
doesn't use them and I am afraid of doing damage, I have
|
|
|
|
left them alone.
|
|
|
|
|
|
|
|
api/
|
|
|
|
boinc_api.C
|
|
|
|
boinc_api.h
|
|
|
|
graphics_impl.h
|
|
|
|
graphics_impl_lib.C
|
|
|
|
|