• R/O
  • SSH
  • HTTPS

iphotouploader: Commit


Commit MetaInfo

Revision31 (tree)
Zeit2009-02-09 23:23:59
Autoritok

Log Message

- 二回目以降の起動時に落ちることがある問題を修正
- v0.1.1へ

Ändern Zusammenfassung

Diff

--- trunk/Info.plist (revision 30)
+++ trunk/Info.plist (revision 31)
@@ -19,7 +19,7 @@
1919 <key>CFBundleSignature</key>
2020 <string>????</string>
2121 <key>CFBundleVersion</key>
22- <string>0.1.0</string>
22+ <string>0.1.1</string>
2323 <key>NSPrincipalClass</key>
2424 <string>iPhotoUploader</string>
2525 <key>NSMainNibFile</key>
--- trunk/src/main/iPhotoUploader.m (revision 30)
+++ trunk/src/main/iPhotoUploader.m (revision 31)
@@ -54,7 +54,7 @@
5454 m_exMgr = fp8;
5555 m_srvMgr = [[PUServiceManager alloc] init];
5656
57- NSString* about = [NSString stringWithFormat:@"v%@ Copyright (c) 2008 itok (http://itok.jp/)", [[[NSBundle bundleWithIdentifier:BUNDLE_IDENTIFIER] infoDictionary] objectForKey:@"CFBundleVersion"]];
57+ NSString* about = [NSString stringWithFormat:@"v%@ Copyright (c) 2008-2009 itok (http://itok.jp/)", [[[NSBundle bundleWithIdentifier:BUNDLE_IDENTIFIER] infoDictionary] objectForKey:@"CFBundleVersion"]];
5858 [self setValue:about forKey:@"about"];
5959 }
6060 return self;
--- trunk/src/common/PUServiceParam.m (revision 30)
+++ trunk/src/common/PUServiceParam.m (revision 31)
@@ -145,12 +145,13 @@
145145 }
146146
147147 PUUserDefaults* defaults = [PUUserDefaults standardUserDefaults];
148- NSDictionary* dic = [defaults objectForKey:_saveKey];
148+ NSDictionary* dic = [[defaults objectForKey:_saveKey] copy];
149149 NSEnumerator* enume = [dic keyEnumerator];
150150 id key;
151151 while (key = [enume nextObject]) {
152152 [self setValue:[dic objectForKey:key] forKey:key];
153153 }
154+ [dic release];
154155 }
155156
156157 @end
Show on old repository browser