mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-05-01 00:27:54 +02:00
[release] RyukGram v1.2.0
### Features - **Open Instagram links in app (Safari extension)** — bundled Safari web extension (sideload IPA only). Enable in Safari → Extensions; instagram.com links open in the app. - **Localization** — every user-facing string flows through a central translation layer. Globe button in Settings; missing keys fall back to English. Ships English only — see the "Translating RyukGram" section in the README to add more. - **Action buttons** — context-aware menus on feed, reels, and stories (expand, repost, download, copy caption, etc.) with per-context default tap action and carousel/multi-story bulk download - **Enhanced HD downloads** — up to 1080p via DASH + FFmpegKit with quality picker, preview playback, encoding-speed options, and 720p fallback - **Repost**, **media viewer**, **media zoom** (long-press), **download pill** (frosted glass, stacks concurrent downloads) - **Fake location** — overrides CoreLocation app-wide, map picker + saved presets, optional quick-toggle button on the Friends Map - **Messages-only mode** — strips every tab except DM inbox + profile - **Launch tab** — pick which tab the app opens to - Full last active date in DMs — show full date instead of "Active 2h ago" - Custom date format — 12 formats with per-surface toggles (feed, notes/comments/stories, DMs) - Send files in DMs (experimental) - View story mentions - Hide suggested stories - Story tray long-press actions — view HD profile picture from the tray menu - Advance on story reply — auto-skip to next story after sending a reply or reaction - Mark story as seen on reply or emoji reaction - Hide metrics (likes, comments, shares counts) - Hide messages tab - Hide voice/video call buttons in DM thread header (independent toggles) - Disable app haptics - Disable reels tab refresh - Disable disappearing messages mode in DMs - Follow indicator — shows whether the profile user follows you - Copy note text on long press - Zoom profile photo — long press opens full-screen viewer - Notes actions — copy text, download GIF/audio from notes long-press menu - Confirm unfollow - Feed refresh controls — disable background refresh, home button refresh, and home button scroll ### Improvements - Default tap action: added copy URL, repost, and view mentions options; dynamic menu generation per context - Settings pages reordered: General → Feed → Stories → Reels → Messages → Profile → Navigation → Saving → Confirmations - Fake location picker: native Apple Maps-style UI (search, long-press to drop pin, current location) - Liquid glass floating tab bar + dynamic sizing - Upload audio: FFmpegKit re-encode + trim for any audio/video input - Settings reorganized with per-context action button config; new Profile page - Highlight cover: full-screen viewer replaces direct download - Switched HD encoder to `h264_videotoolbox` (hardware) — no GPL FFmpegKit required - Legacy long-press download deprecated (off by default), replaced by action buttons ### Fixes - Hide suggested stories no longer removes followed users' stories on scroll - Settings search bar transparency with liquid glass off; auto-deactivates on push - HD download cancel: tapping pill aborts in-flight downloads + FFmpeg sessions cleanly - Download pill stuck state on background/foreground, progress reset per download - Disappearing messages mode confirmation not firing on swipe - Detailed color picker not working on story draw `†` - DM seen toggle menu not updating after tap - Reel refresh confirmation appearing on first app launch `†` - Reels action button displacing profile pictures on photo reels - Disappearing DM media download (expand, share, save to Photos with progress pill) - Carousel "Download all" not showing item count in feed - Encoding speed setting being ignored for HD downloads - Various upstream SCInsta merges (Meta AI hiding, suggested chats hiding, notes tray) — marked `†` > `†` Merged from upstream [SCInsta](https://github.com/SoCuul/SCInsta) by SoCuul ### Credits - Thanks to [@erupts0](https://github.com/erupts0) (John) for testing and feature suggestions - Thanks to [@euoradan](https://t.me/euoradan) (Radan) for experimental Instagram feature flag research - Safari extension forked/cleaned from [BillyCurtis/OpenInstagramSafariExtension](https://github.com/BillyCurtis/OpenInstagramSafariExtension) ### Known Issues - Preserved unsent messages can't be removed via "Delete for you"; pull-to-refresh clears them (warning available in settings) - "Delete for you" detection uses a ~2s window after the local action — a real unsend landing in that window may be missed (rare)
This commit is contained in:
@@ -1,8 +1,3 @@
|
||||
# Inspired heavily by the following workflows
|
||||
# https://github.com/arichornlover/uYouEnhanced/blob/main/.github/workflows/buildapp.yml
|
||||
# https://github.com/ISnackable/YTCubePlus/blob/main/.github/workflows/Build.yml
|
||||
# https://github.com/BandarHL/BHTwitter/actions/workflows/build.yml
|
||||
|
||||
name: Build and Package RyukGram
|
||||
|
||||
on:
|
||||
@@ -88,7 +83,10 @@ jobs:
|
||||
echo "VERSION=${VERSION}" >> "$GITHUB_ENV"
|
||||
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Build RyukGram tweak for sideloading (as IPA)
|
||||
- name: Setup FFmpegKit
|
||||
run: cd main && ./scripts/setup-ffmpegkit.sh
|
||||
|
||||
- name: Build sideloaded IPA (rootless deb → cyan inject)
|
||||
run: |
|
||||
pip install --force-reinstall https://github.com/asdfzxcvbn/pyzule-rw/archive/main.zip
|
||||
|
||||
@@ -96,22 +94,22 @@ jobs:
|
||||
curl -Lo ipapatch https://github.com/asdfzxcvbn/ipapatch/releases/download/v2.1.3/ipapatch.macos-arm64
|
||||
chmod +x ipapatch
|
||||
export PATH=.:$PATH
|
||||
ls -la
|
||||
|
||||
./build.sh sideload
|
||||
ls -la packages
|
||||
env:
|
||||
THEOS: ${{ github.workspace }}/theos
|
||||
|
||||
- name: Rename IPA to include version info
|
||||
- name: Rename IPA
|
||||
run: |
|
||||
cd main/packages
|
||||
mv "$(ls -t | head -n1)" "RyukGram_sideloaded_v${VERSION}.ipa"
|
||||
IPA=$(ls -t *.ipa | grep -iv instagram | head -n1)
|
||||
[ -n "$IPA" ] && mv "$IPA" "RyukGram_sideloaded_v${VERSION}.ipa"
|
||||
|
||||
- name: Pass package name to upload action
|
||||
id: package_name
|
||||
run: |
|
||||
echo "package=$(ls -t main/packages | head -n1)" >> "$GITHUB_OUTPUT"
|
||||
echo "package=$(ls -t main/packages/RyukGram_sideloaded_v*.ipa | head -n1 | xargs basename)" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Upload Artifact
|
||||
if: ${{ inputs.upload_artifact }}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
name: Build RyukGram tweak for Rootless
|
||||
name: Build RyukGram tweak (rootless + rootful)
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -12,7 +12,7 @@ concurrency:
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
build:
|
||||
name: Build RyukGram Rootless
|
||||
name: Build RyukGram
|
||||
runs-on: macos-latest
|
||||
permissions:
|
||||
contents: write
|
||||
@@ -65,28 +65,41 @@ jobs:
|
||||
echo "VERSION=${VERSION}" >> "$GITHUB_ENV"
|
||||
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Build RyukGram tweak for Rootless
|
||||
- name: Setup FFmpegKit
|
||||
run: cd main && ./scripts/setup-ffmpegkit.sh
|
||||
|
||||
- name: Build rootless
|
||||
run: |
|
||||
cd main
|
||||
ls -la
|
||||
./build.sh rootless
|
||||
ls -la packages
|
||||
cd packages
|
||||
DEB="$(ls -t *-rootless.deb | head -n1)"
|
||||
[ -n "$DEB" ] && mv "$DEB" "com.faroukbmiled.ryukgram_${VERSION}+debug-rootless.deb"
|
||||
ls -la
|
||||
env:
|
||||
THEOS: ${{ github.workspace }}/theos
|
||||
|
||||
- name: Rename deb to include version info
|
||||
- name: Build rootful
|
||||
run: |
|
||||
cd main/packages
|
||||
mv "$(ls -t | head -n1)" "com.faroukbmiled.ryukgram_${VERSION}+debug-rootless.deb"
|
||||
cd main
|
||||
./build.sh rootful
|
||||
cd packages
|
||||
DEB="$(ls -t *-rootful.deb | head -n1)"
|
||||
[ -n "$DEB" ] && mv "$DEB" "com.faroukbmiled.ryukgram_${VERSION}+debug-rootful.deb"
|
||||
ls -la
|
||||
env:
|
||||
THEOS: ${{ github.workspace }}/theos
|
||||
|
||||
- name: Pass package name to upload action
|
||||
id: package_name
|
||||
run: |
|
||||
echo "package=$(ls -t main/packages | head -n1)" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Upload Artifact
|
||||
- name: Upload rootless artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ steps.package_name.outputs.package }}
|
||||
path: ${{ github.workspace }}/main/packages/${{ steps.package_name.outputs.package }}
|
||||
name: com.faroukbmiled.ryukgram_${{ env.VERSION }}+debug-rootless.deb
|
||||
path: ${{ github.workspace }}/main/packages/com.faroukbmiled.ryukgram_${{ env.VERSION }}+debug-rootless.deb
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Upload rootful artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: com.faroukbmiled.ryukgram_${{ env.VERSION }}+debug-rootful.deb
|
||||
path: ${{ github.workspace }}/main/packages/com.faroukbmiled.ryukgram_${{ env.VERSION }}+debug-rootful.deb
|
||||
if-no-files-found: error
|
||||
|
||||
@@ -65,34 +65,41 @@ jobs:
|
||||
echo "VERSION=${VERSION}" >> "$GITHUB_ENV"
|
||||
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Build dylib
|
||||
run: |
|
||||
export THEOS="${{ github.workspace }}/theos"
|
||||
./build.sh dylib
|
||||
ls -la packages/
|
||||
- name: Setup FFmpegKit
|
||||
run: ./scripts/setup-ffmpegkit.sh
|
||||
|
||||
- name: Build rootless deb
|
||||
run: |
|
||||
export THEOS="${{ github.workspace }}/theos"
|
||||
./build.sh rootless
|
||||
cd packages
|
||||
mv "$(ls -t *.deb | head -n1)" "RyukGram_${VERSION}_rootless.deb"
|
||||
DEB="$(ls -t *-rootless.deb | head -n1)"
|
||||
[ -n "$DEB" ] && mv "$DEB" "RyukGram_${VERSION}_rootless.deb"
|
||||
ls -la
|
||||
|
||||
- name: Upload dylib artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: RyukGram_v${{ steps.version.outputs.version }}_dylib
|
||||
path: packages/RyukGram.dylib
|
||||
if-no-files-found: error
|
||||
- name: Build rootful deb
|
||||
run: |
|
||||
export THEOS="${{ github.workspace }}/theos"
|
||||
./build.sh rootful
|
||||
cd packages
|
||||
DEB="$(ls -t *-rootful.deb | head -n1)"
|
||||
[ -n "$DEB" ] && mv "$DEB" "RyukGram_${VERSION}_rootful.deb"
|
||||
ls -la
|
||||
|
||||
- name: Upload deb artifact
|
||||
- name: Upload rootless artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: RyukGram_v${{ steps.version.outputs.version }}_rootless
|
||||
path: packages/RyukGram_${{ env.VERSION }}_rootless.deb
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Upload rootful artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: RyukGram_v${{ steps.version.outputs.version }}_rootful
|
||||
path: packages/RyukGram_${{ env.VERSION }}_rootful.deb
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Check if release
|
||||
id: check_release
|
||||
run: |
|
||||
@@ -105,19 +112,19 @@ jobs:
|
||||
|
||||
- name: Generate release notes
|
||||
if: steps.check_release.outputs.should_release == 'true'
|
||||
id: notes
|
||||
run: |
|
||||
PENDING_FILE="PENDING_CHANGES.md"
|
||||
PREV_TAG=$(git tag --sort=-creatordate | grep -v "v${VERSION}$" | head -n1 || true)
|
||||
|
||||
{
|
||||
echo "## Changelog"
|
||||
echo ""
|
||||
if [ -f "$PENDING_FILE" ]; then
|
||||
# Drop the copy-as-commit header lines (HTML comment + [release] token)
|
||||
# so they don't appear in the published release body.
|
||||
sed -e '/^<!--/,/-->$/d' -e '/^\[release\]/d' "$PENDING_FILE"
|
||||
fi
|
||||
git log -1 --pretty=%B | tail -n +2 | sed -e '/^<!--/,/-->$/d' -e '/^\[release\]/d'
|
||||
echo ""
|
||||
echo "## Downloads"
|
||||
echo ""
|
||||
echo "| File | Description |"
|
||||
echo "|------|-------------|"
|
||||
echo "| \`RyukGram_rootless.deb\` | Rootless .deb (Dopamine/palera1n). Also works for sideloading via Feather/cyan. |"
|
||||
echo "| \`RyukGram_rootful.deb\` | Rootful .deb (unc0ver/checkra1n). |"
|
||||
echo ""
|
||||
if [ -n "$PREV_TAG" ]; then
|
||||
echo "**Full changelog:** [\`${PREV_TAG}\`...\`v${VERSION}\`](https://github.com/${{ github.repository }}/compare/${PREV_TAG}...v${VERSION})"
|
||||
@@ -128,16 +135,14 @@ jobs:
|
||||
|
||||
- name: Create Release
|
||||
if: steps.check_release.outputs.should_release == 'true'
|
||||
id: create_release
|
||||
run: |
|
||||
# Strip [release] from commit subject for the release title
|
||||
SUBJECT=$(git log -1 --pretty=%s | sed 's/\[release\]//g' | xargs)
|
||||
TITLE="${SUBJECT:-RyukGram v${VERSION}}"
|
||||
gh release create "v${VERSION}" \
|
||||
--repo "${{ github.repository }}" \
|
||||
--title "$TITLE" \
|
||||
--notes-file /tmp/release_notes.md \
|
||||
packages/RyukGram.dylib \
|
||||
"packages/RyukGram_${VERSION}_rootless.deb"
|
||||
"packages/RyukGram_${VERSION}_rootless.deb" \
|
||||
"packages/RyukGram_${VERSION}_rootful.deb"
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
|
||||
Reference in New Issue
Block a user