This file was deleted.

17 Post.m

This file was deleted.

This file was deleted.

This file was deleted.

BIN -9.19 KB Resources/Icon-60.png
Deleted file not rendered
BIN -11.4 KB Resources/Icon-72.png
Deleted file not rendered
Deleted file not rendered
Deleted file not rendered
Deleted file not rendered
Deleted file not rendered
BIN -8.83 KB Resources/Icon.png
Deleted file not rendered
BIN -20.1 KB Resources/Icon@2x.png
Deleted file not rendered
@@ -1,16 +1,50 @@
{
CFBundleExecutable = "Overcast";
CFBundleIconFile = icon.png;
CFBundleIdentifier = "com.jake0oo0.overcast";
CFBundleInfoDictionaryVersion = 6.0;
CFBundlePackageType = APPL;
CFBundleSignature = "????";
CFBundleSupportedPlatforms = (
iPhoneOS
);
CFBundleVersion = 1.0;
DTPlatformName = iphoneos;
DTSDKName = iphoneos3.0;
LSRequiresIPhoneOS = 1;
MinimumOSVersion = 3.0;
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDisplayName</key>
<string>overcast</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>Overcast</string>
<key>CFBundleIdentifier</key>
<string>com.jake0oo0.overcast</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>CFBundleIconFile</key>
<string>Icon.png</string>
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
<integer>2</integer>
</array>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.jake0oo0.overcast</string>
<key>CFBundleURLSchemes</key>
<array>
<string>overcast</string>
<string>octc</string>
</array>
</dict>
</array>
<key>UIStatusBarHidden</key>
<false/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
Deleted file not rendered
Deleted file not rendered
18 Topic.m

This file was deleted.

@@ -6,4 +6,4 @@ Architecture: iphoneos-arm
Description: App for Overcast Network forums
Maintainer: Jake0oo0
Author: Jake0oo0
Section: Utilities
Section: Applications
13 main.m
@@ -1,8 +1,7 @@
int main(int argc, char **argv) {
NSAutoreleasePool *p = [[NSAutoreleasePool alloc] init];
int ret = UIApplicationMain(argc, argv, @"OvercastApplication", @"OvercastApplication");
[p drain];
return ret;
}

// vim:ft=objc
int ret;
@autoreleasepool {
ret = UIApplicationMain(argc, argv, @"OvercastApplication", @"OvercastApplication");
}
return ret;
}