forked from Burrit0z/Dockify_Source
		
	Update 1.1
This commit is contained in:
		
										
											Binary file not shown.
										
									
								
							@ -1,7 +1,9 @@
 | 
			
		||||
#line 1 "Tweak.x"
 | 
			
		||||
 | 
			
		||||
#import <SpringBoard/SpringBoard.h>
 | 
			
		||||
#import <Cephei/HBPreferences.h>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static BOOL transparent;
 | 
			
		||||
static BOOL hidden;
 | 
			
		||||
static double setHeight;
 | 
			
		||||
@ -10,6 +12,7 @@ static double customOpacity;
 | 
			
		||||
HBPreferences *preferences;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#include <substrate.h>
 | 
			
		||||
#if defined(__clang__)
 | 
			
		||||
#if __has_feature(objc_arc)
 | 
			
		||||
@ -33,40 +36,42 @@ HBPreferences *preferences;
 | 
			
		||||
@class SBDockView; 
 | 
			
		||||
static void (*_logos_orig$_ungrouped$SBDockView$setBackgroundAlpha$)(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST, SEL, double); static void _logos_method$_ungrouped$SBDockView$setBackgroundAlpha$(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST, SEL, double); static double (*_logos_orig$_ungrouped$SBDockView$dockHeight)(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST, SEL); static double _logos_method$_ungrouped$SBDockView$dockHeight(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST, SEL); 
 | 
			
		||||
 | 
			
		||||
#line 11 "Tweak.x"
 | 
			
		||||
#line 14 "Tweak.x"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static void _logos_method$_ungrouped$SBDockView$setBackgroundAlpha$(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST __unused self, SEL __unused _cmd, double arg1)  {
 | 
			
		||||
    if (transparent == NO) {
 | 
			
		||||
    if (transparent == NO && hidden == NO) { 
 | 
			
		||||
      _logos_orig$_ungrouped$SBDockView$setBackgroundAlpha$(self, _cmd, customOpacity);
 | 
			
		||||
    }else if (transparent) {
 | 
			
		||||
      _logos_orig$_ungrouped$SBDockView$setBackgroundAlpha$(self, _cmd, 0.0);
 | 
			
		||||
    }else if (transparent || hidden) { 
 | 
			
		||||
      _logos_orig$_ungrouped$SBDockView$setBackgroundAlpha$(self, _cmd, 0.0); 
 | 
			
		||||
    } else {
 | 
			
		||||
      NSLog(@"Dock not Transparent, no custom opacity\n");
 | 
			
		||||
      NSLog(@"Dock not Transparent/hidden, no custom opacity\n");
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static double _logos_method$_ungrouped$SBDockView$dockHeight(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST __unused self, SEL __unused _cmd) {
 | 
			
		||||
  if (hidden) {
 | 
			
		||||
    return (-500);
 | 
			
		||||
    return (-50); 
 | 
			
		||||
  } else {
 | 
			
		||||
    return (_logos_orig$_ungrouped$SBDockView$dockHeight(self, _cmd)*setHeight);
 | 
			
		||||
    return (_logos_orig$_ungrouped$SBDockView$dockHeight(self, _cmd)*setHeight); 
 | 
			
		||||
  }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static __attribute__((constructor)) void _logosLocalCtor_eb769390(int __unused argc, char __unused **argv, char __unused **envp) {
 | 
			
		||||
static __attribute__((constructor)) void _logosLocalCtor_d1a00f3d(int __unused argc, char __unused **argv, char __unused **envp) {
 | 
			
		||||
	preferences = [[HBPreferences alloc] initWithIdentifier:@"com.burritoz.dockifyprefs"];
 | 
			
		||||
	[preferences registerDefaults:@{
 | 
			
		||||
	[preferences registerDefaults:@{ 
 | 
			
		||||
    @"setHeight": @1,
 | 
			
		||||
    @"customOpacity": @1,
 | 
			
		||||
    @"hidden": @NO
 | 
			
		||||
	}];
 | 
			
		||||
	[preferences registerBool:&transparent default:YES forKey:@"transparent"];
 | 
			
		||||
  [preferences registerBool:&hidden default:NO forKey:@"hidden"];
 | 
			
		||||
	[preferences registerDouble:(double *)&setHeight default:1 forKey:@"setHeight"];
 | 
			
		||||
  [preferences registerDouble:(double *)&customOpacity default:1 forKey:@"customOpacity"];
 | 
			
		||||
	[preferences registerBool:&transparent default:YES forKey:@"transparent"]; 
 | 
			
		||||
  [preferences registerBool:&hidden default:NO forKey:@"hidden"]; 
 | 
			
		||||
	[preferences registerDouble:(double *)&setHeight default:1 forKey:@"setHeight"]; 
 | 
			
		||||
  [preferences registerDouble:(double *)&customOpacity default:1 forKey:@"customOpacity"]; 
 | 
			
		||||
}
 | 
			
		||||
static __attribute__((constructor)) void _logosLocalInit() {
 | 
			
		||||
{Class _logos_class$_ungrouped$SBDockView = objc_getClass("SBDockView"); MSHookMessageEx(_logos_class$_ungrouped$SBDockView, @selector(setBackgroundAlpha:), (IMP)&_logos_method$_ungrouped$SBDockView$setBackgroundAlpha$, (IMP*)&_logos_orig$_ungrouped$SBDockView$setBackgroundAlpha$);MSHookMessageEx(_logos_class$_ungrouped$SBDockView, @selector(dockHeight), (IMP)&_logos_method$_ungrouped$SBDockView$dockHeight, (IMP*)&_logos_orig$_ungrouped$SBDockView$dockHeight);} }
 | 
			
		||||
#line 44 "Tweak.x"
 | 
			
		||||
#line 49 "Tweak.x"
 | 
			
		||||
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@ -1,7 +1,9 @@
 | 
			
		||||
#line 1 "Tweak.x"
 | 
			
		||||
 | 
			
		||||
#import <SpringBoard/SpringBoard.h>
 | 
			
		||||
#import <Cephei/HBPreferences.h>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static BOOL transparent;
 | 
			
		||||
static BOOL hidden;
 | 
			
		||||
static double setHeight;
 | 
			
		||||
@ -10,6 +12,7 @@ static double customOpacity;
 | 
			
		||||
HBPreferences *preferences;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#include <substrate.h>
 | 
			
		||||
#if defined(__clang__)
 | 
			
		||||
#if __has_feature(objc_arc)
 | 
			
		||||
@ -33,40 +36,42 @@ HBPreferences *preferences;
 | 
			
		||||
@class SBDockView; 
 | 
			
		||||
static void (*_logos_orig$_ungrouped$SBDockView$setBackgroundAlpha$)(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST, SEL, double); static void _logos_method$_ungrouped$SBDockView$setBackgroundAlpha$(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST, SEL, double); static double (*_logos_orig$_ungrouped$SBDockView$dockHeight)(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST, SEL); static double _logos_method$_ungrouped$SBDockView$dockHeight(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST, SEL); 
 | 
			
		||||
 | 
			
		||||
#line 11 "Tweak.x"
 | 
			
		||||
#line 14 "Tweak.x"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static void _logos_method$_ungrouped$SBDockView$setBackgroundAlpha$(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST __unused self, SEL __unused _cmd, double arg1)  {
 | 
			
		||||
    if (transparent == NO) {
 | 
			
		||||
    if (transparent == NO && hidden == NO) { 
 | 
			
		||||
      _logos_orig$_ungrouped$SBDockView$setBackgroundAlpha$(self, _cmd, customOpacity);
 | 
			
		||||
    }else if (transparent) {
 | 
			
		||||
      _logos_orig$_ungrouped$SBDockView$setBackgroundAlpha$(self, _cmd, 0.0);
 | 
			
		||||
    }else if (transparent || hidden) { 
 | 
			
		||||
      _logos_orig$_ungrouped$SBDockView$setBackgroundAlpha$(self, _cmd, 0.0); 
 | 
			
		||||
    } else {
 | 
			
		||||
      NSLog(@"Dock not Transparent, no custom opacity\n");
 | 
			
		||||
      NSLog(@"Dock not Transparent/hidden, no custom opacity\n");
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static double _logos_method$_ungrouped$SBDockView$dockHeight(_LOGOS_SELF_TYPE_NORMAL SBDockView* _LOGOS_SELF_CONST __unused self, SEL __unused _cmd) {
 | 
			
		||||
  if (hidden) {
 | 
			
		||||
    return (-500);
 | 
			
		||||
    return (-50); 
 | 
			
		||||
  } else {
 | 
			
		||||
    return (_logos_orig$_ungrouped$SBDockView$dockHeight(self, _cmd)*setHeight);
 | 
			
		||||
    return (_logos_orig$_ungrouped$SBDockView$dockHeight(self, _cmd)*setHeight); 
 | 
			
		||||
  }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
static __attribute__((constructor)) void _logosLocalCtor_eb769390(int __unused argc, char __unused **argv, char __unused **envp) {
 | 
			
		||||
static __attribute__((constructor)) void _logosLocalCtor_d1a00f3d(int __unused argc, char __unused **argv, char __unused **envp) {
 | 
			
		||||
	preferences = [[HBPreferences alloc] initWithIdentifier:@"com.burritoz.dockifyprefs"];
 | 
			
		||||
	[preferences registerDefaults:@{
 | 
			
		||||
	[preferences registerDefaults:@{ 
 | 
			
		||||
    @"setHeight": @1,
 | 
			
		||||
    @"customOpacity": @1,
 | 
			
		||||
    @"hidden": @NO
 | 
			
		||||
	}];
 | 
			
		||||
	[preferences registerBool:&transparent default:YES forKey:@"transparent"];
 | 
			
		||||
  [preferences registerBool:&hidden default:NO forKey:@"hidden"];
 | 
			
		||||
	[preferences registerDouble:(double *)&setHeight default:1 forKey:@"setHeight"];
 | 
			
		||||
  [preferences registerDouble:(double *)&customOpacity default:1 forKey:@"customOpacity"];
 | 
			
		||||
	[preferences registerBool:&transparent default:YES forKey:@"transparent"]; 
 | 
			
		||||
  [preferences registerBool:&hidden default:NO forKey:@"hidden"]; 
 | 
			
		||||
	[preferences registerDouble:(double *)&setHeight default:1 forKey:@"setHeight"]; 
 | 
			
		||||
  [preferences registerDouble:(double *)&customOpacity default:1 forKey:@"customOpacity"]; 
 | 
			
		||||
}
 | 
			
		||||
static __attribute__((constructor)) void _logosLocalInit() {
 | 
			
		||||
{Class _logos_class$_ungrouped$SBDockView = objc_getClass("SBDockView"); MSHookMessageEx(_logos_class$_ungrouped$SBDockView, @selector(setBackgroundAlpha:), (IMP)&_logos_method$_ungrouped$SBDockView$setBackgroundAlpha$, (IMP*)&_logos_orig$_ungrouped$SBDockView$setBackgroundAlpha$);MSHookMessageEx(_logos_class$_ungrouped$SBDockView, @selector(dockHeight), (IMP)&_logos_method$_ungrouped$SBDockView$dockHeight, (IMP*)&_logos_orig$_ungrouped$SBDockView$dockHeight);} }
 | 
			
		||||
#line 44 "Tweak.x"
 | 
			
		||||
#line 49 "Tweak.x"
 | 
			
		||||
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@ -6,8 +6,16 @@
 | 
			
		||||
	<array>
 | 
			
		||||
		<dict>
 | 
			
		||||
			<key>cell</key>
 | 
			
		||||
			<string>PSStaticTextCell</string>
 | 
			
		||||
			<key>label</key>
 | 
			
		||||
			<string>PSGroupCell</string>
 | 
			
		||||
			<key>condensed</key>
 | 
			
		||||
			<true/>
 | 
			
		||||
			<key>headerCellClass</key>
 | 
			
		||||
			<string>HBPackageNameHeaderCell</string>
 | 
			
		||||
			<key>icon</key>
 | 
			
		||||
			<string>icon.png</string>
 | 
			
		||||
			<key>packageIdentifier</key>
 | 
			
		||||
			<string>com.burritoz.testing</string>
 | 
			
		||||
			<key>packageNameOverride</key>
 | 
			
		||||
			<string>Dockify by Burrit0z</string>
 | 
			
		||||
		</dict>
 | 
			
		||||
		<dict>
 | 
			
		||||
@ -44,7 +52,7 @@
 | 
			
		||||
			<key>key</key>
 | 
			
		||||
			<string>hidden</string>
 | 
			
		||||
			<key>label</key>
 | 
			
		||||
			<string>Hide (kinda)</string>
 | 
			
		||||
			<string>Hide (kinda, not really)</string>
 | 
			
		||||
		</dict>
 | 
			
		||||
		<dict>
 | 
			
		||||
			<key>cell</key>
 | 
			
		||||
@ -54,19 +62,21 @@
 | 
			
		||||
		</dict>
 | 
			
		||||
		<dict>
 | 
			
		||||
			<key>cell</key>
 | 
			
		||||
			<string>PSEditTextCell</string>
 | 
			
		||||
			<string>PSSliderCell</string>
 | 
			
		||||
			<key>default</key>
 | 
			
		||||
			<string>1</string>
 | 
			
		||||
			<key>defaults</key>
 | 
			
		||||
			<string>com.burritoz.dockifyprefs</string>
 | 
			
		||||
			<key>key</key>
 | 
			
		||||
			<string>setHeight</string>
 | 
			
		||||
			<key>placeholder</key>
 | 
			
		||||
			<string>Enter value greater than 0</string>
 | 
			
		||||
			<key>isDecimalPad</key>
 | 
			
		||||
			<key>min</key>
 | 
			
		||||
			<integer>0</integer>
 | 
			
		||||
			<key>max</key>
 | 
			
		||||
			<integer>10</integer>
 | 
			
		||||
			<key>isSegmented</key>
 | 
			
		||||
			<false/>
 | 
			
		||||
			<key>showValue</key>
 | 
			
		||||
			<true/>
 | 
			
		||||
			<key>keyboard</key>
 | 
			
		||||
			<string>numbers</string>
 | 
			
		||||
		</dict>
 | 
			
		||||
		<dict>
 | 
			
		||||
			<key>cell</key>
 | 
			
		||||
@ -76,28 +86,48 @@
 | 
			
		||||
		</dict>
 | 
			
		||||
		<dict>
 | 
			
		||||
			<key>cell</key>
 | 
			
		||||
			<string>PSEditTextCell</string>
 | 
			
		||||
			<string>PSSliderCell</string>
 | 
			
		||||
			<key>default</key>
 | 
			
		||||
			<string>1</string>
 | 
			
		||||
			<key>defaults</key>
 | 
			
		||||
			<string>com.burritoz.dockifyprefs</string>
 | 
			
		||||
			<key>key</key>
 | 
			
		||||
			<string>customOpacity</string>
 | 
			
		||||
			<key>placeholder</key>
 | 
			
		||||
			<string>Will not be set if transparent is on</string>
 | 
			
		||||
			<key>isDecimalPad</key>
 | 
			
		||||
			<key>min</key>
 | 
			
		||||
			<integer>0</integer>
 | 
			
		||||
			<key>max</key>
 | 
			
		||||
			<integer>1</integer>
 | 
			
		||||
			<key>isSegmented</key>
 | 
			
		||||
			<false/>
 | 
			
		||||
			<key>showValue</key>
 | 
			
		||||
			<true/>
 | 
			
		||||
			<key>keyboard</key>
 | 
			
		||||
			<string>numbers</string>
 | 
			
		||||
		</dict>
 | 
			
		||||
		<dict>
 | 
			
		||||
			<key>cell</key>
 | 
			
		||||
			<string>PSButtonCell</string>
 | 
			
		||||
			<key>label</key>
 | 
			
		||||
			<string>Respring</string>
 | 
			
		||||
			<string>Apply/ReSpring</string>
 | 
			
		||||
			<key>action</key>
 | 
			
		||||
			<string>respring:</string>
 | 
			
		||||
		</dict>
 | 
			
		||||
		<dict>
 | 
			
		||||
			<key>cell</key>
 | 
			
		||||
			<string>PSGroupCell</string>
 | 
			
		||||
			<key>footerText</key>
 | 
			
		||||
			<string>"Try not. Do... or do not. There is no try."</string>
 | 
			
		||||
		</dict>
 | 
			
		||||
		<dict>
 | 
			
		||||
			<key>cellClass</key>
 | 
			
		||||
			<string>HBLinkTableCell</string>
 | 
			
		||||
			<key>label</key>
 | 
			
		||||
			<string>Source Code</string>
 | 
			
		||||
			<key>subtitle</key>
 | 
			
		||||
			<string>The source code for Dockify</string>
 | 
			
		||||
			<key>icon</key>
 | 
			
		||||
			<string>icon.png</string>
 | 
			
		||||
			<key>url</key>
 | 
			
		||||
			<string>https://github.com/Burrit0z/Dockify_Source</string>
 | 
			
		||||
		</dict>
 | 
			
		||||
	</array>
 | 
			
		||||
	<key>title</key>
 | 
			
		||||
	<string>Dockify</string>
 | 
			
		||||
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
		Reference in New Issue
	
	Block a user