mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10371
This commit is contained in:
parent
9eab7bdc02
commit
c000f180ac
|
@ -6099,3 +6099,9 @@ Rom 16 June 2006 (HEAD)
|
|||
- Tag for 5.5.1 release, all platforms
|
||||
boinc_core_release_5_5_1
|
||||
|
||||
Charlie 15 June 2006
|
||||
- Mac sandbox: fix errors in SetupSecurity()
|
||||
|
||||
clientgui/
|
||||
mac/
|
||||
SetupSecurity.cpp
|
||||
|
|
|
@ -271,7 +271,7 @@ int SetBOINCDataOwnersGroupsAndPermissions() {
|
|||
result = FSPathMakeRef((StringPtr)fullpath, &ref, &isDirectory);
|
||||
if ((result == noErr) && (isDirectory)) {
|
||||
// Set owner and group of projects directory's contents
|
||||
sprintf(buf1, "%s:%s", boinc_master_user_name, boinc_master_group_name);
|
||||
sprintf(buf1, "%s:%s", boinc_master_user_name, boinc_project_name);
|
||||
// chown boinc_master:boinc_project "/Library/Applications/BOINC Data/projects"
|
||||
err = DoPrivilegedExec(chownPath, "-R", buf1, fullpath, NULL, NULL);
|
||||
if (err)
|
||||
|
@ -300,7 +300,7 @@ int SetBOINCDataOwnersGroupsAndPermissions() {
|
|||
result = FSPathMakeRef((StringPtr)fullpath, &ref, &isDirectory);
|
||||
if ((result == noErr) && (isDirectory)) {
|
||||
// Set owner and group of slots directory's contents
|
||||
sprintf(buf1, "%s:%s", boinc_master_user_name, boinc_master_group_name);
|
||||
sprintf(buf1, "%s:%s", boinc_master_user_name, boinc_project_name);
|
||||
// chown boinc_master:boinc_project "/Library/Applications/BOINC Data/slots"
|
||||
err = DoPrivilegedExec(chownPath, "-R", buf1, fullpath, NULL, NULL);
|
||||
if (err)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Localized versions of Info.plist keys */
|
||||
|
||||
CFBundleName = "BOINC";
|
||||
CFBundleShortVersionString = "BOINC version 5.5.0";
|
||||
CFBundleGetInfoString = "BOINC version 5.5.0, Copyright 2005 University of California.";
|
||||
CFBundleShortVersionString = "BOINC version 5.5.1";
|
||||
CFBundleGetInfoString = "BOINC version 5.5.1, Copyright 2006 University of California.";
|
||||
|
|
|
@ -17,6 +17,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>BNC!</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.0</string>
|
||||
<string>5.5.1</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.0</string>
|
||||
<string>5.5.1</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.0</string>
|
||||
<string>5.5.1</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>BOINC_Saver_ModuleView</string>
|
||||
</dict>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.0</string>
|
||||
<string>5.5.1</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
Loading…
Reference in New Issue