Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Hush Mac/AppDelegate.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// AppDelegate.h
// Hush Mac
//
// Created by Karsten Kusche on 26.01.21.
//

#import <Cocoa/Cocoa.h>

@interface AppDelegate : NSObject <NSApplicationDelegate>


@end

69 changes: 69 additions & 0 deletions Hush Mac/AppDelegate.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
//
// AppDelegate.m
// Hush Mac
//
// Created by Karsten Kusche on 26.01.21.
//

#import "AppDelegate.h"
#import <SafariServices/SafariServices.h>

@interface AppDelegate ()

@property (strong) IBOutlet NSWindow *window;
@property (strong) IBOutlet NSButton* stateCheckbox;
@end

@implementation AppDelegate

- (NSString*)contentBlockerIdentifier
{
return [[[NSBundle mainBundle] bundleIdentifier] stringByAppendingString:@".ContentBlocker"];
}

- (void)awakeFromNib
{
_stateCheckbox.state = NSControlStateValueMixed;
_stateCheckbox.enabled = NO;
}

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
[SFContentBlockerManager reloadContentBlockerWithIdentifier: self.contentBlockerIdentifier completionHandler:^(NSError * _Nullable error) {
if (error != nil)
{
NSLog(@"Failed to reload content blocker: %@",error);
}
}];
}

- (void)applicationWillTerminate:(NSNotification *)aNotification {
// Insert code here to tear down your application
}
Comment on lines +40 to +42

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- (void)applicationWillTerminate:(NSNotification *)aNotification {
// Insert code here to tear down your application
}
- (void)applicationWillTerminate:(NSNotification *)aNotification {}


- (void)refreshEnabledState
{
[SFContentBlockerManager getStateOfContentBlockerWithIdentifier:self.contentBlockerIdentifier completionHandler:^(SFContentBlockerState * _Nullable state, NSError * _Nullable error) {
NSControlStateValue newState = NSControlStateValueMixed;
if (error != nil)
{
NSLog(@"Failed to get content blocker state: %@",error);
}
else if (state != nil)
{
newState = state.enabled ? NSControlStateValueOn : NSControlStateValueOff;
}
[self performSelectorOnMainThread:@selector(updateState:) withObject:@(newState) waitUntilDone:NO];
}];
}

- (void)updateState:(NSNumber*)number
{
_stateCheckbox.state = number.intValue;
}

- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender
{
return YES;
}
@end
707 changes: 707 additions & 0 deletions Hush Mac/Base.lproj/MainMenu.xib

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions Hush Mac/Hush_Mac.entitlements
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.files.user-selected.read-only</key>
<true/>
</dict>
</plist>
34 changes: 34 additions & 0 deletions Hush Mac/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSSupportsAutomaticTermination</key>
<true/>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
</dict>
</plist>
15 changes: 15 additions & 0 deletions Hush Mac/main.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// main.m
// Hush Mac
//
// Created by Karsten Kusche on 26.01.21.
//

#import <Cocoa/Cocoa.h>

int main(int argc, const char * argv[]) {
@autoreleasepool {
// Setup code that might create autoreleased objects goes here.
}
return NSApplicationMain(argc, argv);
}
Loading