-
Notifications
You must be signed in to change notification settings - Fork 369
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Request] some features in next/future updates #6
Comments
I've implemented most of these in my personal fork if you're interested |
If you're able to build and release the deb file, I would be appreciate since I myself don't know how to do it. |
I've personally only used the sideloaded version (ipa) but I'll see if I can compile the dev as well |
or you can share IPA that you're using |
I'll just finish up my work with the app and upload the ipa as a release on the repo hopefully this weekend |
okay bro, take your time no rush here. |
@SoCuul Hi, thank you for maintaining a fork of this project! I have two questions:
Regards |
Hey! If I'm not wrong issues should currently be enabled, but I'll double check just to make sure. And I currently have the app updated to the latest version of the Instagram app working perfectly. If I'm being completely honest, I've never touched Objective-C in my life, but I'll try my best to maintain this fork haha. |
Thank you for your reply. I'm trying to build it, I almost got it working, IPA is building correctly, however, I don't have those sign.sh and deploy.sh. I will make a PR with a building guide once it's working. And I'll try to develop the focus mode, even if I don't succeed, it will be a good learn :) |
I haven't completely finished the scripts for other people to use (I had to figure out how to build the app since nothings included in this repo). I should post a working script (along with a compiled ipa) later today. |
I managed to build it and making it work! I re-used the The build.sh: OPTS=$(getopt -a weather --longoptions $LONG -- "$@") # useless?
libcephei_URL="https://cdn.discordapp.com/attachments/755439561454256132/1184388888475738243/libcephei.zip?ex=658bcb1b&is=6579561b&hm=24bf1a932b1a91dda5826435bddef3114febc54c11c8e6a995c800d7db644e67&"
PROJECT_PATH=$(pwd)
echo -e '\033[1m\033[32mBuilding BHInsta project for sideloaded.\033[0m'
make clean
rm -rf .theos
make SIDELOADED=1
if [ -e ./packages/com.burbn.instagram.ipa ]; then
echo -e '\033[1m\033[32mDownloading libcephei SDK.\033[0m'
temp_dir=$(mktemp -d)
curl -L -o "$temp_dir/libcephei.zip" "$libcephei_URL"
unzip -o "$temp_dir/libcephei.zip" -d ./packages
rm -rf "$temp_dir"
rm -rf ./packages/__MACOSX
echo -e '\033[1m\033[32mBuilding the IPA.\033[0m'
../Azule/azule -i "$PROJECT_PATH/packages/com.burbn.instagram.ipa" -o "$PROJECT_PATH/packages" -n BHInsta-sideloaded -r -f "$PROJECT_PATH/.theos/obj/debug/keychainfix.dylib" "$PROJECT_PATH/.theos/obj/debug/libbhFLEX.dylib" "$PROJECT_PATH/.theos/obj/debug/BHInsta.dylib" "$PROJECT_PATH/packages/Cephei.framework" "$PROJECT_PATH/packages/CepheiUI.framework" "$PROJECT_PATH/packages/CepheiPrefs.framework"
echo -e '\033[1m\033[32mDone, thanks for using BHInsta.\033[0m'
else
echo -e '\033[1m\033[0;31mpackages/com.burbn.instagram.ipa not found.\033[0m'
fi Also I added this to the Makefile:
This way, it builds libflex and keychainfix in the same .theos dir. I didn't had to use any signing process (Sideloadly certainly did it for me), the output IPA directly worked. |
The text was updated successfully, but these errors were encountered: