Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-14 | No longer support HTML Description: fields. | Jay Freeman (saurik) | |
2010-10-07 | Fixed two minor horizontal whitespace formatting annoyances. | Jay Freeman (saurik) | |
2010-10-07 | Use -[UIColor groupTableViewBackgroundColor] instead of -[UIColor ↵ | Jay Freeman (saurik) | |
pinStripeColor]. | |||
2010-10-06 | Use a category for [WebScriptObject ↵ | Jay Freeman (saurik) | |
-countByEnumeratingWithState:objects:count:]. | |||
2010-10-06 | I failed at git --amend: this is the NULL->nil fix. | Jay Freeman (saurik) | |
2010-10-06 | You can't have a 'const' Objective-C type (and use nil instead of NULL while ↵ | Jay Freeman (saurik) | |
we are editing that line). | |||
2010-10-06 | Fixed a number of subtle type errors and such that Clang errors about, but ↵ | Grant Paul | |
gcc doesn't even notice. | |||
2010-10-06 | Let UICaboodle build with clang++ as well as g++. Cydia needs additional ↵ | Grant Paul | |
changes. | |||
2010-10-06 | Rename CGColor to CYColor: this mechanism should probably just be removed. | Jay Freeman (saurik) | |
2010-10-06 | We no longer need the original Cydia icon (cydia.xcf). | Jay Freeman (saurik) | |
2010-10-06 | The Preferences.mm file is a hopelessly out-of-date fragment. | Jay Freeman (saurik) | |
2010-10-06 | Apple's Reachability code is ludicrously complex (and APSL). | Jay Freeman (saurik) | |
2010-10-06 | UICaboodle/ResetView and resetViewAnimated: seem to be obsolete. | Jay Freeman (saurik) | |
2010-10-06 | Merge CYViewController into UCViewController. | Jay Freeman (saurik) | |
2010-10-06 | We don't want a compile-time flag for RotationEnabled: we want it to work ↵ | Jay Freeman (saurik) | |
that way only if we are on an iPad. | |||
2010-10-05 | Fix the default custom button behaviour for commercial packages. My ↵ | Dustin L. Howett | |
understanding of the previous system was flawed enough to cause this- now, the custom button's behaviour is in _customButtonClicked, and the default customButtonClicked calls it instead of reloadButtonClicked. This is based on the original {_,__}rightButtonClicked methods. | |||
2010-10-05 | Added call to ldid, neccessary for launch.xml (and the fact that I am no ↵ | Jay Freeman (saurik) | |
longer using cycc). | |||
2010-10-04 | Additional code folding (and fixed an unmatched code folding end-marker); ↵ | Grant Paul | |
also, a compile-time flag for rotation. | |||
2010-10-04 | Additional comment, formatting improvement, and correctness improvement ↵ | Grant Paul | |
(even though it makes it look worse!) for -dropBar and -raiseBar. | |||
2010-10-04 | Merge branch 'master' of git.saurik.com:cydia | Dustin L. Howett | |
2010-10-04 | Fix the custom button problem - applyRightButton was overriding ↵ | Dustin L. Howett | |
BrowserView's support for custom buttons. We now just expose a default right button that is used in BrowserView's applyRightButton. Minor visual artifact: The 'Install' button flashes for non-commercial packages as it changes between loading/not-loading. Slightly better behaviour than before: AlwaysReload == 1 means the button is called 'Reload'. | |||
2010-10-04 | Add todo XXX from Optimo for icon escape. | Jay Freeman (saurik) | |
2010-10-04 | The role dialog needs to block loading data, which itself needs to happen ↵ | Jay Freeman (saurik) | |
strictly after the view controller initializes. | |||
2010-10-04 | Remove cycc requirement. | Jay Freeman (saurik) | |
2010-10-04 | OMG the mechanism for allocating CYNavigationControllers was both incorrect ↵ | Jay Freeman (saurik) | |
and insane. | |||
2010-10-04 | Prefer C++ constructor to C initializer in old main(). | Jay Freeman (saurik) | |
2010-10-04 | Reformat UIHardware$, using autorelease instead of explicit release. | Jay Freeman (saurik) | |
2010-10-04 | Remove incorrect positioning hack. | Jay Freeman (saurik) | |
2010-10-04 | Fix the warnings when building with AlwaysReload=0, and fix the action ↵ | Dustin L. Howett | |
button for AlwaysReload=1 (actionButtonClicked -> customButtonClicked, to match the superclass, so there's an implementation to fall through to if AlwaysReload==1) | |||
2010-10-04 | Removed tabs and trailing space characters from codebase. | Jay Freeman (saurik) | |
2010-10-04 | Use drawAtPoint:forWidth:withFont:lineBreakMode: instead of ↵ | Dustin L. Howett | |
drawAtPoint:forWidth:withFont:ellipsis:, as the latter is deprecated and actually crashes now for some reason. | |||
2010-10-04 | Fix the type of the ellipsis: argument. | Jay Freeman (saurik) | |
2010-10-04 | Add iPhonePrivate.h to makefile dependencies. | Jay Freeman (saurik) | |
2010-10-04 | Fix permissions in dpkg-deb and add du back to package. | Jay Freeman (saurik) | |
2010-10-04 | Rewrote the build environment from scratch. | Jay Freeman (saurik) | |
2010-10-04 | self isn't even initialized, why are we trying to get our own view? | Dustin L. Howett | |
2010-10-04 | Replaced UIActionSheet with UIAlertView in BrowserView; not fully tested, ↵ | Grant Paul | |
but the code looks correct when I reviewed it. | |||
2010-10-04 | Changed the package preferences controller to use UITableView rather than ↵ | Grant Paul | |
the private UIPreferencesTable; also, it uses UISwitch rather than _UISwitchSlider, since that's gone in 4.2. | |||
2010-10-04 | Apparently sometimes the superclass does implement ↵ | Grant Paul | |
-applicationWillResignActive:. So, if it does, we should call it! | |||
2010-10-04 | Use a static value for the width of the confirm prompt to prevent it from ↵ | Grant Paul | |
scrolling on the iPad, where device-width isn't always the same as the real width we want. | |||
2010-10-04 | Improved positioning and rotation support of Settings view. | Grant Paul | |
2010-10-04 | Support landscape in the new Settings view. | Grant Paul | |
2010-10-04 | Don't bother updating data if we aren't actually, like, changing anything. | Grant Paul | |
2010-10-04 | One last fix for the new Settings panel -- actually save the settings (um yeah). | Grant Paul | |
2010-10-04 | Fixed crash when resigning active (call, lock screen, etc) -- the superclass ↵ | Grant Paul | |
does not provide an implementation. (Crash was introduced in a previous commit, when I fixed the "hang on resuming after lockscreen" bug.) | |||
2010-10-04 | Completed new "Who Are You?" panel. Details: | Grant Paul | |
- Fixed strange crash (introduced with last commit). - Changed to a "form sheet" style of view controller on the iPad" - Added Settings under the "Sources" tab on the iPad (where else to put it?) - Changed English localization to reflect the above iPad change, and made the _EX role descriptions more useful. | |||
2010-10-04 | New settings view. Moar awesome. Crashes in a weird way. Hard. | Grant Paul | |
2010-10-04 | Fixed refreshing on sleep/call/lock. | Grant Paul | |
2010-10-04 | Addons (BossPaper) | Dustin L. Howett | |
2010-10-04 | It's just one character chpwn why do i have to do it chpwn huh chpwn why | Dustin L. Howett | |