Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
new icons from meteochu; also use tiffs instead of png
Browse files Browse the repository at this point in the history
  • Loading branch information
kirb committed Dec 24, 2014
1 parent 6949b12 commit c907ead
Show file tree
Hide file tree
Showing 19 changed files with 4 additions and 4 deletions.
Binary file removed Resources/Read.png
Binary file not shown.
Binary file added Resources/Read.tiff
Binary file not shown.
Binary file removed Resources/[email protected]
Binary file not shown.
Binary file removed Resources/ReadInverted.png
Binary file not shown.
Binary file removed Resources/[email protected]
Binary file not shown.
Binary file removed Resources/Typing.png
Binary file not shown.
Binary file added Resources/Typing.tiff
Binary file not shown.
Binary file removed Resources/[email protected]
Binary file not shown.
Binary file removed Resources/TypingInverted.png
Binary file not shown.
Binary file removed Resources/[email protected]
Binary file not shown.
8 changes: 4 additions & 4 deletions Tweak.xm
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@ void HBTSSetStatus(HBTSStatusBarType type, NSString *handle) {
static NSImage *ReadIconInverted;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
TypingIcon = [[bundle imageForResource:@"Typing.png"] retain];
TypingIcon = [[bundle imageForResource:@"Typing.tiff"] retain];
[TypingIcon setTemplate:YES]; // eugh. dot notation doesn't work for this.
TypingIcon.size = CGSizeMake(22.f, 22.f);

ReadIcon = [[bundle imageForResource:@"Read.png"] retain];
ReadIcon = [[bundle imageForResource:@"Read.tiff"] retain];
[ReadIcon setTemplate:YES];
ReadIcon.size = CGSizeMake(22.f, 22.f);

if (!IS_OSX_OR_NEWER(10_10)) {
TypingIconInverted = [[bundle imageForResource:@"TypingInverted.png"] retain];
TypingIconInverted = [[bundle imageForResource:@"TypingInverted.tiff"] retain];
TypingIconInverted.size = CGSizeMake(22.f, 22.f);

ReadIconInverted = [[bundle imageForResource:@"ReadInverted.png"] retain];
ReadIconInverted = [[bundle imageForResource:@"ReadInverted.tiff"] retain];
ReadIconInverted.size = CGSizeMake(22.f, 22.f);
}
});
Expand Down
Binary file added stuff/Read.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added stuff/Read.tiff
Binary file not shown.
Binary file added stuff/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added stuff/[email protected]
Binary file not shown.
Binary file added stuff/Typing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added stuff/Typing.tiff
Binary file not shown.
Binary file added stuff/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added stuff/[email protected]
Binary file not shown.

0 comments on commit c907ead

Please sign in to comment.