This file contains hidden or 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
# Thank you to https://github.com/asdfzxcvbn/update-notifier for figuring out how to force the iTunes API, to not use cache. | |
import os | |
import requests | |
import subprocess | |
import json | |
# Configurations | |
version_file = "app_version.txt" # The text file where the version number will be saved will be prefixed with the apps BundleID | |
webhook_url = "DISCORDWEBHOOK" # Your Discord webhook URL | |
app_bundleID = "com.google.ios.youtube" # The BundleID for the app you want updates for. You can get the BundleID from here https://armconverter.com/appinfo |
This file contains hidden or 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
<# | |
Version 3 | |
To run this script, open a new Command Prompt session and execute the following command: | |
powershell -ExecutionPolicy Bypass -File "D:\Path\To\Your\Discord Sideloadly Patcher.ps1" -ipaFilePath "D:\Path\To\Your\Discord.ipa" | |
Replace "D:\Path\To\Your\Discord Sideloadly Patcher.ps1" with the full path to this script, and "D:\Path\To\Your\Discord.ipa" with the full path to your Discord IPA file. | |
Using -ExecutionPolicy Bypass allows the script to run without changing the execution policy for the session, ensuring successful execution. | |
#> |
NewerOlder