1
I Use This!
Inactive

Commits : Listings

Analyzed 22 days ago. based on code collected 22 days ago.
Jan 29, 2024 — Jan 29, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Merge remote-tracking branch 'tcurdt/master' More... over 12 years ago
added button in test app to reproduce issue #25 More... over 12 years ago
removed App.xib from the framework target; it's only needed by the test app More... over 12 years ago
removed localization for App.xib since the files were in English anyway, and having many copies makes making changes hard More... over 12 years ago
Merge pull request #27 from seanm/master More... over 12 years ago
Merge remote-tracking branch 'tcurdt/master' More... over 12 years ago
reordered two files in Xcode project so .h appears before .m, as with all other files More... over 12 years ago
use drain instead of release for NSAutoreleasePool More... over 12 years ago
Merge pull request #26 from seanm/master More... over 12 years ago
Some changes to allow things to build on 10.5 again. Changed .xcodeproj from 3.2-compatible to 3.1-compatible. Removed explicit specification of sdk and deployment settings, and so now Xcode will use its defaults. Changed FeedBackreporter.xib to be IB 3.1 compatible and 10.5 deployment. App.xib was already like that. I've confirmed all this builds and runs on 10.5.8 with Xcode 3.1.4 and 10.7.5 with Xcode 4.5. On newer Xcodes there are unfortunately now (harmless) warnings in the FeedbackReporter.xib about automatic spelling and text replacement, see rdar://10810131 More... over 12 years ago
added comment about asl and App Sandbox More... over 12 years ago
Changed all targets to inherit prefix file from project settings More... over 12 years ago
Merge pull request #24 from seanm/master More... over 12 years ago
enabled more warnings, again only available in newer Xcodes, but harmless in older ones More... over 12 years ago
as a matter of style, replaced realloc with reallocf, to prevent memory leak More... over 12 years ago
use import instead of include More... over 12 years ago
fix warning from clang ToT: don't compare NSStrings with ==, use isEqualToString: More... over 12 years ago
enabled some more compiler warnings, some of which need newer Xcodes but are harmless in older versions More... over 12 years ago
don't bother specifying GCC_ENABLE_OBJC_EXCEPTIONS = YES as it's been default for a long time More... over 12 years ago
removed obsolete GCC_MODEL_TUNING which is only for PPC and was only set in test app and unit tests anyway More... over 12 years ago
removed long obsolete ZERO_LINK setting More... over 12 years ago
removed long obsolete ZERO_LINK setting More... over 12 years ago
Set ALWAYS_SEARCH_USER_PATHS=YES at project level, never set it to NO in any target More... over 12 years ago
specify DWARF preference at project level, and don't both with dwarf-with-dsym for App-Release since since app isn't really being distributed to anyone, it's just a test app More... over 12 years ago
some targets were linking to system frameworks by specifying them in OTHER_LDFLAGS, some added to the project. Some linked to Cocoa some to Foundation and AppKit. Made everything nice by never using OTHER_LDFLAGS and always linking to the minimal frameworks necessary. More... over 12 years ago
specify GCC_DYNAMIC_NO_PIC at project level, not 3 times in each target More... over 12 years ago
don't redundantly specify GCC_OPTIMIZATION_LEVEL at target level when it's set at project level More... over 12 years ago
don't redundantly specify GCC_PRECOMPILE_PREFIX_HEADER at target level when it's set at project level More... over 12 years ago
don't specify GNU C99 dialect in 2/3 targets when project level specifies standard C99 More... over 12 years ago
don't specify SDK at target level since it's already specified at project level More... over 12 years ago