Skip to content

Commit

Permalink
Initial release.
Browse files Browse the repository at this point in the history
  • Loading branch information
iAdam1n committed Aug 11, 2015
0 parents commit 17c8202
Show file tree
Hide file tree
Showing 7 changed files with 723 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
675 changes: 675 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
include theos/makefiles/common.mk
export SDKVERSION=8.0
ARCHS = armv7 arm64

TWEAK_NAME = NoTrending
NoTrending_FILES = Tweak.xm

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
install.exec "killall -9 SpringBoard"
1 change: 1 addition & 0 deletions NoTrending.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ Filter = { Bundles = ( "com.apple.ios.StoreKitUI" ); }; }
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# NoTrending
Remove "trending searches" section in App Store and iTunes Store.

## [License](LICENSE)

NoTrending: Remove "trending searches" section in App Store and iTunes Store.
Copyright (C) 2015 iAdam1n

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
6 changes: 6 additions & 0 deletions Tweak.xm
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#import <StoreKitUI/SKUITrendingSearchView.h>
%hook SKUITrendingSearchView
-(void)layoutSubviews {
NO;
}
%end
10 changes: 10 additions & 0 deletions control
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Package: com.iadam1n.notrending
Name: NoTrending
Depends: mobilesubstrate
Pre-Depends: firmware (>=8.0)
Version: 1.0
Architecture: iphoneos-arm
Description: Disable trending on search for App Store and iTunes Store.
Maintainer: iAdam1n
Author: iAdam1n
Section: Tweaks

0 comments on commit 17c8202

Please sign in to comment.