-
Notifications
You must be signed in to change notification settings - Fork 449
/
checkin_notes_2008
10428 lines (8508 loc) · 279 KB
/
checkin_notes_2008
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
David Jan 1 2008
- fixed bug in upgrade
checkin_notes_2007 (new)
tools/
upgrade
David Jan 1 2008
- web: My Account page, other user account page, and profile pages
now have community info in a 2nd column on the right.
This accomplishes two things:
1) it puts community info in more places;
2) it provides a reasonable way to format long lists of friends;
they just continue down the right column.
html/
inc/
profile.inc
user.inc
util.inc
ops/
profile_screen_form.php
user/
home.php
profile_rate.php
show_user.php
view_profile.php
Charlie Jan 2 2008
- Mac Client: revert to using older API NXIdleTime() to get user
idle time because the newer APIs CGSSecondsSinceLastInputEvent()
and CGEventSourceSecondsSinceLastEventType() don't work properly
when running as a daemon.
- Mac: Update script which sets BOINC up to run as a daemon so it
works properly under OS 10.5.
client/
hostinfo_unix.C
main.C
lib/
hostinfo.h
mac_build/
Make_BOINC_Service.sh
David Jan 1 2008
- web: add "Find friends" link to private friends list
- web: in user search form, give input focus to name field
html/
inc/
user.inc
user/
user_search.php
David Jan 3 2008
- make_project: prepend "./" to config.xml script names in case "." is not
in Apache's search path
- web: show UOTD text correctly
- web: memoize profile_screening() in attempt to fix out-of-memory error
when building profile pages on S@h
- web: move gallery.inc into update_profile_pages and remove it
html/
inc/
gallery.inc (removed)
profile.inc
uotd.inc
ops/
update_profile_pages.php
tools/
make_project
David Jan 3 2008
- web: fix broken link for profile like/don't like.
TODO: currently these don't do anything useful. Fix this.
html/inc/
profile.inc
David Jan 3 2008
- API: on Mac, call getrusage() from timer thread
(since calling it from worker thread causes crashes).
On Linux, call getrusage() from the worker thread
(since calling it from the timer thread returns zero on some systems).
- stripcharts: make it work even if Perl is not in path (from Eric Myers)
api/
boinc_api.C
stripchart/
stripchart
David Jan 4 2008
- web: add RSS feed for notifications
- make_project: disable community-related periodic tasks
for newly-created projects
html/
inc/
forum.inc
friend.inc
notify.inc (new)
pm.inc
user.inc
user/
img/
rss_icon.gif
sample_index.php
tools/
make_project
Charlie Jan 6 2008
- Mac Client: more idle time tweaks to allow running as a daemon by
using Mac OS X's launchd mechanism.
- Mac Installer: if system is set up to run BOINC Client as a daemon
using launchd, use launchctl to launch newly installed Client as
a daemon.
client/
hostinfo_unix.C
main.C
mac_installer/
PostInstall.cpp
David Jan 6 2008
- web: bug fixes
html/
inc/
util.inc
ops/
update_profile_pages.php
David Jan 6 2008
- scheduler: change <max_wus_in_progress> to be per CPU, not per host
sched/
sched.send.C
sched_config.h
David Jan 7 2008
- Added Isle of Man to country list
html/inc/
countries.inc
David Jan 7 2008
- XML fix in backend lib
tools/
backend_lib.C
Rom Jan 7 2008
- Empty strings cause CreateProcess to fail on parameter checks.
clientgui/
BOINCGUIApp.cpp
David Jan 7 2008
- API: fix to changeset 14462: I put the getrusage() in the wrong place
api/
boinc_api.C
David Jan 7 2008
- small web fixes; fixes #421
html/
ops/
show_log.php
manage_user.php
inc/
util_ops.inc
David Jan 7 2008
- web: if user A is ignoring user B,
don't accept a friend request from B to A
- boinc_cmd: --help fix
html/user
friend.php
lib/
boinc_cmd.C
Charlie Jan 7 2008
- Mac MGR: if using Mac OS X's launchd mechanism to run Client as a daemon,
allow time for daemon to launch.
- Mac: Update script which sets BOINC up to run as a daemon so it
uses Mac OS X's launchd mechanism. This requires BOINC version
5.10.34 or later and Mac OS 10.4 or later.
clientgui/
BOINCGUIApp.cpp,.h
mac_build/
Make_BOINC_Service.sh
David Jan 7 2008
- web: add "Mark all threads as read" button to Help Desk (fixes #531)
- add "self" link to RSS notify feed
- web: if fail to send email, don't show error message
(might reveal recipient's email addr)
html/
inc/
email.inc
forum.inc
user/
forum_help_desk.php
forum_index.php
notify_rss.php
David Jan 8 2008
- API: call update_app_progress() only from the timer thread.
Previously it was called from both timer and worker thread,
with no synchronization. Bad.
boinc_finish(): sleep for 2 seconds, enough to ensure that
the timer thread sends the final messages.
- API: a compile flag GETRUSAGE_IN_TIMER_THREAD selects
how to get CPU time; by default set only for Mac OS X
- scheduler: cap #CPUs scaling for <max_wus_per_host> at 8
api/
boinc_api.C
sched/
sched_send.C
David Jan 8 2008
- client, Win: check for two process exit codes (0x40010004 and 0xc000013a)
that appear to happen when the process is killed externally;
seems to happen mostly or entirely on Vista
client/
app_control.C
Charlie Jan 8 2008
- Mac: additional error checking in build script; fix url in error message.
mac_build/
BuildMacBOINC.sh
David Jan 9 2008
- API, Unix: fix bug where boinc_sleep() hangs forever.
This was because SIGALRM always interrupts sleep()
and keeps boinc_sleep() stuck in its while loop.
Solution: change boinc_sleep() so that it works even if
rapid signals (e.g. interval timer) are happening
- API: remove deprecated graphics files from Makefile.
Old-style graphics are no longer supported.
- web: add empty show_user_donations_private() to donations.inc
api/
Makefile.am
boinc_api.C,h
html/
project.sample/
donations.inc
user/
home.php
David Jan 9 2008
- Fix the credit_study.php script to 1) be correct and
2) explain its output
html/ops/
credit_study.php
David Jan 9 2008
- client: patches to make it work on FreeBSD
- client: fix bug where attaching to a project with existing
app_info.xml would fail to parse the app_info.xml
(both from Pav Lucistnik)
client/
cs_account.C
hostinfo_unix.C
Charlie Jan 10 2008
- MGR: display MSG_USER_ERROR messages in red, all others in black
in both SimpleGUI and Advanced GUI message dialogs; eliminate
unused FormatPriority method.
- MGR: Auto-scroll messages only if already at bottom of list (don't
jump to bottom while examining earlier messages.)
NOTE: these changes may need to be applied in CViewMessagesGrid class
if we implement that in the future.
clientgui/
sg_DlgMessages.cpp,.h
ViewMessages.cpp
David Jan 10 2008
- client: don't count header in bytes_xferred for file uploads
(this causes confusing output in the Manager,
bytes xferred greater than file size)
- API and client: make boinc_sleep() work regardless of signals
- some code cleanup in http_curl.C
client/
http_curl.C,h
html/inc/
stats_sites.inc
lib/
util.C
Charlie Jan 10 2008
- Mac API: Delete old target gfxlibboinc and obsolete source files
from XCode project.
- Mac: Update build script to build libboinc_graphics2.a instead of
libboinc_graphics_api.a. Fixes #536.
mac_build/
boinc.xcodeproj/
project.pbxproj
BuildMacBOINC.sh
David Jan 10 2008
- Fix long-standing bug in CPU throttling
client/
cs_prefs.C
Rom Jan 11 2008
- MGR: Inform the user that they'll need to be added to the boinc_users
group if access to gui_rpc_auth.cfg is denied.
- Fix a crash condition when BOINC is started as a standard user account
without the 'create global named objects' user right on Vista.
- WINSETUP: Make sure that BOINC Tray is started for all users on the
system.
- WINSETUP: If the 'All users can control BOINC' checkbox is checked then
put the BOINC Manager startup short cut in the 'all users' startup directory
otherwise put it in the 'users' startup directory.
clientgui/
BOINCBaseFrame.cpp, .h
MainDocument.cpp, .h
clientlib/win/
IdleTracker.cpp
win_build/installerv2/
BOINC.ism
win_build/installerv2/redist/Windows/src/boinccas/
boinccas.rc
win_build/installerv2/redist/Windows/Win32/
boinccas.dll
boinccas95.dll
win_build/installerv2/redist/Windows/x64/
boinccas.dll
boinccas95.dll
Rom Jan 11 2008 (HEAD)
- Tag for 6.1.6 release, all platforms
boinc_core_release_6_1_6
David Jan 11 2008
- web: fix bug there message link not correct in search results
fixes #539
html/user/
forum_search_action.php
David Jan 11 2008
- client, Win: check for network connectivity (for time stats log file)
- client: add platform/version lines to time stats log file
client/
http_curl.C
sim_util.C
time_stats.C
lib/
network.C,h
win_build/
boinc_cli_curl.vcproj
David Jan 11 2008
- web: in host merge pages, provide "Show details" button,
which shows the reasons why pairs of hosts
were not eligible for merging
html/
inc/
host.inc
user/
host_edit_form.php
Charlie Jan 11 2008
- Mac: Fix compile error on some Macs by changing XCode Project reference
"texfont.c" to "texfont.C".
- MGR: New message about needing to be added to the boinc_users group
applies only to Windows.
mac_build/
boinc.xcodeproj/
project.pbxproj
clientgui/
BOINCBaseFrame.cpp
David Jan 12 2008
- Client: add <run_apps_manually> config flag.
This is for debugging apps (currently works only in Unix).
What it does: when running an app,
the client does everything except actually fork/exec the app,
i.e. it sets up the slot dir, creates shared mem segment etc.
It then continues as if the app were actually running,
and you can then manually run your app under a debugger
in the slot directory.
Note: the client won't notice the termination of your app.
- API, Unix: in situations where the timer thread wants to exit
(e.g. it notices a missing heartbeat).
don't directly call boinc_exit(),
since this touches data structures that the worker thread
may be using concurrently.
Instead, set a flag telling the worker thread to call boinc_exit()
(which it will do from its signal handler)
This is an attempt to fix problems reported by Bernd;
I haven't tested it.
- scheduler: add config flag for uploading usage data
- web: show account key and weak account key on user page
- added some code for multithread support (not finished)
api/
boinc_api.C,h
client/
app.h
app_control.C
app_start.C
cpu_sched.C
log_flags.C,h
html/
inc/
user.inc
user/
white.css
lib/
app_ipc.C,h
sched/
Makefile.am
handle_request.C
sched_config.C,h
server_types.C,h
David Jan 12 2008
- client: implement <start_apps_manually> for Windows too
- client: check /dev/input/mice/ for idle detection;
apparently that's replaced /dev/mouse in Linux
(from Toby Murray)
- API: make old-style graphics compile again
api/
boinc_api.C,h
graphics_api.C
graphics_impl.C
graphics_lib.C
client/
app_start.C
hostinfo_unix.C
David Jan 14 2008
- server/web: the weak auth scheme had a major flaw:
It didn't work on a host's first scheduler RPC
(when it passes an auth but no host ID).
How do we look up user in this case?
The weak auth is not stored explicitly in the DB.
Solution: include the user ID in the weak auth.
(this invalidates existing weak auths)
html/
inc/
user.inc
user/
weak_auth.php
sched/
handle_request.C
David Jan 14 2008
- scheduler: forgot to add a couple of files
sched/
time_stats_log.C,h
David Jan 14 2008
- renamed clean_out_dir() to client_clean_out_dir(),
and put the original clean_out_dir() back in lib/filesys.C
client/
app.C
app_control.C
file_names.C
sandbox.C,h
lib/
filesys.C,h
David Jan 14 2008
- updated INSTALL
INSTALL
Rom Jan 14 2008
- Add a "Forgot your password" hyperlink to the wizards
account info page.
clientgui/
AccountInfoPage.cpp, .h
BOINCWizards.h
David Jan 14 2008
- scheduler: fix weak auth bug
sched/
handle_request.C
Charlie Jan 14 2008
Fix Compiler warning.
api/
boinc_api.C
David Jan 15 2008
- client: a project (Ralph) had accidentally included a .svn directory in a zip archive,
resulting in a lot of read-only files in its slot directories.
When the client attempts to delete these files,
each delete fails and the client retries for about 5 seconds.
This adds up to a delay of about 20 minutes,
during which the client (and Manager) appear to be hung.
Solution:
1) if a file delete fails with error ERROR_ACCESS_DENIED,
use SetFileAttributes() to clear the read-only flag, then try again.
2) Don't use the 5-second retry mechanism when clearing out
slot directories. These can contain unbounded numbers of files,
and this can lead to long periods where the client appears hung.
client/
app.C
client_types.C
cs_trickle.C
file_names.C
sandbox.C,h
Rom Jan 15 2008
- WINSETUP: Add some additional comments to the setup log when
we know we cannot do a migration and why.
win_build/installerv2/redist/Windows/src/boinccas/
boinccas.rc
CAMigrateBOINCData.cpp
win_build/installerv2/redist/Windows/Win32/
boinccas.dll
boinccas95.dll
win_build/installerv2/redist/Windows/x64/
boinccas.dll
boinccas95.dll
David Jan 15 2008
- Manager: "Forgot your password" needs a question mark
- Win diagnostics: diagnostics_dump_thread_information() had a printf
with bad format string, caused a crash, not what diagnostics should do
clientgui/
AccountInfoPage.cpp
lib/
diagnostics_win.cpp
David Jan 15 2008
- web: fixed screwed-up UOTD logic.
The meaning of the <screen_profiles> config flag is:
If set:
profiles must be screened by admins before their photo is shown.
When this is done, profile.verification is set to 1
(and they become eligible to be UOTD)
If not set:
profile photos are always shown.
Profiles must be screened by admins before
they are eligible for UOTD.
When this is done, profile.verification is set to 1
So default_uotd_candidates_query() is the same in either case.
- web: fix profile_screen_form.php
(admin page for screening profiles)
- web: make a copy of login_action.php in ops/
html/
inc/
uotd.inc
ops/
login_action.php (new)
profile_screen_form.php
David Jan 15 2008
- client: restore proper sense of --check_all_logins
(should this be set by default?)
- web: removed addslashes() when building language translation arrays.
These caused 's to be displayed as \' everywhere.
They may serve some purpose, but I can't think of what it is.
- web: changed max profile image dimensions from 800x600 to 640x480.
The new profile page puts a column to the right
of the image, so it shouldn't be quite that wide.
client/
hostinfo_unix.C
html/
inc/
profile.inc
translation.inc
stats_sites.inc
user/
create_profile.php
lib/
filesys.C
David Jan 15 2008
- API: fix to zip code (from Carl C)
zip/zip/
z_fileio.c
Charlie Jan 15 2008
MGR: When connection to Client is lost, don't clear message window; show
messages grayed out instead.
NOTE: these changes may need to be applied in CViewMessagesGrid class
if we implement that in the future.
clientgui/
MainDocument.cpp
clientgui/
sg_DlgMessages.cpp
ViewMessages.cpp
Charlie Jan 16 2008
Mac Sandbox: make BOINC Data directory and files not world-readable to
hide account keys from unauthorized users.
client/
check_security.C
client_types.C
file_names.C
main.C
clientgui/
mac/
SetupSecurity.cpp
doc/
sandbox.php
Rom Jan 16 2008
- MGR: If the project_init.xml file suggests a project to attach too
attempt to attach to it.
- CLIENT: Move the code that deletes the project_init.xml from detach
project to attach project. It is only needed for as long as
it takes to attach to a project.
client/
gui_rpc_server_ops.C
clientgui/
AdvancedFrame.cpp
sg_BoincSimpleGUI.cpp
Charlie Jan 17 2008
Mac Sandbox: make user boinc_master part of group boinc_project.
client/
check_security.C
clientgui/
mac/
SetupSecurity.cpp
doc/
sandbox.php
Rom Jan 17 2008 (HEAD)
- Tag for 6.1.7 release, all platforms
boinc_core_release_6_1_7
David Jan 17 2008
- API: make the libraries for old-style graphics compile again
(these are no longer supported, but they probably still work)
api/
boinc_api.C,h
graphics_impl.h
client/
acct_mgr.C
Charlie Jan 17 2008
API: fix compiler warning.
Mac Sandbox: group membership apparently only affects real UID not
effective UID, so it made no difference; remove code which makes
user boinc_master part of group boinc_project.
Mac Sandbox: make BOINC Data directory and files not world-readable to
hide account keys from unauthorized users; but make files in slots
and project directories world-readable so Client can read files
written by project applications with user and group boinc_project.
api/
texfont.C
client/
app_start.C
check_security.C
clientgui/
mac/
SetupSecurity.cpp
doc/
sandbox.php
mac_build/
Mac_SA_Secure.sh
David Jan 18 2008
- scheduler: if get request w/o host ID,
use most recently created host with same domain name,
IP addr, OS name, and CPU model, if one exists.
(from Kevin Reed)
sched/
handle_request.C
Rom Jan 18 2008
- WINSETUP: Fix failed termination attempts on Win64
win_build/installerv2/
BOINC.ism
win_build/installerv2/redist/Windows/src/boinccas/
boinccas.rc
terminate.h
win_build/installerv2/redist/Windows/Win32/
boinccas.dll
boinccas95.dll
win_build/installerv2/redist/Windows/x64/
boinccas.dll
boinccas95.dll
Charlie Jan 18 2008
GFX API: change args passed to GlutInit() to be original unmodified args
which were passed to the application, as specified in the man page.
api/
graphics2_unix.C
David Jan 19 2008
- web: fixed extremely minor bug in forum search; fixes #539
html/user/
forum_search_action.php
David Jan 21 2008
- create_work: added -opaque option (to specify workunit.opaque)
client/
log_flags.C
tools/
create_work.C
Rom Jan 21 2008
- MGR: Shrink the amount of space between the different projects
in the project list.
clientgui/
ProjectListCtrl.cpp
Rom Jan 21 2008
- MGR: Make sure the attach to project wizard launches if BOINC
is not attached to any projects.
clientgui/
AdvancedFrame.cpp
sg_BoincSimpleGUI.cpp
Rytis Jan 22 2008
- User web: fix donations page with multiple donation targets.
html/user/
donation_ipn.php
David Jan 23 2008
- upgrade script: rename cgi and file_upload_handler
before trying to copy new ones,
in case there's an instance currently running
py/Boinc/
setup_project.py
Charlie Jan 23 2008
GFX API: Fix to makefile for Macintosh (from Bernd Machenschalk).
api/
makefile.am
Rom Jan 24 2008
- LIB: Make sure that the worker and graphics processes are created
using the idle process priority class.
lib/
util.C
David Jan 24 2008
- scheduler: get FCGI version to compile
lib/
miofile.C
util.C
sched/
Makefile.am
David Jan 24 2008
- Manager: make email input field bigger
clientgui/
AccountInfoPage.cpp
David Jan 28 2008
- API: allow Win apps to have icon
api/
Makefile.am
graphics2.h
graphics2_win.C
David Jan 28 2008
- web: fix bug in handling of links on "forget password?" emails
- web: show number of friends
html/
inc/
user.inc
user/
login_action.php
David Jan 28 2008
- client: add <force_ntlm> config flag.
Causes client to use NTLM auth and HTTP 1.0
- client: we weren't doing exponential backoff if scheduler
requests failed at initialization; fix this
client/
http_curl.C
log_flags.C,h
scheduler_op.C
David Jan 28 2008
- API: fix Win build error
- API: fix Makefile.am
- add LGPL license on some files
api/
Makefile.am
graphics_api.C
graphics2_win.C
graphics2_unix.C
graphics2_util.C
graphics2.C
Charlie Jan 29 2008
- Mac: Update libCurl to 7.18.0, build with c-ares-1.5.1 to enable
async DNS name resolving.
- Mac API: move mac_icon.C from target api_libboinc to gfx2libboinc
(link it into libboinc_graphics2.a instead of libboinc_api.a).
mac_build/
buildc-ares.sh (new)
buildcurl.sh
HowToBuildBOINC_XCode.rtf
setupForBOINC.sh
boinc.xcodeproj/
project.pbxproj
Charlie Jan 29 2008
- MGR: Delete web site buttons when disconnected; this was causing
crashes when a user connected to a different computer.
clientgui/
BOINCBaseView.cpp
MainDocument.cpp
ViewProjects.cpp
ViewProjectsGrid.cpp
ViewWork.cpp
ViewWorkGrid.cpp
David Jan 29 2008
- graphics API: default max graphics CPU fraction is 0.2
(see accompanying changes in example app;
app should parse project-specific prefs)
api/
graphics2.C
David Jan 29 2008
- web: add "max CPU % for graphics" project-specific preference.
Projects should copy or merge
project.sample/project_specific_prefs.inc
- screensaver: change
Running research for PROJECT
Workunit: X
to
Computing for PROJECT
Task: X
clientscr/
screensaver_win.cpp
html/
project.sample/
project_specific_prefs.inc
inc/
prefs.inc
David Jan 29 2008
- web: add "% of CPUs to use on multiprocessors" pref
- client: enforce the above pref; remove the max_cpus pref.
client/
cpu_sched.C
html/inc/
prefs.inc
lib/
prefs.C,h
David Jan 29 2008
- manager: change advanced preferences to handle the above pref
clientgui/
DlgAdvPreferences.cpp
DlgAdvPreferencesBase.cpp
Charlie Jan 29 2008
- SCR: When running V5 GFX applications as a service / daemon, display
appropriate error message instead of trying to display graphics.
- API: Add executing_as_daemon bool to get_state rpc.
- MGR: Disable Show Graphics button for V5 GFX applications when BOINC
is running as a service / daemon.
client/
cs_statefile.C
clientgui/
MainDocument.h
ViewWork.cpp
ViewWorkGrid.cpp
clientscr/
boinc_ss.rc
mac_saver_module.cpp
Mac_Saver_Module.h
screensaver.cpp
screensaver_win.h
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
Rom Jan 30 2008
- MGR: Change the CC startup logic so that more informative error
messages.
Policy Change: When installed as a service or daemon, the service
or daemon manager should start BOINC, not the BOINC Manager.
(Windows Only for right now, should eventually be applied
to all platforms)
- LIB: Revert my previous change that launched graphics apps as
an idle process.
- LIB: Take care of some warnings.
clientgui/
BOINCBaseFrame.cpp, .h
BOINCClientManager.cpp, .h (Added)
BOINCGUIApp.cpp, .h
MainDocument.cpp, .h
lib/
util.C
Charlie Jan 30 2008
- MGR: Fix a few bugs in the new CC startup logic; if configured to
run client as a daemon on the Mac, then start / restart it as a
daemon when necessary. Add new source files to XCode project.
clientgui/
BOINCClientManager.cpp,.h
BOINCGUIApp.cpp
mac_build/
boinc.xcodeproj/
project.pbxproj
Rom Jan 30 2008 (HEAD)
- Tag for 6.1.8 release, all platforms
boinc_core_release_6_1_8
Rom Jan 31 2008
- WINSETUP: Fix the migration check where sometimes the data directory
was being detected as within the install directory even though it
was not.
win_build/installerv2/redist/Windows/src/boinccas/
boinccas.rc
CAMigrateBOINCData.cpp
win_build/installerv2/redist/Windows/Win32/
boinccas.dll
boinccas95.dll
win_build/installerv2/redist/Windows/x64/
boinccas.dll
boinccas95.dll
Eric K Jan 31 2008
- Fixed missing symbols in MINGW32 application builds.
- Fixed some type warnings.
lib/
boinc_win.h
diagnostics_win.h
md5_file.C
miofile.C
procinfo_win.C
stackwalker_win.cpp
Rom Jan 31 2008
- WINSETUP: Don't configure MSI so that it'll attempt to stop the
BOINC service, we already do it much earlier in the install