forked from BOINC/boinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkin_notes_2010
8869 lines (7109 loc) · 235 KB
/
checkin_notes_2010
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 3 Jan 2010
- client: ATI available RAM wasn't being detected correctly
client/
coproc_detect.cpp
David 4 Jan 2010
- web: don't show news items if they're hidden
html/inc/
news.inc
David 4 Jan 2010
- client: RSS feed stuff
client/
cs_notice.cpp,h
lib/
notice.cpp
Rom 4 Jan 2010
- lib: fixup notice RPCs to make them manager compatible.
- lib: remove memset from notice constructor, bad things can happen
when you null out a std::string structure.
lib/
gui_rpc_client.h
gui_rpc_client_ops.cpp
notice.cpp, .h
Rom 4 Jan 2010
- MGR: Implement Notice RPC infrastructure.
clientgui/
AsyncRPC.cpp, .h
MainDocument.cpp, .h
Rom 4 Jan 2010
- MGR: Implement UI plumbing for notices
clientgui/
ViewNotifications.cpp, .h
Rom 4 Jan 2010
- MGR: Display each notice in the notices tab.
clientgui/
MainDocument.cpp
ViewNotifications.cpp, .h
David 4 Jan 2010
- GUI RPC: return notices in order of increasing seqno, not decreasing
client/
cs_notice.cpp
Rom 4 Jan 2010
- MGR: Present the newest notices first.
clientgui/
MainDocument.cpp
lib/
gui_rpc_client_ops.cpp
Bernd 5 Jan 2010
a couple of locality scheduling fixes:
- remove obsolete and buggy code from transitioner (create_result() in backend_lib)
- account for 'mixed' scheduling in explain_to_user() in sched_send.cpp
- finish transition to configurable patterns for distinguishing files reported by the client
in the Einstein@home-specific part of send_work_locality in sched_locality
(removed previous hardcoded strcmps)
tools/
backend_lib.cpp
sched/
sched_send.cpp
sched_locality.cpp
David 4 Jan 2010
- code shuffle
client/
work_fetch.cpp
David 4 Jan 2010
- client: fix format strings for ninstances (can be fraction now)
client/
scheduler_op.cpp
work_fetch.cpp
David 5 Jan 2010
- client: scheduling problem:
- a project overestimates job FLOP counts
- the client starts jobs in EDF mode
- as job progresses and fraction done increases,
its completion time estimate decreases until
it's no longer a deadline miss.
- job gets preempted by other job from that project;
you end up with lots of partly completed jobs.
Solution (I hope): if an app version has running jobs,
compute a "temp DCF" for the app version,
which is the min of dynamic/static estimates for its jobs.
Apply this scaling factor to completion time estimates
for unstarted jobs in RR simulation
- client: the estimation of remaining time of running jobs was wrong
(how did this bug survive so long?)
client/
app.h
client_types.h
rr_sim.cpp
work_fetch.cpp
Charlie 6 Jan 2010
- client: Eliminate x86_64 Mac client; i386 client determines if
system supports x86_64 applications and sets HOSTTYPE and
platform accordingly. This allows us to link with the 32-bit
CUDA libraries. The one other effect is that the benchmarks
are run in 32-bit mode even on a 64-bit capable Mac.
- client: Async get_state RPC was not updating state.have_ati field.
- MGR: Rebuild Advanced Menu and Taskbar Menu after connecting to
client, so GPU Activity and Snooze GPU items are displayed if
needed.
client/
cs_cmdline.cpp
cs_platforms.cpp
clientgui/
AdvancedFrame.cpp
AsyncRPC.cpp
sg_BoincSimpleGUI.cpp
mac/
config.h
mac_build/
boinc.xcodeproj/
project.pbxproj
David 6 Jan 2010
- client: bug in ACTIVE_TASK::est_dur()
client/
work_fetch.cpp
David 6 Jan 2010
- client: notice fixes
client/
client_state.cpp
cs_notice.cpp,h
David 6 Jan 2010
- admin web: allow setting per-app HR class
html/ops/
manage_apps.php
Charlie 6 Jan 2010
- client: Fix compiler warning.
- client: Fix crash bug.
NOTE: do not call memset(this, 0, sizeof(*this)) when the data
contains a std::string.
client/
cs_notice.cpp
David 6 Jan 2010
- boinccmd: add --get_notices option
client/
boinc_cmd.cpp
Charlie 7 Jan 2010
- Mac: Fix bug in backtrace code which showed up only under OS 10.6.
lib/
mac/
mac_backtrace.C
Charlie 7 Jan 2010
- Mac: Fix bug in backtrace code which showed up only under OS 10.6.
- Mac installer: Add CUDA information to Mac ReadMe files.
lib/
mac/
mac_backtrace.C
mac_installer/
GR-ReadMe.rtf
PTP-ReadMe.rtf
ReadMe.rtf
David 7 Jan 2010
- manager: tweak notice appearance
client/
cs_notice.cpp
clientgui/
ViewNotifications.cpp
David 7 Jan 2010
- client: work fetch fix: avoid sending null request in certain cases.
- client: fix crash in notices code
client/
cs_notice.cpp
work_fetch.cpp
Rom 7 Jan 2010
- MGR: Prevent timer events from causing recursive ui issues.
clientgui/
ViewNotifications.cpp
Charlie 8 Jan 2010
- client: Fix another crash bug due to calling memset(this, 0, sizeof(*this))
when the data contains a std::string.
client/
cs_notice.cpp
Charlie 8 Jan 2010
- MGR: Separate refresh of Event Log from refresh of tabs.
- MGR: Update Notices tab only when data has changed.
- MGR: Clean up some async RPC logic.
clientgui/
AdvancedFrame.cpp
AsyncRPC.cpp, .h
DlgEventLog.cpp, .h
MainDocument.cpp, .h
sg_BoincSimpleGUI.cpp
ViewNotifications.cpp, .h
Charlie 8 Jan 2010
- MGR: When Event Log is open, do get_messages RPC once per second but
do view-specific periodic RPCs at their normal View refresh rate.
clientgui/
AdvancedFrame.cpp
BOINCBaseFrame.cpp, .h
MainDocument.cpp, .h
David 9 Jan 2010
- client (Mac): append /usr/local/cuda/lib to LD_LIBRARY_PATH
and DYLD_LIBRARY_PATH
- client simulator: compile fixes
client/
app.cpp
app_start.cpp
client_state.h
cs_apps.cpp
rr_sim.cpp
sim.cpp,h
time_stats.cpp
work_fetch.cpp
David 9 Jan 2010
- user web: make user search translatable
html/user/
donations.php
user_search.php
David 10 Jan 2010
- client: fix notification display logic
clientgui/
ViewNotifications.cpp
David 10 Jan 2010
- fix python deprecation warning (from Jeremy Cowles)
py/Boinc/
tools.py
David 11 Jan 2010
- API: if app can't acquire lock file, tell the client not
to restart app for 10 minutes.
Hopefully what will happen is:
- another instance of app is running in slot dir
(shouldn't happen, but sometimes does)
- that app will eventually finish, and will write
a checkpoint file saying so.
It will call boinc_finish(0), but the client won't notice
that it has exited.
- the next time the client starts the app,
it will acquire lock, see that it's done,
and call boinc_finish(0).
This time the client will notice,
and the job will be reported as correct.
The downside to all this is that the client won't know
that the CPU is in use, and will schedule NCPUS jobs.
api/
boinc_api.cpp
Charlie 12 Jan 2010
- client sandbox: set LD_LIBRARY_PATH and DYLD_LIBRARY_PATH in switcher.
For unknown reasons, the these 2 environment variables are not
passed in to switcher, though all other environment variables do get
propagated.
client/
switcher.cpp
mac_build/
boinc.xcodeproj/
project.pbxproj
Bernd 12 Jan 2010
- file_deleter:
- Limit the number of files to be deleted in one 'antique
deletion' pass to 50000 (can be changed with -delete_antiques_limit).
Previously large number of antiques led to not deleting any at all.
- Allow to change the interval between passes with -delete_antiques_interval.
- Allow to specify the name of an application instead of the appid.
sched/
file_deleter.cpp
David 12 Jan 2010
- client: add <stderr_head> config option;
sends the first rather than last 64KB of stderr to server.
This doesn't belong here; this choice should come from the server.
I may take this out later.
- user web: when add a private message, always add a notification
client/
app_control.cpp
log_flags.cpp,h
html/
inc/
news.inc
pm.inc
project.sample/
project.inc
user/
edit_form_preferences_form.php
rss_main.php
lib/
util.cpp
David 12 Jan 2010
- manager: "Notifications" => "Notices". Consistent terminology.
clientgui/
Events.h
AdvancedFrame.cpp
Makefile.am
ViewNotifications* -> ViewNotices*
David 12 Jan 2010
- client: small tweak to work fetch:
if project has crazy DCF, don't automatically request 1 sec;
only request work if there's a shortfall.
- intermediate checkin for notices stuff
client/
Makefile.am
work_fetch.cpp
html/
inc/
forum_rss.inc
notify.inc
pm.inc
user/
notices.php (new)
sched
handle_request.cpp
sched_types.cpp,h
David 12 Jan 2010
- Notices: put message bodies inside CDATA
- XML_PARSER: handle CDATA
client/
cs_notice.cpp,h
lib/
notice.cpp
parse.cpp,h
Charlie 13 Jan 2010
- MGR: The fix of 14 Oct 2009 for "initial first connection problem on
startup" caused the Tools menu to be incorrect when switching from
Simple to Advanced View if using an account manager: solve this by
calling pDoc->IsConnected() in CAdvancedFrame::CreateMenu() instead
of using bool argument bRPCsSafe. Remove unused bRPCsSafe arg from
CAdvancedFrame::CreateNotebook(), CAdvancedFrame::CreateStatusbar().
- Mac: Update XCode project for ViewNotifications* -> ViewNotices*.
clientgui/
AdvancedFrame.cpp, .h
mac_build/
boinc.xcodeproj/
project.pbxproj
David 13 Jan 2010
- server: client version numbers are represented as
10000*major + 100*minor + release,
rather than 100*major + minor.
Sometimes you need release-level resolution.
This affects:
- app_version.min_core_version
- config: min_core_client_version_announced
- config: min_core_client_version
Projects using these must multiply them by 100.
html/inc/
notify.inc
forum_rss.inc
sched/
sched_types.cpp,h
sched_send.cpp
handle_request.cpp
David 13 Jan 2010
- scheduler: close DB connection on SIGTERM (from Bernd M.)
sched/
sched_main.cpp
David 13 Jan 2010
- manager: in Notices tab, direct links to default web browser
clientgui/
ViewNotices.cpp,h
Rom 14 Jan 2010
- MGR: Use an event handler, the function overload is deprecated.
clientgui/
ViewNotices.cpp,h
David 15 Jan 2010
- web DB code: fix PHP warning when enumeration returns nothing.
From Nicolas. fixes #974
- client: tiny code shuffle
client/
work_fetch.cpp
cpu_sched.cpp
html/inc/
db_conn.inc
David 15 Jan 2010
- user web: make a bunch of strings translatable (from Nicolas)
html/
inc/
pm.inc
user.inc
util.inc
user/
language_select.php
edit_passwd_form.php
edit_email_form.php
locale/templates/
BOINC-Project-Generic.pot
Charlie 16 Jan 2010
- Mac Installer: fix bug launching client when configured as a service.
mac_installer/
PostInstall.cpp
David 17 Jan 2010
- scheduler/feeder: if any client version number field
(min_core_version etc.) is < 10000,
multiply it by 100 and print a warning.
sched/
sched_config.cpp
sched_send.cpp
sched_shmem.cpp
handle_request.cpp
Rytis 18 Jan 2010
- user web: do SQL escaping before storing prefs in the database as some
projects store user-editable strings in the preferences.
html/inc/
prefs.inc
David 18 Jan 2010
- scheduler: use COPROC_REQ instead of COPROC when parsing
anonymous-platform app versions.
Otherwise fractional GPU requirements get truncated to zero.
Thanks to Crunch3r for identifying the problem.
sched/
sched_types.cpp
David 18 Jan 2010
- API: fix crashing bug. Don't memset(0) APP_INIT_DATA;
it contains HOST_INFO, which now contains COPROCS,
which has a vector.
Define a clear() for APP_INIT_DATA.
lib/
app_ipc.cpp,h
David 18 Jan 2010
- client: initial checkin for "don't compute if CPU usage above X"
client/
app.cpp,h
coproc_detect.cpp
cs_prefs.cpp
lib/
common_defs.h
procinfo_win.cpp
win_build/
libboinc.vcproj
David 18 Jan 2010
- client and user web: finish the above.
Should add the Adv Prefs dialog as well.
client/
cs_prefs.cpp
html/inc/
prefs.inc
lib/
prefs.cpp,h
Rom 19 Jan 2010
- lib: Don't allow the diagnostics threads to be suspended.
If a crash happens within the remaining threads
the process will deadlock.
lib/
diagnostics.h
diagnostics_win.cpp
win_util.cpp
David 19 Jan 2010
- API: fix crashing bug. There was a leftover memset(aid, 0)
in boinc_parse_init_data_file()
- client sim: make it work again
api/
boinc_api.cpp
client/
sim.cpp
sim_util.cpp
David 19 Jan 2010
- web: translation fix from Nicolas:
"There is a bug in tra() that causes problems if one of the arguments
contains a replacement marker itself. For example, if the first
argument contains an encoded URL, which contains '%2', the second
argument may appear in the middle of the URL."
- client simulator: further fiddling around. Not done.
html/inc/
translation.inc
client/
sim.cpp
work_fetch.cpp
cpu_sched.cpp
David 19 Jan 2010
- client simulator: done for now
client/
sim.cpp
rr_sim.cpp
David 19 Jan 2010
- client: brute-force attempt at eliminating domino-effect preemption:
if job A is unstarted and EDF,
and there's a job B that is later in the list,
is started, has the same app version,
and has the same arrival time,
move A after B.
- client: remove the "temp_dcf" mechanism,
which had the same goal but didn't work.
- client: in computing overall debt for a project,
subtract a term that reflects pending work.
This should reduce repeated fetches from the same project.
- client simulator: tweaks
client/
client_types.h
cpu_sched.cpp
rr_sim.cpp
sim.cpp,h
sim_util.cpp
work_fetch.cpp,h
html/user/
language_select.php
Charlie 21 Jan 2010
- MGR: Implement Mac accessibility for Event Log.
clientgui/
BOINCListCtrl.h
DlgEventLogListCtrl.cpp, .h
mac/
MacAccessiblity.cpp, .h
Bernd 21 Jan 2010
- lib: Updated Makefile.mingw to include coproc.cpp/h
lib/
Makefile.mingw
Charlie 22 Jan 2010
- Mac Sandbox: To keep authenticators private, make all .xml files readable
only by user and group boinc_master; except ss_config.xml is world-
readable so screensaver coordinator can access it. All other files
except gui_rpc_auth.cfg are world-readable to allow access by
screensavers.
clientgui/
mac/
SetupSecurity.cpp
mac_build/
Mac_SA_Secure.sh
Bernd 22 Jan 2010
lib: add cal.h to install headers
lib/
Makefile.am
David 22 Jan 2010
- user web: clean up LANG_NAME_* mess
html/
ops/
build_po_boinc.php
user/
language_select.php
David 22 Jan 2010
- DB purge: allow fractional min_age_days (from Travis Desell)
sched/
db_purge.cpp
transitioner.cpp
David 22 Jan 2010
- user web: don't show "database error" if result refers
to deleted app version
client/
app_start.cpp
html/inc/
result.inc
sched/
transitioner.cpp
David 25 Jan 2010
- transitioner: fix bug where WUs with error_mask <> 0 keep
transitioning every 10 days, hence never become eligible for purging.
The problem: the transitioner has a "safety net" where,
if the WU doesn't have a canonical result,
it arranges for another transition in 10 days.
Skip this if error_mask<>0.
sched/
transitioner.cpp
David 25 Jan 2010
- client: when launching app, delete init_data.xml using switcher
prior to trying to write it,
in case it's owned by another user (e.g., boinc_project)
client/
app_start.cpp
David 26 Jan 2010
- client/manager: eliminate duplicate notices.
When appending a new notice, we check whether one with
the same title and description is present already.
If so we remove one or the other, depending on the situation.
This introduces the possibility of "holes" in the seqno space.
In order that the manager learns of these deletions,
we use the following mechanism:
whenever a notice is removed (because it's a dup or too old)
a flag is set in each GUI_RPC_CONN.
On the next get_notice() RPC, the client returns the entire
list of notices, preceded by a dummy notice with seqno=-1;
this tells the RPC stub function to replace the current list
rather than appending to it.
client/
client_msgs.cpp
cs_notice.cpp,h
gui_rpc_server.h
gui_rpc_server_ops.cpp
samples/multi_thread/
multi_thread.cpp
David 26 Jan 2010
- web: assume all translation files are UTF-8
html/
inc/
util.inc
ops/
build_po_boinc.php
user/
sample_index.php
Charlie 26 Jan 2010
- Mac Sandbox: The init_data.xml file in each slot directory also contains
an authenticator; to keep these private, change ownership of the "slots"
directory to boinc_master:boinc_project and eliminate read and execute
permissions of this directory for "other". For consistency, make the
same changes to the "projects" directory. The individual slot and
project directories are still world-executable and they and their
contents are still world-readable, so the Client can still read files
created by project apps with ownership boinc_project:boinc_project.
- NOTE: I believe this should not cause any problems for either BOINC or
project applications, but it needs to be tested thoroughly.
client/
check_security.cpp
file_names.cpp
clientgui/
mac/
SetupSecurity.cpp
doc/
sandbox.php
mac_build/
Mac_SA_Insecure.sh
Mac_SA_Secure.sh
Charlie 27 Jan 2010
- MGR: Fix minor bugs in Mac accessibility reporting kAXWindowAttribute and
kAXTopLevelUIElementAttribute.
clientgui/
mac/
MacAccessiblity.cpp
David 27 Jan 2010
- client: fix small bug that could interfere with work fetch
on hosts with both NVIDIA and ATI GPU
client/
work_fetch.cpp
David 27 Jan 2010
- client: fix work fetch bug that prevented getting work
from an overworked project,
even if idle instance or major shortfall.
- GUI RPC: finish the notice-duplication thing
client/
work_fetch.cpp,h
lib/
gui_rpc_client_ops.cpp
David 27 Jan 2010
- client: remove debug msgs
client/
app.cpp
David 28 Jan 2010
- client: if a project has zero resource share,
treat it as a "backup project":
fetch work from it only if there is an idle instance
and no other projects have work.
client/
acct_mgr.cpp
client_types.cpp,h
rr_sim.cpp
work_fetch.cpp
Charlie 28 Jan 2010
- Mac Sandbox: SetupAuthorizationExecuteWithPrivileges() forks to run chmod and chown,
leaving zombie processes which can exceed the system-imposed limit of processes
MAXUPRC for a user. Call waitpid() to clear these zombies.
- Mac Sandbox: fix comment in Mac_SA_Secure.sh script.
clientgui/
mac/
SetupSecurity.cpp
mac_build/
Mac_SA_Secure.sh
David 28 Jan 2010
- client: fix my last checkin
client/
client_types.cpp
cs_statefile.cpp
David 29 Jan 2010
- user web: allow zero resource share
- client: allow zero resource share
apps/
upper_case.cpp
html/inc/
prefs.inc
client/
work_fetch.cpp
makefile_sim
David 29 Jan 2010
- user web: if Akismet rejects thread reply, show warning
html/user/
forum_reply.php
David 30 Jan 2010
- manager: move Preferences and Options to Task menu.
Give them more descriptive names.
Clean up mnemonics
clientgui/
AdvancedFrame.cpp
David 1 Feb 2010
- graphics API: if font missing, find one that isn't (from Kevin)
api/
txf_util.cpp
Charlie 2 Feb 2010
- ss_app: Allow branding for GridRepublic by compiling with -D_GRIDREPUBLIC on
non_apple systems and by testing Branding file on Macs.
- ss_app: Add a high-resolution background GridRepublic logo.
- Mac Installer: update script for new gridrepublic_ss_logo.jpg file, etc.
- Mac Installer: add .txt extension to copyright files in GUI installer extras.
clientscr/
ss_app.cpp
res/
gridrepublic_ss_logo.jpg
mac_installer/
make_GridRepublic.sh
make_ProgThruProc.sh
release_boinc.sh
David 2 Feb 2010
- scheduler: don't send CUDA jobs to Macs with client < 6.10.28;
they'll crash.
sched/
sched_customize.cpp
Rom 2 Feb 2010
- client: newer ATI drivers crash if struct_size isn't filled out
before the structure is used.
client/
coproc_detect.cpp
Charlie 2 Feb 2010
- Mac SS: look for Branding file in BOINC Data folder before the one in Manager
to avoid confusion if newer copies of BOINC Manager exist elsewhere on system.
(This is primarily for convenience in debugging on build system)
clientscr/
mac_saver_module.cpp
David 3 Feb 2010
- client: if GPU get available RAM fails, don't use the GPU
- web: put $languages_in_use into $GLOBALS.
Apparently it can't be referenced as a global in Drupal otherwise
client/
client_types.cpp
html/inc/
tranlsation.inc
David 4 Feb 2010
- web: code shuffle for Drupal
html/
inc/
host.inc
stats_sites.inc
user/
hosts_user.php
David 4 Feb 2010
- web: Drupal stuff
html/
drupal/
home
view_profile
hosts_user
inc/
user.inc
user/
home.php
David 4 Feb 2010
- scheduler: add example code for SETI@home's situation
where app has both GPU and CPU versions,
but for certain jobs (VLAR WUs in this case)
the GPU version performs poorly and shouldn't be used.
The fix is a kludge - it will result in these jobs
not being sent to the host at all,
rather than being sent with the CPU app.
The current architecture makes it difficult to do otherwise.
One possible fix would be to create a separate app
for VLAR jobs, with only CPU app versions.
sched/
sched_customize.cpp
Charlie 4 Feb 2010
- Mac Installer: when adding non-admin users to group boinc_master, also add
them to group boinc_project; this fixes permissions error -1200 for non-
admin users; show "Please wait" alert if WaitPermissions takes > 15 seconds.
client/
check_security.cpp
mac_installer/
AddRemoveUser.cpp
PostInstall.cpp
WaitPermissions.cpp
David 4 Feb 2010
- web: fix bug that caused news RSS to show wrong items
html/inc/
forum_rss.inc
Rom 5 Feb 2010
- WINSCR: cleanup configuration dialog text.
clientscr/
boinc_ss.rc
Rom 5 Feb 2010
- MGR: Enable task bar icon on Linux.
clientgui/
AsyncRPC.cpp
BOINCBaseFrame.cpp
BOINCGUIApp.cpp
Rom 5 Feb 2010
- MGR: Move cross-platform event handlers for creating context menus and updating
tooltips out of the Windows only scope.
clientgui/
BOINCTaskBar.cpp, .h
Rom 5 Feb 2010
- MGR: Fix build break by adjusting the SetIcon function prototype so that it conforms
to the wxWidget standard.
clientgui/
BOINCTaskBar.cpp, .h
clientgui/msw/
taskbarex.cpp, .h
Rom 5 Feb 2010
- MGR: Change the 'Open BOINC Manager' menu item ID for the task bar icon. wxID_OPEN
causes a folder icon to be prepended to the menu item on Linux.
- MGR: Enable the Test Notification menu item on Linux
clientgui/
BOINCTaskBar.cpp, .h
Rom 6 Feb 2010
- MGR: Introduce balloons to Linux version of BOINC Manager.
(Note: Not debugged yet)
clientgui/
BOINCTaskBar.cpp, .h
Makefile.am
clientgui/gtk/
taskbarex.cpp, .h
clientgui/msw/
taskbarex.cpp, .h
David 6 Feb 2010
- parsing of platforms from WCG's get_project_config.php was wrong
doc/
get_platforms.inc
David 7 Feb 2010
- web: make a bunch of strings translatable (from Christian Beer)
fixes #977
html/
inc/
result.inc
user/
workunit.php
result.php
David 7 Feb 2010
- more tra()s from Christian. fixes #976
html/user/
user_search.php