diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-12-09 08:43:33 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:09:05 +0000 |
commit | b0ad8dee056b2ad8a987a47f9235076b6b3f6a19 (patch) | |
tree | 283857be102bdb074f6e77f6f746457e0bad8f14 /Cydia.mm | |
parent | 4ef0751af2a5cae1b09491205224a97e819d8a7a (diff) |
Fixed title bar of confirmation and finally fixed stupid memory allocation bug.
Diffstat (limited to 'Cydia.mm')
-rw-r--r-- | Cydia.mm | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -35,6 +35,9 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +// XXX: wtf/FastMalloc.h... wtf? +#define USE_SYSTEM_MALLOC 1 + /* #include Directives {{{ */ #import "UICaboodle.h" @@ -259,8 +262,9 @@ extern NSString * const kCAFilterNearest; #define ForRelease 0 #define ForSaurik (1 && !ForRelease) +#define IgnoreInstall (0 && !ForRelease) #define RecycleWebViews 0 -#define AlwaysReload (1 && !ForRelease) +#define AlwaysReload (0 && !ForRelease) /* Radix Sort {{{ */ @interface NSMutableArray (Radix) @@ -2851,7 +2855,11 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } - (id) _rightButtonTitle { +#if AlwaysReload || IgnoreInstall + return @"Reload"; +#else return issues_ == nil ? @"Confirm" : nil; +#endif } - (void) _leftButtonClicked { @@ -2860,6 +2868,9 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { #if !AlwaysReload - (void) _rightButtonClicked { +#if IgnoreInstall + return [super _rightButtonClicked]; +#endif if (essential_ != nil) [essential_ popupAlertAnimated:YES]; else { @@ -6991,7 +7002,8 @@ int main(int argc, char *argv[]) { _pooled Indices_ = [[NSMutableDictionary alloc] init];*/ Indices_ = [NSMutableDictionary dictionaryWithObjectsAndKeys: - @"http://"/*"cache.saurik.com/"*/"cydia.saurik.com/server/rating/@P", @"Rating", + //@"http://"/*"cache.saurik.com/"*/"cydia.saurik.com/server/rating/@", @"Rating", + @"http://"/*"cache.saurik.com/"*/"cydia.saurik.com/repotag/@", @"RepoTag", nil]; if ((Metadata_ = [[NSMutableDictionary alloc] initWithContentsOfFile:@"/var/lib/cydia/metadata.plist"]) == NULL) |