aboutsummaryrefslogtreecommitdiffstats
path: root/Source/MGTemplateEngine.m
Commit message (Collapse)AuthorAgeFilesLines
* Replace some NSDictionaries with literalsMax2014-12-131-4/+3
| | | | | | * [NSDictionary dictionary] → @{} * [NSDictionary dictionaryWithObject:forKey:] can safely be replaced. object==nil would have already thrown a NPE in the past. * Also replaced some (hopefully safe) NSArray initializers (ie. their objects should always exist).
* Change [NSArray arrayWithObject:] to @[] literalMax2014-12-131-1/+1
| | | | Note: [NSArray arrayWithObjects:...,nil] is left unchanged as that could possibly cause a NPE if converted to @[]
* Reformatting code for modern ObjCMax2014-12-131-6/+6
| | | | | Replaced all [NSNumber numberWithBool:YES/NO] with the @YES/@NO literals. Also replaced some TRUE/FALSE with their YES/NO counterparts.
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-1/+0
|
* Tidy up.stuconnolly2012-04-011-1/+2
|
* - Fix more warningsrowanbeentje2011-03-141-3/+3
|
* fixed compiler warningssqlprodev2011-03-011-2/+2
|
* • fixed NSLocalizedString error while compiling (genstring) in ↵Bibiko2011-01-191-4/+10
| | | | | | MGTemplateEngine.m - comment shouldn't be nil
* - Upgrade Sequel Pro to be compiled as a 3-way PPC/i386/x86_64 binary for ↵rowanbeentje2010-01-091-9/+9
| | | | | | | release builds, including a large number of 64bit compatibility upgrades and tweaks - Upgrade RegexKitLite to 3.3
* Added printing support via WebKit WebViewbamse162009-04-111-0/+673