├── .github └── workflows │ └── build.yml ├── Makefile ├── README.md └── data ├── apps.json ├── footer.md └── header.md /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build readme 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | 7 | workflow_dispatch: 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: Checkout 14 | uses: actions/checkout@v3 15 | 16 | - name: Install node.js 17 | uses: actions/setup-node@v3 18 | with: 19 | node-version: 18 20 | 21 | - name: Build 22 | run: | 23 | npm install -g markdown-table-cli @fmma-npm/sort-markdown-tables 24 | make readme 25 | 26 | - name: Commit changes 27 | uses: stefanzweifel/git-auto-commit-action@v4 28 | with: 29 | commit_message: Generate readme -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: readme 2 | 3 | readme: 4 | rm -f README.md 5 | 6 | # Header 7 | /bin/cat data/header.md > README.md 8 | echo "" >> README.md 9 | 10 | # Actual table with apps 11 | /bin/cat data/apps.json | md-table -c >> README.md 12 | sort-markdown-tables -i -a README.md 13 | 14 | # Footer 15 | echo "" >> README.md 16 | /bin/cat data/footer.md >> README.md 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TrollStore Apps 2 | 3 | A compiled list of common apps for TrollStore, from the official developers of the apps. 4 | 5 | | Name | Category | Description | Download | Direct | 6 | | ------------- | --------------- | -------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | 7 | | AppStore++ | Utilities | Downgrade App Store apps | [Download](https://github.com/CokePokes/AppStorePlus-TrollStore/releases) | [Direct](https://github.com/CokePokes/AppStorePlus-TrollStore/releases/download/v1.2-1/AppStore++_TrollStore_v1.0.3-2.ipa) | 8 | | Apps Manager | Utilities | Wipe and backup apps | [Download](https://www.tigisoftware.com/default/?p=435) | [Direct](https://tigisoftware.com/download/AppsManager_1.7.0.ipa) | 9 | | Cardio | Customization | Change Apple Pay card images | [Download](https://github.com/cisc0disco/Cardio/releases) | [Direct](https://github.com/cisc0disco/Cardio/releases/latest/download/Cardio.ipa) | 10 | | Cowabunga | Utilities | Includes lots of new features and old features from TrollStore | [Download](https://github.com/leminlimez/Cowabunga/releases) | [Direct](https://github.com/leminlimez/Cowabunga/releases/download/v8.0.3/Cowabunga.ipa) | 11 | | Filza | File Management | File manager with root helper, so you can modify all of /var | [Download](https://www.tigisoftware.com/default/?p=439) | [Direct](https://tigisoftware.com/download/Filza_NoURLScheme_4.0.0.ipa) | 12 | | JitterBug | Utilities | JIT with most TrollStore apps | [Download](https://github.com/osy/Jitterbug/releases) | [Direct](https://github.com/osy/Jitterbug/releases/latest/download/Jitterbug.ipa) | 13 | | Legizmo | Utilities | Pair unsupported Apple Watches | [Download](https://www.patreon.com/lunotech11) | - | 14 | | PojavLauncher | Games | Minecraft java on iOS with JIT | [Download](https://github.com/PojavLauncherTeam/PojavLauncher_iOS/releases/tag/v2.1.3) | - | 15 | | Santander | File Management | Beautiful and modern file manager for iOS 14+ | [Download](https://github.com/SerenaKit/Santander/suites/9297579855/artifacts/436210123) | - | 16 | | TrollNonce | Utilities | Set your nonce to downgrade with FutureRestore | [Download](https://github.com/opa334/TrollNonce/releases) | [Direct](https://github.com/opa334/TrollNonce/releases/latest/download/TrollNonce.tipa) | 17 | | TrollTools | Customization | All-in-one customization tool | [Download](https://github.com/sourcelocation/TrollTools/releases) | [Direct](https://github.com/sourcelocation/TrollTools/releases/download/3.0/TrollTools.tipa) | 18 | 19 | --- 20 | 21 | ###### Automatically generated with <3 by Nebula's Makefile and GitHub Actions -------------------------------------------------------------------------------- /data/apps.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Santander", 4 | "category": "File Management", 5 | "description": "Beautiful and modern file manager for iOS 14+", 6 | "download": "[Download](https://github.com/SerenaKit/Santander/suites/9297579855/artifacts/436210123)", 7 | "direct": "-" 8 | }, 9 | { 10 | "name": "Filza", 11 | "category": "File Management", 12 | "description": "File manager with root helper, so you can modify all of /var", 13 | "download": "[Download](https://www.tigisoftware.com/default/?p=439)", 14 | "direct": "[Direct](https://tigisoftware.com/download/Filza_NoURLScheme_4.0.0.ipa)" 15 | }, 16 | { 17 | "name": "AppStore++", 18 | "category": "Utilities", 19 | "description": "Downgrade App Store apps", 20 | "download": "[Download](https://github.com/CokePokes/AppStorePlus-TrollStore/releases)", 21 | "direct": "[Direct](https://github.com/CokePokes/AppStorePlus-TrollStore/releases/download/v1.2-1/AppStore++_TrollStore_v1.0.3-2.ipa)" 22 | }, 23 | { 24 | "name": "PojavLauncher", 25 | "category": "Games", 26 | "description": "Minecraft java on iOS with JIT", 27 | "download": "[Download](https://github.com/PojavLauncherTeam/PojavLauncher_iOS/releases/tag/v2.1.3)", 28 | "direct": "-" 29 | }, 30 | { 31 | "name": "TrollNonce", 32 | "category": "Utilities", 33 | "description": "Set your nonce to downgrade with FutureRestore", 34 | "download": "[Download](https://github.com/opa334/TrollNonce/releases)", 35 | "direct": "[Direct](https://github.com/opa334/TrollNonce/releases/latest/download/TrollNonce.tipa)" 36 | }, 37 | { 38 | "name": "TrollTools", 39 | "category": "Customization", 40 | "description": "All-in-one customization tool", 41 | "download": "[Download](https://github.com/sourcelocation/TrollTools/releases)", 42 | "direct": "[Direct](https://github.com/sourcelocation/TrollTools/releases/download/3.0/TrollTools.tipa)" 43 | }, 44 | { 45 | "name": "Apps Manager", 46 | "category": "Utilities", 47 | "description": "Wipe and backup apps", 48 | "download": "[Download](https://www.tigisoftware.com/default/?p=435)", 49 | "direct": "[Direct](https://tigisoftware.com/download/AppsManager_1.7.0.ipa)" 50 | }, 51 | { 52 | "name": "Legizmo", 53 | "category": "Utilities", 54 | "description": "Pair unsupported Apple Watches", 55 | "download": "[Download](https://www.patreon.com/lunotech11)", 56 | "direct": "-" 57 | }, 58 | { 59 | "name": "Cardio", 60 | "category": "Customization", 61 | "description": "Change Apple Pay card images", 62 | "download": "[Download](https://github.com/cisc0disco/Cardio/releases)", 63 | "direct": "[Direct](https://github.com/cisc0disco/Cardio/releases/latest/download/Cardio.ipa)" 64 | }, 65 | { 66 | "name": "JitterBug", 67 | "category": "Utilities", 68 | "description": "JIT with most TrollStore apps", 69 | "download": "[Download](https://github.com/osy/Jitterbug/releases)", 70 | "direct": "[Direct](https://github.com/osy/Jitterbug/releases/latest/download/Jitterbug.ipa)" 71 | }, 72 | { 73 | "name": "Cowabunga", 74 | "category": "Utilities", 75 | "description": "Includes lots of new features and old features from TrollStore", 76 | "download": "[Download](https://github.com/leminlimez/Cowabunga/releases)", 77 | "direct": "[Direct](https://github.com/leminlimez/Cowabunga/releases/download/v8.0.3/Cowabunga.ipa)" 78 | } 79 | ] 80 | -------------------------------------------------------------------------------- /data/footer.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | ###### Automatically generated with <3 by Nebula's Makefile and GitHub Actions -------------------------------------------------------------------------------- /data/header.md: -------------------------------------------------------------------------------- 1 | # TrollStore Apps 2 | 3 | A compiled list of common apps for TrollStore, from the official developers of the apps. 4 | --------------------------------------------------------------------------------