- Renamed project from SCInsta to RyukGram across all user-facing text,

settings UI, build scripts, workflows, control file, and Makefile
- Added built-in sideload compatibility patch:
    keychain access group discovery, SecItem rebinding via fishhook,
    NSFileManager app group fallback, Cloud Kit entitlement patches
- Added fishhook library (modules/fishhook/) for C function rebinding
- Updated README with new features, repo links, and credits
- Updated GitHub Actions workflows for RyukGram naming
- Plist renamed from SCInsta.plist to RyukGram.plist
This commit is contained in:
faroukbmiled
2026-04-03 08:59:13 +01:00
parent 38d8c54e21
commit 4ebd4d2c0d
14 changed files with 656 additions and 112 deletions
+13 -16
View File
@@ -1,4 +1,4 @@
name: Build SCInsta tweak for Rootless
name: Build RyukGram tweak for Rootless
on:
push:
@@ -6,13 +6,13 @@ on:
- 'main'
- 'dev'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build SCInsta Rootless
name: Build RyukGram Rootless
runs-on: macos-latest
permissions:
contents: write
@@ -27,7 +27,7 @@ jobs:
run: brew install ldid dpkg make
- name: Set PATH environment variable
run: echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
run: echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
- name: Setup Theos
uses: actions/checkout@v4
@@ -36,7 +36,7 @@ jobs:
ref: master
path: ${{ github.workspace }}/theos
submodules: recursive
- name: SDK Caching
id: SDK
uses: actions/cache@v4
@@ -58,29 +58,26 @@ jobs:
env:
THEOS: ${{ github.workspace }}/theos
- name: Get SCInsta Version
id: scinsta_version
- name: Get Version
id: version
run: |
SCINSTA_VERSION=$(awk '/Version:/ {print $2}' main/control)
VERSION=$(awk '/Version:/ {print $2}' main/control)
echo "VERSION=${VERSION}" >> "$GITHUB_ENV"
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
echo "SCINSTA_VERSION=${SCINSTA_VERSION}" >> "$GITHUB_ENV"
echo "version=${SCINSTA_VERSION}" >> "$GITHUB_OUTPUT"
- name: Build SCInsta tweak for Rootless
run: |
- name: Build RyukGram tweak for Rootless
run: |
cd main
ls -la
./build.sh rootless
ls -la packages
env:
THEOS: ${{ github.workspace }}/theos
- name: Rename deb to include version info
run: |
cd main/packages
mv "$(ls -t | head -n1)" "com.socuul.scinsta_${SCINSTA_VERSION}+debug-rootless.deb"
mv "$(ls -t | head -n1)" "com.faroukbmiled.ryukgram_${VERSION}+debug-rootless.deb"
- name: Pass package name to upload action
id: package_name