Skip to content

Commit

Permalink
Added mach_portal and extra_recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
ipad_kid committed Jan 3, 2018
1 parent 3ac7f64 commit 46a5eab
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
ARCHS = arm64 armv7

include $(THEOS)/makefiles/common.mk

TWEAK_NAME = Hid3x
Hid3x_FILES = Tweak.xm
Hid3x_FILES = Tweak.x
Hid3x_CFLAGS = -fobjc-arc

include $(THEOS_MAKE_PATH)/tweak.mk
Expand Down
6 changes: 4 additions & 2 deletions Tweak.xm → Tweak.x
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
// requires a respring, only called on SpringBoard load
- (BOOL)isIconVisible:(SBApplicationIcon *)icon {
// Just add any bundle IDs you want to this array
// LiberIOS: com.newosxbook.jb.liberios
// LiberiOS: com.newosxbook.jb.liberios
// H3lix: org.tihmstar.h3lix
// Yalu102: kim.cracksby.yalu102
// Phoenix: supplies.wall.phoenix
NSArray<NSString *> *hide = @[@"com.newosxbook.jb.liberios", @"org.tihmstar.h3lix", @"kim.cracksby.yalu102", @"supplies.wall.phoenix"];
// mach_portal: com.qwertyoruiopz.zmach-portal
// extra_recipe: com.example.extra-recipe
NSArray<NSString *> *hide = @[@"com.newosxbook.jb.liberios", @"org.tihmstar.h3lix", @"kim.cracksby.yalu102", @"supplies.wall.phoenix", @"com.qwertyoruiopz.zmach-portal", @"com.example.extra-recipe"];
if ([hide containsObject:icon.applicationBundleID]) {
return NO;
}
Expand Down
4 changes: 2 additions & 2 deletions control
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Package: com.ipadkid.hid3x
Name: Hid3x
Depends: mobilesubstrate
Version: 0.0.4
Version: 0.0.5
Architecture: iphoneos-arm
Description: Hide the H3lix, Yalu102, Phœnix, and LiberIOS offical icons (requires Substrate to be active, so it will only be hidden while jailbroken)
Description: Hide the H3lix, Yalu102, Phoenix, mach_portal, extra_recipe, and LiberiOS offical icons (requires Substrate to be active, so it will only be hidden while jailbroken)
Maintainer: ipad_kid <[email protected]>
Author: ipad_kid <[email protected]>
Section: Tweaks
4 changes: 2 additions & 2 deletions readMe.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Hid3x

This tweak hides the [H3lix](https://h3lix.tihmstar.net), [Yalu102](https://yalu.qwertyoruiop.com), [Phœnix](https://phoenixpwn.com), and [LiberIOS](http://newosxbook.com/liberios) offical icons while jailbroken.
This tweak hides the [H3lix](https://h3lix.tihmstar.net), [Yalu102](https://yalu.qwertyoruiop.com), [Phœnix](https://phoenixpwn.com), [mach_portal](https://yalu.qwertyoruiop.com/), [extra_recipe](https://yalu.qwertyoruiop.com/) and [LiberiOS](http://newosxbook.com/liberios) offical icons while jailbroken.

At this time LiberIOS does not have substrate working, so this tweak will not work, until it's updated.
At this time LiberiOS does not have substrate working, so this tweak will not work, until it's updated.

Please feel make a pull request will any additional jailbreak apps you'd like included.

0 comments on commit 46a5eab

Please sign in to comment.