(calculate_credit_multiplier) to determine what factor to multiply
claimed credit by before insertion into the database. Changes to scheduler
to implement have not yet been checked in.
svn path=/trunk/boinc/; revision=15309
- Added a stage target for staging a distribution.
Executing "make stage" will "make all" and will install the client
under the stage directory (i.e. binaries is stage/$(prefix)/bin, libraries
in stage/$(prefix)/lib, etc)
Makefile.am
svn path=/trunk/boinc/; revision=15306
- added Makefile to clientgui/icons to install them in $(pkgdatadir) which
is usually $(prefix)/share/boinc.
- Even though these icons are packaged with the sea, they don't appear
to be referenced in any code and don't appear to ever be used.
svn path=/trunk/boinc/; revision=15305
added client/scripts to default client build
removed sea from the default clientgui build
added locale/client to the default clientgui build
moved installed headers from $(includedir) to $(pkgincludedir) which
is $(includedir)/boinc by default.
removed redefinitions of $(includedir) from Makefiles.
- configure:
added locale/client/Makefile to AC_CONFIG_FILES
svn path=/trunk/boinc/; revision=15300
"BOINC-Manager.*"
- Added Makefile to locale/client to install the BOINC Manager.po files
into $(datadir)/locale (typically $(prefix)/share/locale)
svn path=/trunk/boinc/; revision=15299
didn't exist yet, so all the values in the returned data structures
was random junk. If the directory had never been created before
then it was returning 27/57 bytes free. If the drectory had existed
at one time then the return values were several gigabytes.
If the first request to GetFreeDiskSpaceEx fails, then check for the
parent directory, if that fails pass a NULL value which means check
the default volume.
win_build/installerv2/redist/Windows/src/boinccas/
boinccas.def
boinccas.rc
boinccas.vcproj
CAMigrateBOINCData.cpp
CASetPermissionBOINCDiagnostics.cpp, .h (deleted)
win_build/installerv2/redist/Windows/Win32/
boinccas.dll
boinccas95.dll
win_build/installerv2/redist/Windows/x64/
boinccas.dll
boinccas95.dll
svn path=/trunk/boinc/; revision=15298
so there was no way of rescuing a team with invalid founder email.
I changed it to record the request anyway.
This is potentially hazardous - if the founder's email server
is temporarily down, the request would go through
without the founder being notified.
To offset this, I added a notification via private message.
svn path=/trunk/boinc/; revision=15296
This prevents a DoS by sending <auth1> over and over,
filling the send buffer and eventually causing the client to block.
- Unix build: if m4 missing, check for gm4
svn path=/trunk/boinc/; revision=15282
- config option <matchmaker> for matchmaker scheduling
- config options <mm_min_slots>, <mm_max_slots>, <job_size_matching>
to control matchmaker scheduling
- scheduler: tweaks to matchmaker scheduling from Kevin Reed
- web: fixes to alternative stylesheet from Simek
svn path=/trunk/boinc/; revision=15281
even if we already have the APP_VERSION.
Otherwise, when upgrading from 5.10 to 6.2,
we won't have the api_version,
and we won't learn about it until project releases new version.
svn path=/trunk/boinc/; revision=15277
location so that the diagnostics framework can use the
debugger libraries.
NOTE: This is only a problem for applications running
under the v6 clients.
lib/
diagnostics.C, .h
diagnostics_win.C
svn path=/trunk/boinc/; revision=15266
It turned out that when we close and reopen
the temp file that stores the HTTP reply, the open was failing.
I have no idea why.
Attempted workaround: open the file for R/W originally,
and instead of close/open do a seek.
svn path=/trunk/boinc/; revision=15238
would send a reply without having looked up the user and team
in the DB; e.g.:
- client version# is too low
- DB is down
- host is blacklisted
It would then send a full scheduler reply,
including a blank team name and other missing info.
Fix this by setting reply.nucleus_only initially
(this causes a minimal reply to be sent)
and clearing it only if the host/user/team lookup succeeds.
Fixes#417, #633 (I think)
svn path=/trunk/boinc/; revision=15232
(as is the case if its DB is down,
or it has no work and skips the DB check)
don't overwrite the host_venue on the client.
Fixes#656, I hope (Rom: please port)
svn path=/trunk/boinc/; revision=15230