-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- _Balthisar Tidy_ and _Balthisar Tidy for Work_: - Update to HTML Tidy 5.7.16. - Offer validation using the W3C Nu HTML Checker. - Include a built-in version of this checker. When selected as an option and Balthisar Tidy is running, it operates as a local server and can be used from a web browser, as well. - Also include the ability to use an online version of the validator. - Preferences added to support the new Validator. - When switching the aspect of the source code view, splitters now remember their previous positions. - The Balthisar Tidy Help has been updated with all of the new content. - The Balthisar Tidy Help has been redesigned to use Apple’s native "Eagle" system to display native-looking help. - Tasteful animations where appropriate, such as hiding panels and changing the source text orientation. - The Quick Tutorial has been updated to show off new features to upgraders. - Developer changes: - The built-in Validator is a Java application. As such, a reduced version of the Java Runtime Engine is now included in the source and the binary. Note that the Jave.runtime is packaged as a bundle, _and signed as such_. If you want to build your own, signed version of Balthisar Tidy, you will have to re-codesign this directory with your own credentials. - JSDTidyFramework has been exposed as a module in Xcode. - HTML Tidy has been exposed as a module in Xcode. - Project directories have been reorganized. Some of the modules now have external dependencies, but it avoids code duplication. I'll work on this if I ever make these standalone public modules. - Transitioning towards PDF image templates with tinting via code. This is an effort to reduce the executable sizes, but now that we have an embedded JRE, it seems to kind of not matter any more. - Added categories to JSDTidyModel and other data sources to make generic how the source view controller gets display data. - Help is now built using Middlemac version 3.0. As of release date, this version is not publicly available, but look for it soon, or get it from Github.
- Loading branch information
Showing
1,448 changed files
with
41,943 additions
and
5,969 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/************************************************************************************************** | ||
NSImage+Tinted | ||
Copyright © 2018 by Jim Derry. All rights reserved. | ||
**************************************************************************************************/ | ||
|
||
@import Cocoa; | ||
|
||
|
||
/** | ||
* A simple category to NSImage that adds a tinted variation. | ||
*/ | ||
@interface NSImage (Tinted) | ||
|
||
|
||
/** | ||
* Returns a copy of the image tinted with the specified color. | ||
*/ | ||
- (NSImage *)tintedWithColor:(NSColor *)tint; | ||
|
||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/************************************************************************************************** | ||
NSImage+Tinted | ||
Copyright © 2018 by Jim Derry. All rights reserved. | ||
**************************************************************************************************/ | ||
|
||
#import "NSImage+Tinted.h" | ||
|
||
|
||
@implementation NSImage (Tinted) | ||
|
||
|
||
/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––* | ||
- drawRect: | ||
Forces redraw using the new instrinsicContentSize. | ||
*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/ | ||
|
||
- (NSImage *)tintedWithColor:(NSColor *)tint | ||
{ | ||
NSImage *image = [self copy]; | ||
if (tint) | ||
{ | ||
[image lockFocus]; | ||
[tint set]; | ||
NSRect imageRect = {NSZeroPoint, [image size]}; | ||
NSRectFillUsingOperation(imageRect, NSCompositeSourceAtop); | ||
[image unlockFocus]; | ||
} | ||
return image; | ||
} | ||
|
||
|
||
@end |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
Balthisar Common/Frameworks/AFNetworking.framework/AFNetworking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/AFNetworking |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added
BIN
+461 KB
Balthisar Common/Frameworks/AFNetworking.framework/Versions/A/AFNetworking
Binary file not shown.
Oops, something went wrong.