NSString *idiom(IsWild_ ? @"ipad" : @"iphone");
- NSMutableArray *scaled([NSMutableArray arrayWithCapacity:([files count] * 4)]);
+ NSMutableArray *scaled([NSMutableArray arrayWithCapacity:([files count] * 6)]);
for (NSString *file in files) {
NSString *base([file stringByDeletingPathExtension]);
NSString *extension([file pathExtension]);
- if (use) {
- if (Scale_ != 1) {
- [scaled addObject:[NSString stringWithFormat:@"%@@%ux~%@.%@", base, Scale_, idiom, extension]];
- [scaled addObject:[NSString stringWithFormat:@"%@@%ux.%@", base, Scale_, extension]];
- }
-
- for (unsigned scale(3); scale >= 2; --scale)
- if (scale != Scale_) {
- [scaled addObject:[NSString stringWithFormat:@"%@@%ux~%@.%@", base, scale, idiom, extension]];
- [scaled addObject:[NSString stringWithFormat:@"%@@%ux.%@", base, scale, extension]];
- }
+#define WBScaleImage(scale) \
+ if (scale == 1) { \
+ [scaled addObject:[NSString stringWithFormat:@"%@~%@.%@", base, idiom, extension]]; \
+ [scaled addObject:file]; \
+ } else { \
+ [scaled addObject:[NSString stringWithFormat:@"%@@%ux~%@.%@", base, scale, idiom, extension]]; \
+ [scaled addObject:[NSString stringWithFormat:@"%@@%ux.%@", base, scale, extension]]; \
+ }
- [scaled addObject:[NSString stringWithFormat:@"%@~%@.%@", base, idiom, extension]];
+ if (use) {
+ WBScaleImage(Scale_);
- // if (!IsWild_) <- support old themes
- [scaled addObject:file];
+ for (unsigned scale(3); scale >= 1; --scale)
+ if (scale != Scale_)
+ WBScaleImage(scale);
} else if ([base hasSuffix: @"@2x"] || [base hasSuffix:@"@3x"]) {
- [scaled addObject:[NSString stringWithFormat:@"%@~%@.%@", base, idiom, extension]];
- [scaled addObject:file];
+ WBScaleImage(1);
// XXX: this actually can't be used, as the person loading the file doesn't realize that the @2x changed
/*NSString *rest([base substringWithRange:NSMakeRange(0, [base length] - 3)]);
@implementation NSBundle (WinterBoard)
-+ (NSBundle *) wb$bundleWithFile:(NSString *)path {
++ (NSBundle *) _wb$bundleWithFile:(NSString *)path {
path = [path stringByDeletingLastPathComponent];
if (path == nil || [path length] == 0 || [path isEqualToString:@"/"])
return nil;
if ([Manager_ fileExistsAtPath:[path stringByAppendingPathComponent:@"Info.plist"]])
bundle = [NSBundle bundleWithPath:path];
if (bundle == nil)
- bundle = [NSBundle wb$bundleWithFile:path];
+ bundle = [NSBundle _wb$bundleWithFile:path];
if (Debug_)
NSLog(@"WB:Debug:PathBundle(%@, %@)", path, bundle);
return bundle;
}
++ (NSBundle *) wb$bundleWithFile:(NSString *)path {
+ if ([path hasPrefix:@"/Library/Themes"])
+ return nil;
+ return [self _wb$bundleWithFile:path];
+}
+
@end
// }}}
// -[NSString wb$themedPath] {{{
@implementation NSString (WinterBoard)
- (NSString *) wb$themedPath {
- if ([self hasPrefix:@"/Library/Themes/"])
- return self;
-
if (Debug_)
NSLog(@"WB:Debug:Bypass(\"%@\")", self);
// }}}
// Foundation {{{
if (true) {
+ if (![identifier isEqualToString:@"com.apple.backupd"]) // XXX: rethink
MSHookFunction(CFBundleCopyResourceURL, MSHake(CFBundleCopyResourceURL));
}
// }}}