@@ -1,6 +1,6 @@ | |||
Package: me.shymemoriees.tick | |||
Name: Tick | |||
Depends: mobilesubstrate, ws.hbang.common (>= 1.11), firmware (<< 13) | |||
Depends: mobilesubstrate, ws.hbang.common (>= 1.14) | |||
Architecture: iphoneos-arm | |||
Description: Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower | |||
Maintainer: ShyMemoriees <shymemoriees@yahoo.com> | |||
@@ -9,5 +9,5 @@ Section: Tweaks | |||
Depiction: https://repo.shymemoriees.me/depictions/tck/index.html | |||
SileoDepiction: https://repo.shymemoriees.me/depictions/tck/tck.json | |||
Icon: https://repo.shymemoriees.me/depictions/tck/assets/icon.png | |||
Version: 1.0 | |||
Installed-Size: 392 | |||
Version: 1.1 | |||
Installed-Size: 748 |
@@ -1 +1 @@ | |||
./packages/me.shymemoriees.tick_1.0_iphoneos-arm.deb | |||
./packages/me.shymemoriees.tick_1.1_iphoneos-arm.deb |
@@ -105,6 +105,26 @@ | |||
<key>url</key> | |||
<string>https://github.com/ShyMemoriees/Tick/issues/new</string> | |||
</dict> | |||
<dict> | |||
<key>cell</key> | |||
<string>PSGroupCell</string> | |||
<key>label</key> | |||
<string>Icon Design</string> | |||
</dict> | |||
<dict> | |||
<key>action</key> | |||
<string>twittertaki</string> | |||
<key>cell</key> | |||
<string>PSButtonCell</string> | |||
<key>label</key> | |||
<string>@74k1_</string> | |||
<key>cellClass</key> | |||
<string>HBTwitterCell</string> | |||
<key>label</key> | |||
<string>taki</string> | |||
<key>user</key> | |||
<string>74k1_</string> | |||
</dict> | |||
<dict> | |||
<key>cell</key> | |||
<string>PSGroupCell</string> |
@@ -105,6 +105,26 @@ | |||
<key>url</key> | |||
<string>https://github.com/ShyMemoriees/Tick/issues/new</string> | |||
</dict> | |||
<dict> | |||
<key>cell</key> | |||
<string>PSGroupCell</string> | |||
<key>label</key> | |||
<string>Icon Design</string> | |||
</dict> | |||
<dict> | |||
<key>action</key> | |||
<string>twittertaki</string> | |||
<key>cell</key> | |||
<string>PSButtonCell</string> | |||
<key>label</key> | |||
<string>@74k1_</string> | |||
<key>cellClass</key> | |||
<string>HBTwitterCell</string> | |||
<key>label</key> | |||
<string>taki</string> | |||
<key>user</key> | |||
<string>74k1_</string> | |||
</dict> | |||
<dict> | |||
<key>cell</key> | |||
<string>PSGroupCell</string> |
@@ -1 +1 @@ | |||
10 | |||
11 |
@@ -105,6 +105,26 @@ | |||
<key>url</key> | |||
<string>https://github.com/ShyMemoriees/Tick/issues/new</string> | |||
</dict> | |||
<dict> | |||
<key>cell</key> | |||
<string>PSGroupCell</string> | |||
<key>label</key> | |||
<string>Icon Design</string> | |||
</dict> | |||
<dict> | |||
<key>action</key> | |||
<string>twittertaki</string> | |||
<key>cell</key> | |||
<string>PSButtonCell</string> | |||
<key>label</key> | |||
<string>@74k1_</string> | |||
<key>cellClass</key> | |||
<string>HBTwitterCell</string> | |||
<key>label</key> | |||
<string>taki</string> | |||
<key>user</key> | |||
<string>74k1_</string> | |||
</dict> | |||
<dict> | |||
<key>cell</key> | |||
<string>PSGroupCell</string> |
@@ -3,7 +3,7 @@ | |||
@implementation TCKAppearanceSettings | |||
-(UIColor *)tintColor { | |||
return [UIColor colorWithRed:0.17 green:0.09 blue:0.19 alpha:1.0];; | |||
return [UIColor colorWithRed:0.64 green:0.67 blue:1.00 alpha:1.0];; | |||
} | |||
-(UIColor *)statusBarTintColor { | |||
@@ -23,7 +23,7 @@ | |||
} | |||
-(UIColor *)navigationBarBackgroundColor { | |||
return [UIColor colorWithRed:0.17 green:0.09 blue:0.19 alpha:1.0];; | |||
return [UIColor colorWithRed:0.64 green:0.67 blue:1.00 alpha:1.0];; | |||
} | |||
-(BOOL)translucentNavigationBar { |
@@ -85,7 +85,7 @@ | |||
CGRect frame = self.table.bounds; | |||
frame.origin.y = -frame.size.height; | |||
self.navigationController.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:0.17 green:0.09 blue:0.19 alpha:1.0]; | |||
self.navigationController.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:0.64 green:0.67 blue:1.00 alpha:1.0]; | |||
[self.navigationController.navigationController.navigationBar setShadowImage: [UIImage new]]; | |||
self.navigationController.navigationController.navigationBar.tintColor = [UIColor whiteColor]; | |||
self.navigationController.navigationController.navigationBar.translucent = NO; |
@@ -39,6 +39,36 @@ void playSound() { | |||
%end | |||
%hook SBIconController | |||
-(void)_forceTouchControllerWillPresent:(id)arg1 { | |||
%orig; | |||
if (enabled) { | |||
playSound(); | |||
} | |||
} | |||
%end | |||
%hook SBIconController | |||
-(void)_iconForceTouchControllerWillPresent:(id)arg1 { | |||
%orig; | |||
if (enabled) { | |||
playSound(); | |||
} | |||
} | |||
%end | |||
%end | |||
%ctor { |
@@ -1,7 +1,7 @@ | |||
Package: me.shymemoriees.tick | |||
Name: Tick | |||
Depends: mobilesubstrate, ws.hbang.common (>= 1.11), firmware (<< 13) | |||
Version: 1.0 | |||
Depends: mobilesubstrate, ws.hbang.common (>= 1.14) | |||
Version: 1.1 | |||
Architecture: iphoneos-arm | |||
Description: Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower | |||
Maintainer: ShyMemoriees <shymemoriees@yahoo.com> |