~ubuntu-branches/debian/sid/boinc/sid

« back to all changes in this revision

Viewing changes to checkin_notes

  • Committer: Bazaar Package Importer
  • Author(s): Steffen Moeller
  • Date: 2011-06-10 13:56:34 UTC
  • mfrom: (1.3.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20110610135634-ya6h4pxygydy0civ
Tags: 6.12.32+dfsg-1
* New upstream version.
  - finally contains MAXPATHLEN fixes for building on HURD
  - fewer warnings while compiling (some Debian patches
    accepted)
* Initial preparations for merging with developments
  for Debian and beyond at SZTAKI, Budapest.
* amd64 package now explicitly presents itself also
  as i686 savvy as an alternative platform name and such such it now
  not only recommends but depends with its -client on ia32-lib
  (Closes: #562431) (lp: #560143).

Show diffs side-by-side

added added

removed removed

Lines of Context:
9725
9725
    /
9726
9726
        configure.ac
9727
9727
        version.h
 
9728
 
 
9729
David  8 Mar 2011
 
9730
    - client: don't put CDATA around account manager opaque data
 
9731
        in request msg
 
9732
 
 
9733
    client/
 
9734
        acct_mgr.cpp
 
9735
 
 
9736
David  6 Apr 2011
 
9737
    - manager: change simple view notices window title from Messages to Notices
 
9738
 
 
9739
    clientgui/
 
9740
        sg_DlgMessages.cpp
 
9741
 
 
9742
David  25 May 2011
 
9743
    - client: equate notices if their text is the same after removing digits,
 
9744
        so that "need 25 GB disk" and "need 24 GB disk"
 
9745
        don't result in 2 notices.
 
9746
 
 
9747
    client/
 
9748
        cs_notices.cpp
 
9749
 
 
9750
David  25 May 2011
 
9751
        - client: if <ncpus> is specified in config file,
 
9752
                set host_info.p_ncpus to that value,
 
9753
                so that scheduler requests report that number of CPUs
 
9754
 
 
9755
        client/
 
9756
                cpu_sched.cpp
 
9757
 
 
9758
David  25 May 2011
 
9759
    - client: fix boinc_make_dirs() (from Josh Highley)
 
9760
    - client: allow "non_cpu_intensive" to be specified independently
 
9761
        for different apps in a project.
 
9762
        This is intended to support projects that use the
 
9763
        Attic file distribution system,
 
9764
        which needs to have a daemon running.
 
9765
 
 
9766
    lib/
 
9767
        filesys.cpp,h
 
9768
    client/
 
9769
        client_types.cpp,h
 
9770
        app_control.cpp
 
9771
        cpu_sched.cpp
 
9772
 
 
9773
David  31 May 2011
 
9774
    - client: when killing a nonresponsive task,
 
9775
        kill its descendant processes too
 
9776
 
 
9777
    client/
 
9778
        client_state.cpp
 
9779
        app_control.cpp
 
9780
 
 
9781
David  31 May 2011
 
9782
    - client: Rom pointed out that on Win in secure mode,
 
9783
        the client won't be able to convert descendant PIDs to handles,
 
9784
        and therefore won't be able to terminate them.  Sigh.
 
9785
        So terminate the main process using its handle
 
9786
        (we'll still kill descendants in the non-secure case)
 
9787
 
 
9788
    client/
 
9789
        app_control.cpp
 
9790
 
 
9791
David  3 Jun 2011
 
9792
    - client: my checkin of 8 Apr 2011 didn't work in some cases, e.g.:
 
9793
        - client finishes a job
 
9794
        - before upload starts, work fetch runs and decides to fetch work
 
9795
            from that project.
 
9796
        Solution:
 
9797
        - set PROJECT::last_upload_start when job finishes,
 
9798
            and clear it when a job is uploaded.
 
9799
        - defer scheduler RPC for a limited time if last_upload_start
 
9800
            is set, even if a transfer is not active
 
9801
 
 
9802
    client/
 
9803
        client_state.cpp
 
9804
        cs_scheduler.cpp
 
9805
 
 
9806
David  5 Jun 2011
 
9807
    - client: condition "Got server request to delete file" messages
 
9808
        on <file_xfer_debug>
 
9809
 
 
9810
    client/
 
9811
        cs_scheduler.cpp
 
9812
 
 
9813
David  5 Jun 2011
 
9814
    - lib: fix compile warning
 
9815
 
 
9816
    lib/
 
9817
        filesys.cpp
 
9818
 
 
9819
Charlie 6 Jun 2011
 
9820
    - MGR: Port cookie logic updates from trunk: 
 
9821
        - Support Google Chrome cookies.  Convert Google Chrome browser time 
 
9822
            (microseconds since January 1, 1601) to UNIX time (seconds since 
 
9823
            January 1, 1970).
 
9824
        If Firefox 3 SQL query fails because cookie database is locked, 
 
9825
        make a temporary copy of the cookie file and query that.  This works 
 
9826
        around a bug in some builds of Firefox 3.5.x.
 
9827
        - Add SQLite3 v3.7.6.3 source code to Mac XCode project, adding
 
9828
            initializers for two local variables to suppress compiler warnings; 
 
9829
            don't link Mac Manager with older pre-installed sqlite3 library.
 
9830
        
 
9831
    clientgui/
 
9832
        browser.cpp, .h
 
9833
        sqlite3.c (added)
 
9834
    mac_build/
 
9835
        boinc.xcodeproj/
 
9836
            project.pbxproj
 
9837
 
 
9838
Charlie 7 Jun 2011
 
9839
    - MGR: Fix bug I introduced on 6 Aug 2010: if currently connected host name is 
 
9840
        empty string, we must treat it as localhost.  Implement different logic to 
 
9841
        skip exit confirmation dialog and avoid shutting down client if second 
 
9842
        instance of Manager is launched but Select Computer dialog is cancelled.
 
9843
        
 
9844
    clientgui/
 
9845
        MainDocument.cpp, .h
 
9846
 
 
9847
Rom    7 Jun 2011
 
9848
    - MGR: Cleanup compiler warnings. Fixes# 1051
 
9849
        (From: Steffen M�ller)
 
9850
        
 
9851
    clientgui/
 
9852
        AdvancedFrame.cpp
 
9853
    clientgui/common/
 
9854
        wxFlatNotebookImages.h
 
9855
    clientgui/res/skins/default
 
9856
        advanced_link_image.xpm
 
9857
 
 
9858
Rom    7 Jun 2011
 
9859
    - Tag for 6.12.29 release, all platforms
 
9860
      boinc_core_release_6_12_29
 
9861
 
 
9862
    /
 
9863
        configure.ac
 
9864
        version.h
 
9865
 
 
9866
Charlie 22 Feb 2011
 
9867
    - Mac: Add new procinfo.cpp to XCode Project.
 
9868
 
 
9869
     mac_build/
 
9870
        boinc.xcodeproj/
 
9871
            project.pbxproj
 
9872
 
 
9873
Charlie 21 Apr 2011
 
9874
    - Mac: Update XCode Project to link procinfo.cpp and procinfo_mac.cpp into 
 
9875
        boinscr (ss_app) because boinc_api.cpp now calls kill_descendants() and 
 
9876
        suspend_or_resume_descendants().
 
9877
    
 
9878
    lib
 
9879
        procinfo_mac.cpp
 
9880
     mac_build/
 
9881
        boinc.xcodeproj/
 
9882
            project.pbxproj
 
9883
 
 
9884
David  25 May 2011
 
9885
    - Manager: tweak messages in exit dialog
 
9886
 
 
9887
    clientgui/
 
9888
        DlgExitMessage.cpp
 
9889
 
 
9890
Charlie 8 Jun 2011
 
9891
    - MGR: Use same exit confirmation dialog wording for Linux as for Windows.
 
9892
 
 
9893
    clientgui/
 
9894
        DlgExitMessage.cpp
 
9895
 
 
9896
David  31 May 2011
 
9897
    - manager: tweak strings related to task FLOP size
 
9898
 
 
9899
    clientgui/
 
9900
        DlgItemProperties.cpp
 
9901
 
 
9902
Charlie 8 Jun 2011
 
9903
    - MGR: Fix About dialog to show (PowerPC) instead of (x86) when appropriate.
 
9904
    
 
9905
    clientgui/
 
9906
        DlgAbout.cpp
 
9907
 
 
9908
Charlie 8 Jun 2011
 
9909
    - MGR: Rework logic to skip exit confirmation dialog and avoid shutting down 
 
9910
        client if second instance of Manager is launched, so it works if connect 
 
9911
        to remote host fails.
 
9912
    - MGR: If original instance of Manager is connected to remote host (or none)
 
9913
        when exiting Manager. skip exit confirmation dialog but do shut down local 
 
9914
        client if requested in most recently run exit dialog, whether or not 
 
9915
        "Remember this decision" was set.
 
9916
        
 
9917
    clientgui/
 
9918
        BOINCGUIApp.cpp, .h
 
9919
        MainDocument.cpp, .h
 
9920
 
 
9921
Rom    8 Jun 2011
 
9922
    - MGR: Disable list view rules for now.
 
9923
    
 
9924
    clientgui/
 
9925
        BOINCBaseView.h
 
9926
 
 
9927
Rom    8 Jun 2011
 
9928
    - Tag for 6.12.30 release, all platforms
 
9929
      boinc_core_release_6_12_30
 
9930
 
 
9931
    /
 
9932
        configure.ac
 
9933
        version.h
 
9934
 
 
9935
Rom    8 Jun 2011
 
9936
    - Tag for 6.12.31 release, all platforms
 
9937
      boinc_core_release_6_12_31
 
9938
 
 
9939
    /
 
9940
        configure.ac
 
9941
        version.h
 
9942
 
 
9943
Charlie 8 Jun 2011
 
9944
    - MGR: Restore list view rules again.
 
9945
    
 
9946
    clientgui/
 
9947
        BOINCBaseView.h
 
9948
 
 
9949
Charlie 9 Jun 2011
 
9950
    - MGR: Revert wording in Exit and Properties dialogs so existing translations 
 
9951
        will work.
 
9952
 
 
9953
    clientgui/
 
9954
        DlgExitMessage.cpp
 
9955
        DlgItemProperties.cpp
 
9956
 
 
9957
Charlie 9 Jun 2011
 
9958
    - MGR: Event Log menu item restores Event Log when Minimized; fixed on Mac 
 
9959
        and Windows XP, hopefully on other versions of Windows OS.
 
9960
    
 
9961
    clientgui/
 
9962
        BOINCBaseFrame.cpp
 
9963
        BOINCGUIApp.cpp
 
9964
 
 
9965
Rom    8 Jun 2011
 
9966
    - Tag for 6.12.32 release, all platforms
 
9967
      boinc_core_release_6_12_32
 
9968
 
 
9969
    /
 
9970
        configure.ac
 
9971
        version.h