From 2e26dc90824fa33fd3a75ab514872c7db9da35e8 Mon Sep 17 00:00:00 2001 From: Cooper Hull Date: Sun, 19 Jan 2020 09:24:24 -0500 Subject: [PATCH] Work on adding iKA's pull. I feel like i'm not doing something right... --- Makefile | 19 ----- README.md | 2 - Tweak.xm | 79 ------------------ ZenithDark.h | 26 ------ ZenithDark.plist | 1 - control | 11 --- ...ac-user669.zenithdark_1.0_iphoneos-arm.deb | Bin 7914 -> 0 bytes zenithdarkprefs/Makefile | 17 ---- zenithdarkprefs/Resources/Info.plist | 24 ------ zenithdarkprefs/Resources/Root.plist | 42 ---------- zenithdarkprefs/ZnthDrkRootListController.h | 5 -- zenithdarkprefs/ZnthDrkRootListController.m | 40 --------- zenithdarkprefs/entry.plist | 21 ----- 13 files changed, 287 deletions(-) delete mode 100644 Makefile delete mode 100644 README.md delete mode 100644 Tweak.xm delete mode 100644 ZenithDark.h delete mode 100644 ZenithDark.plist delete mode 100644 control delete mode 100644 packages/com.mac-user669.zenithdark_1.0_iphoneos-arm.deb delete mode 100644 zenithdarkprefs/Makefile delete mode 100644 zenithdarkprefs/Resources/Info.plist delete mode 100644 zenithdarkprefs/Resources/Root.plist delete mode 100644 zenithdarkprefs/ZnthDrkRootListController.h delete mode 100644 zenithdarkprefs/ZnthDrkRootListController.m delete mode 100644 zenithdarkprefs/entry.plist diff --git a/Makefile b/Makefile deleted file mode 100644 index 6387a69..0000000 --- a/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -ARCHS = arm64 arm64e -SDK = iPhoneOS13.0 -FINALPACKAGE = 1 -export TARGET = iphone:clang:13.0:latest - -include $(THEOS)/makefiles/common.mk - -TWEAK_NAME = ZenithDark - -ZenithDark_FILES = Tweak.xm -ZenithDark_CFLAGS = -fobjc-arc -ZenithDark_FRAMEWORKS = UIKit CoreGraphics - -include $(THEOS_MAKE_PATH)/tweak.mk - -after-install:: - install.exec "sbreload" -SUBPROJECTS += zenithdarkprefs -include $(THEOS_MAKE_PATH)/aggregate.mk diff --git a/README.md b/README.md deleted file mode 100644 index c0a434e..0000000 --- a/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# ZenithDark -Dark tabs for Zenith! Availible on [mac-user669's repo](https://mac-user669.github.io/repo/) \ No newline at end of file diff --git a/Tweak.xm b/Tweak.xm deleted file mode 100644 index fbd9fd6..0000000 --- a/Tweak.xm +++ /dev/null @@ -1,79 +0,0 @@ -/* - -Dark Mode for Zenith's Grabber view! -Copyright 2020 J.K. Hayslip (@iKilledAppl3) & ToxicAppl3 INSDC/iKilledAppl3 LLC. -All code was written for learning purposes and credit must be given to the original author. - -Written for Cooper Hull, @(mac-user669). - - -*/ - -#import "ZenithDark.h" - -static BOOL enabled; -static void loadPrefs() { - static NSMutableDictionary *settings; - - CFArrayRef keyList = CFPreferencesCopyKeyList(CFSTR("com.mac-user669.zenithdarkprefs"), kCFPreferencesCurrentUser, kCFPreferencesAnyHost); - if (keyList) { - settings = (NSMutableDictionary *)CFBridgingRelease(CFPreferencesCopyMultiple(keyList, CFSTR("com.mac-user669.zenithdarkprefs"), kCFPreferencesCurrentUser, kCFPreferencesAnyHost)); - CFRelease(keyList); - } else { - settings = [NSMutableDictionary dictionaryWithContentsOfFile:@"/var/mobile/Library/Preferences/com.mac-user669.zenithdarkprefs.plist"]; - } - - enabled = [([settings objectForKey:@"enabled"] ? [settings objectForKey:@"enabled"] : @(YES)) boolValue]; -} - -// We then hook the class in this case Zenith's grabber view is called “ZNGrabberAccessoryView” -%hook ZNGrabberAccessoryView - // this is called when iOS 13's dark mode is enabled! --(void)traitCollectionDidChange:(UITraitCollection *)previousTraitCollection { - if (enabled) { - %orig(previousTraitCollection); - if (@available(iOS 13, *)) { - if (self.traitCollection.userInterfaceStyle == UIUserInterfaceStyleDark) { - [self setBackgroundColor:kDarkModeColor]; - } - - else { - [self setBackgroundColor:kLightModeColor]; - } - } - } - %orig; -} - -// the method we modify is this method that is called from UIImageView to set the backgroundColor of the image view. -// Since the grabber view is of type UIImageView we can modify this method :) --(void)setBackgroundColor:(UIColor *)backgroundColor { - if (enabled) { - // by default have our tweak overide this. - if (@available(iOS 13, *)) { - if (self.traitCollection.userInterfaceStyle == UIUserInterfaceStyleDark) { - %orig(kDarkModeColor); - } - - else { - %orig; - } - } - } - %orig; -} - - -// we need to make sure we tell theos that we are finished hooking this class not doing so with cause the end of the world :P -%end - - -// our constructor -%ctor { - -loadPrefs(); - -// We use this to make sure we load Zenith's dynamic library at runtime so we can modify it with our tweak. -dlopen ("/Library/MobileSubstrate/DynamicLibraries/Zenith.dylib", RTLD_NOW); - -} \ No newline at end of file diff --git a/ZenithDark.h b/ZenithDark.h deleted file mode 100644 index c14944a..0000000 --- a/ZenithDark.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - -Dark Mode for Zenith's Grabber view! -Copyright 2020 J.K. Hayslip (@iKilledAppl3) & ToxicAppl3 INSDC/iKilledAppl3 LLC. -All code was written for learning purposes and credit must be given to the original author. - -Written for Cooper Hull, @(mac-user669). - -ZenithDark Header file to keep the tweak.x file clean! - - -*/ - - -// We then import UIKit so we can override the color property without this Theos doesn't have a clue what those properties are. -@import UIKit; - -// We make an interface to let Theos know that ZNGrabberAccessoryView is of type UIImageView. -@interface ZNGrabberAccessoryView : UIImageView -@end - -// Dark Zenith color we are using macros so we can call it later if need be. -#define kDarkModeColor [UIColor colorWithWhite:0.0 alpha:0.44] - -// Stock Zenith color we are using macros so we can call it later if need be. -#define kLightModeColor [UIColor colorWithWhite:1.0 alpha:0.7] diff --git a/ZenithDark.plist b/ZenithDark.plist deleted file mode 100644 index 10dc654..0000000 --- a/ZenithDark.plist +++ /dev/null @@ -1 +0,0 @@ -{ Filter = { Bundles = ( "com.apple.springboard" ); }; } diff --git a/control b/control deleted file mode 100644 index d98404b..0000000 --- a/control +++ /dev/null @@ -1,11 +0,0 @@ -Package: com.mac-user669.zenithdark -Version: 1.0 -Architecture: iphoneos-arm -Maintainer: mac-user669 -Depends: mobilesubstrate, com.muirey03.zenith, firmware (>=13.0) -Section: Tweaks -Description: Changes Zeniths tabs to a dark blur -Author: mac-user669 -Name: ZenithDark -Sileodepiction: https://raw.githubusercontent.com/mac-user669/repo/master/sileodepictions/ZenithDark.json -Depiction: https://mac-user669.github.io/repo/depictions/?p=com.mac-user669.zenithdark/ diff --git a/packages/com.mac-user669.zenithdark_1.0_iphoneos-arm.deb b/packages/com.mac-user669.zenithdark_1.0_iphoneos-arm.deb deleted file mode 100644 index 6ac9a873abb87fe1d1020900d5137081931b0aa5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7914 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 diff --git a/zenithdarkprefs/Makefile b/zenithdarkprefs/Makefile deleted file mode 100644 index aab3c31..0000000 --- a/zenithdarkprefs/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -include $(THEOS)/makefiles/common.mk - -ARCHS = arm64 arm64e -export TARGET = iphone:clang:13.0:latest -BUNDLE_NAME = ZenithDarkPrefs - -ZenithDarkPrefs_FILES = ZnthDrkRootListController.m -ZenithDarkPrefs_INSTALL_PATH = /Library/PreferenceBundles -ZenithDarkPrefs_FRAMEWORKS = UIKit -ZenithDarkPrefs_PRIVATE_FRAMEWORKS = Preferences -ZenithDarkPrefs_CFLAGS = -fobjc-arc - -include $(THEOS_MAKE_PATH)/bundle.mk - -internal-stage:: - $(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END) - $(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/ZenithDarkPrefs.plist$(ECHO_END) diff --git a/zenithdarkprefs/Resources/Info.plist b/zenithdarkprefs/Resources/Info.plist deleted file mode 100644 index 86d931a..0000000 --- a/zenithdarkprefs/Resources/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ZenithDarkPrefs - CFBundleIdentifier - com.mac-user669.zenithdarkprefs - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - NSPrincipalClass - ZnthDrkRootListController - - diff --git a/zenithdarkprefs/Resources/Root.plist b/zenithdarkprefs/Resources/Root.plist deleted file mode 100644 index 727bd0f..0000000 --- a/zenithdarkprefs/Resources/Root.plist +++ /dev/null @@ -1,42 +0,0 @@ - - - - - items - - - cell - PSGroupCell - label - Enable - - - cell - PSSwitchCell - default - - defaults - com.mac-user669.zenithdarkprefs - key - enabled - label - Enable - - - - cell - PSGroupCell - - - cell - PSButtonCell - label - @mac_user669 - action - openTwitter - - - title - ZenithDark - - \ No newline at end of file diff --git a/zenithdarkprefs/ZnthDrkRootListController.h b/zenithdarkprefs/ZnthDrkRootListController.h deleted file mode 100644 index 07cc78a..0000000 --- a/zenithdarkprefs/ZnthDrkRootListController.h +++ /dev/null @@ -1,5 +0,0 @@ -#import - -@interface ZnthDrkRootListController : PSListController - -@end diff --git a/zenithdarkprefs/ZnthDrkRootListController.m b/zenithdarkprefs/ZnthDrkRootListController.m deleted file mode 100644 index 4c559f8..0000000 --- a/zenithdarkprefs/ZnthDrkRootListController.m +++ /dev/null @@ -1,40 +0,0 @@ -#import "ZnthDrkRootListController.h" -#import -@implementation ZnthDrkRootListController - -- (void)viewWillAppear:(BOOL)animated { - [super viewWillAppear:animated]; - UIBarButtonItem *applyButton = [[UIBarButtonItem alloc] initWithTitle:@"Apply" style:UIBarButtonItemStylePlain target:self action:@selector(respringDevice)]; - self.navigationItem.rightBarButtonItem = applyButton; -} - -- (NSArray *)specifiers { - if (!_specifiers) { - _specifiers = [self loadSpecifiersFromPlistName:@"Root" target:self]; - } - - return _specifiers; -} - -- (void) respringDevice { - UIAlertController *confirmRespringAlert = [UIAlertController alertControllerWithTitle:@"Apply settings?" message:@"This will respring your device" preferredStyle:UIAlertControllerStyleAlert]; - UIAlertAction *confirm = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { - pid_t pid; - const char *argv[] = {"sbreload", NULL}; - posix_spawn(&pid, "/usr/bin/sbreload", NULL, NULL, (char* const*)argv, NULL); - }]; - - UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:nil]; - - [confirmRespringAlert addAction:cancel]; - [confirmRespringAlert addAction:confirm]; - - [self presentViewController:confirmRespringAlert animated:YES completion:nil]; -} - --(void)openTwitter { - NSURL *twitter = [NSURL URLWithString:@"https://twitter.com/mac_user669"]; - [[UIApplication sharedApplication] openURL:twitter options:@{} completionHandler:nil]; -} - -@end diff --git a/zenithdarkprefs/entry.plist b/zenithdarkprefs/entry.plist deleted file mode 100644 index 9b0cc13..0000000 --- a/zenithdarkprefs/entry.plist +++ /dev/null @@ -1,21 +0,0 @@ - - - - - entry - - bundle - ZenithDarkPrefs - cell - PSLinkCell - detail - ZnthDrkRootListController - icon - icon.png - isController - - label - ZenithDarkPrefs - - -