forked from BandarHL/BHInstagram
-
-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve most features, added some more and created documentation
- Loading branch information
Showing
29 changed files
with
369 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,74 @@ | ||
# BHInstagram | ||
An awesome tweak for Instagram! | ||
# BHInsta | ||
A feature-rich tweak for Instagram on iOS! | ||
`Version v0.2.0` | ||
|
||
--- | ||
|
||
# Features | ||
- Hide Ads | ||
- No suggested post | ||
- Show Like count | ||
- Confirm like | ||
### General | ||
- Show like count | ||
- Copy description | ||
- Download Videos | ||
- Do not save recent searches | ||
|
||
### Feed | ||
- Hide ads | ||
- No suggested posts | ||
- No suggested for you (accounts) | ||
|
||
### Confirm actions | ||
- Confirm like: Posts | ||
- Confirm like: Reels | ||
- Confirm follow | ||
- Confirm call | ||
- Confirm voice messages | ||
- Confirm sticker interaction | ||
- Confirm posting comment | ||
|
||
### Save media | ||
- Download videos | ||
- Save profile image | ||
|
||
### Story and messages | ||
- Keep deleted message | ||
- Remove last seen | ||
- Unlimited replay of direct stories | ||
- Disabling sending read receipts | ||
- Remove screenshot alert | ||
- Unlimited replay of once story | ||
- Disable Story Seen Receipt | ||
- Padlock | ||
- Disable story seen receipt | ||
|
||
### Security | ||
- Padlock (biometric requirement to access app) | ||
|
||
# Building | ||
## Prerequisites | ||
- XCode + Command-Line Developer Tools | ||
- [Homebrew](https://brew.sh/) | ||
- CMake (install with brew) | ||
- [Theos](https://theos.dev/docs/installation) | ||
- [Azule](https://github.com/Al4ise/Azule/wiki) | ||
|
||
## Setup | ||
1. Install iOS 14.5 frameworks for theos | ||
1. [Download from GitHub repo](https://github.com/xybp888/iOS-SDKs) | ||
2. Copy `iPhoneOS14.5.sdk` folder into `~/theos/sdks` | ||
2. Clone BHInsta repo from GitHub: `git clone --recurse-submodules https://github.com/SoCuul/BHInsta` | ||
3. [Download decrypted Instagram IPA](https://armconverter.com/decryptedappstore/us/instagram), and place it inside the `packages` folder with the name `com.burbn.instagram.ipa` | ||
|
||
## Build IPA | ||
```sh | ||
$ chmod +x build.sh | ||
$ ./build.sh | ||
``` | ||
|
||
## Install IPA | ||
You can install the tweaked IPA file like any other sideloaded iOS app. If you have not done this before, here are some suggestions to get started. | ||
|
||
- [AltStore](https://altstore.io/#Downloads) (Free, No notifications*) *Notifications require $99/year Apple Developer Program | ||
- [Sideloadly](https://sideloadly.io/#download) (Free, No notifications*) *Notifications require $99/year Apple Developer Program | ||
- [Signulous](https://www.signulous.com/register) ($19.99/year, Works with notifications) | ||
- [UDID Registrations](https://www.udidregistrations.com/buy) ($9.99/year, Works with notifications) | ||
|
||
# In-App Screenshots | ||
![BHInsta Settings](https://i.imgur.com/55ervgv.jpg) | ||
|
||
# TODO | ||
- [ ] Add Localization for the tweak. | ||
# Contributing | ||
Contributions to this tweak are greatly appreciated. Feel free to create a pull request if you would like to contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env bash | ||
|
||
./build.sh | ||
|
||
# Install to device | ||
cp -fr ./packages/BHInsta-sideloaded.ipa ~/Documents/Signing/BHInsta/ipas/UNSIGNED.ipa | ||
cd ~/Documents/Signing | ||
./sign.sh BHInsta | ||
./deploy.sh BHInsta #true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#import "../../Manager.h" | ||
#import "../../Utils.h" | ||
|
||
%hook IGDirectThreadViewController | ||
- (void)voiceRecordViewController:(id)arg1 didRecordAudioClipWithURL:(id)arg2 waveform:(id)arg3 duration:(CGFloat)arg4 entryPoint:(NSInteger)arg5 { | ||
if ([BHIManager voiceMessageConfirmation]) { | ||
[BHIUtils showConfirmation:^(void) { %orig; }]; | ||
} else { | ||
return %orig; | ||
} | ||
} | ||
%end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.