Compare commits
26
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8c33f16412 | ||
|
|
37660b827a | ||
|
|
eedc78fc25 | ||
|
|
752ccb32af | ||
|
|
1a56b6b79c | ||
|
|
736ff260ab | ||
|
|
e1a3109198 | ||
|
|
2e03ab7f12 | ||
|
|
9ff0fee0f9 | ||
|
|
c108b65a4a | ||
|
|
2258342567 | ||
|
|
dcf89e1c73 | ||
|
|
8c66b4b226 | ||
|
|
b7af74d69a | ||
|
|
bb04cee149 | ||
|
|
c59e0fa972 | ||
|
|
bbe6f241ea | ||
|
|
5ffbf4c7d8 | ||
|
|
35374f568d | ||
|
|
ceb5d322ee | ||
|
|
b64f26cdf9 | ||
|
|
76db5ee967 | ||
|
|
20c0f2a823 | ||
|
|
47c5c4d500 | ||
|
|
bcb6c7dba8 | ||
|
|
5fff111ec1 |
@@ -0,0 +1,223 @@
|
|||||||
|
name: Build Tweaks (Helper)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
enable_youpip:
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
default: false
|
||||||
|
|
||||||
|
enable_ytuhd:
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
default: false
|
||||||
|
|
||||||
|
enable_yq:
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
default: false
|
||||||
|
|
||||||
|
enable_ryd:
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
default: false
|
||||||
|
|
||||||
|
enable_ytabc:
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
default: false
|
||||||
|
|
||||||
|
enable_demc:
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
default: false
|
||||||
|
|
||||||
|
tweak_version:
|
||||||
|
type: string
|
||||||
|
required: false
|
||||||
|
default: ""
|
||||||
|
|
||||||
|
tweak_url:
|
||||||
|
type: string
|
||||||
|
required: false
|
||||||
|
default: ""
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-tweaks:
|
||||||
|
name: Build Tweaks
|
||||||
|
runs-on: macos-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: brew install make ldid dpkg
|
||||||
|
|
||||||
|
- name: Set PATH environment variable
|
||||||
|
run: |
|
||||||
|
echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
|
||||||
|
echo "THEOS=${{ github.workspace }}/theos" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Cache Theos
|
||||||
|
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_ytabc || inputs.enable_demc }}
|
||||||
|
id: theos
|
||||||
|
uses: actions/cache@v5
|
||||||
|
env:
|
||||||
|
cache-name: theos_cache_13c2237
|
||||||
|
with:
|
||||||
|
path: theos/
|
||||||
|
key: ${{ env.cache-name }}
|
||||||
|
restore-keys: ${{ env.cache-name }}
|
||||||
|
|
||||||
|
- name: Setup Theos
|
||||||
|
if: ${{ (inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_ytabc || inputs.enable_demc) && steps.theos.outputs.cache-hit != 'true' }}
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
with:
|
||||||
|
repository: theos/theos
|
||||||
|
ref: 13c22376b5d83ff759c1993de0a861e673aa522b
|
||||||
|
path: theos
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: Download iOS SDK
|
||||||
|
if: ${{ (inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_ytabc || inputs.enable_demc) && steps.theos.outputs.cache-hit != 'true' }}
|
||||||
|
run: |
|
||||||
|
git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/theos/sdks/
|
||||||
|
cd sdks
|
||||||
|
git sparse-checkout set --no-cone iPhoneOS16.5.sdk
|
||||||
|
git checkout
|
||||||
|
mv *.sdk $THEOS/sdks
|
||||||
|
|
||||||
|
- name: Download YouTube Plus (by version)
|
||||||
|
if: ${{ inputs.tweak_version != '' }}
|
||||||
|
run: |
|
||||||
|
deb_url="https://github.com/dayanch96/YTLite/releases/download/v${{ inputs.tweak_version }}/com.dvntm.ytlite_${{ inputs.tweak_version }}_iphoneos-arm.deb"
|
||||||
|
wget "$deb_url" --no-verbose -O ytplus.deb
|
||||||
|
|
||||||
|
- name: Download YouTube Plus (by URL)
|
||||||
|
if: ${{ inputs.tweak_url != '' }}
|
||||||
|
run: |
|
||||||
|
wget "${{ inputs.tweak_url }}" --no-verbose -O ytplus.deb
|
||||||
|
file_type=$(file --mime-type -b ytplus.deb)
|
||||||
|
if [[ "$file_type" != "application/vnd.debian.binary-package" ]]; then
|
||||||
|
echo "::error::Validation failed: The file is not a valid DEB file. Detected type: $file_type."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Clone YouTubeHeader
|
||||||
|
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_ytabc || inputs.enable_demc }}
|
||||||
|
run: |
|
||||||
|
if [ -d "$THEOS/include/YouTubeHeader" ]; then
|
||||||
|
cd $THEOS/include/YouTubeHeader && git pull
|
||||||
|
else
|
||||||
|
cd $THEOS/include && git clone --quiet --depth=1 https://github.com/PoomSmart/YouTubeHeader.git
|
||||||
|
fi
|
||||||
|
if [ "${{ inputs.enable_demc }}" = "true" ]; then
|
||||||
|
rm -rf "$THEOS/include/YTHeaders"
|
||||||
|
cp -r "$THEOS/include/YouTubeHeader" "$THEOS/include/YTHeaders"
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Clone PSHeader
|
||||||
|
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_ytabc || inputs.enable_demc }}
|
||||||
|
run: |
|
||||||
|
if [ -d "$THEOS/include/PSHeader" ]; then
|
||||||
|
cd $THEOS/include/PSHeader && git pull
|
||||||
|
else
|
||||||
|
cd $THEOS/include && git clone --quiet --depth=1 https://github.com/PoomSmart/PSHeader.git
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Clone YouPiP
|
||||||
|
if: ${{ inputs.enable_youpip }}
|
||||||
|
run: git clone --quiet --depth=1 https://github.com/PoomSmart/YouPiP.git
|
||||||
|
|
||||||
|
- name: Clone YTUHD
|
||||||
|
if: ${{ inputs.enable_ytuhd }}
|
||||||
|
run: git clone --quiet --depth=1 https://github.com/Tonwalter888/YTUHD.git
|
||||||
|
|
||||||
|
- name: Clone Return-YouTube-Dislikes
|
||||||
|
if: ${{ inputs.enable_ryd }}
|
||||||
|
run: git clone --quiet --depth=1 https://github.com/PoomSmart/Return-YouTube-Dislikes.git
|
||||||
|
|
||||||
|
- name: Clone YTABConfig
|
||||||
|
if: ${{ inputs.enable_ytabc }}
|
||||||
|
run: git clone --quiet --depth=1 https://github.com/PoomSmart/YTABConfig.git
|
||||||
|
|
||||||
|
- name: Clone YouGroupSettings
|
||||||
|
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
||||||
|
run: git clone --quiet --depth=1 https://github.com/PoomSmart/YouGroupSettings.git
|
||||||
|
|
||||||
|
- name: Clone YouQuality
|
||||||
|
if: ${{ inputs.enable_yq }}
|
||||||
|
run: git clone --quiet --depth=1 https://github.com/PoomSmart/YouQuality.git
|
||||||
|
|
||||||
|
- name: Clone YTVideoOverlay
|
||||||
|
if: ${{ inputs.enable_yq || inputs.enable_youpip }}
|
||||||
|
run: git clone --quiet --depth=1 https://github.com/PoomSmart/YTVideoOverlay.git
|
||||||
|
|
||||||
|
- name: Clone DontEatMyContent
|
||||||
|
if: ${{ inputs.enable_demc }}
|
||||||
|
run: git clone --quiet --depth=1 https://github.com/therealFoxster/DontEatMyContent.git
|
||||||
|
|
||||||
|
- name: Build YouPiP
|
||||||
|
if: ${{ inputs.enable_youpip }}
|
||||||
|
run: |
|
||||||
|
cd YouPiP && make clean package DEBUG=0 FINALPACKAGE=1
|
||||||
|
mv packages/*.deb ../youpip.deb
|
||||||
|
|
||||||
|
- name: Build YTUHD
|
||||||
|
if: ${{ inputs.enable_ytuhd }}
|
||||||
|
run: |
|
||||||
|
cd YTUHD && make clean package DEBUG=0 FINALPACKAGE=1 ARCHS=arm64
|
||||||
|
mv packages/*.deb ../ytuhd.deb
|
||||||
|
|
||||||
|
- name: Build Return-YouTube-Dislikes
|
||||||
|
if: ${{ inputs.enable_ryd }}
|
||||||
|
run: |
|
||||||
|
cd Return-YouTube-Dislikes && make clean package DEBUG=0 FINALPACKAGE=1
|
||||||
|
mv packages/*.deb ../ryd.deb
|
||||||
|
|
||||||
|
- name: Build YTABConfig
|
||||||
|
if: ${{ inputs.enable_ytabc }}
|
||||||
|
run: |
|
||||||
|
cd YTABConfig && make clean package DEBUG=0 FINALPACKAGE=1
|
||||||
|
mv packages/*.deb ../ytabc.deb
|
||||||
|
|
||||||
|
- name: Build YouGroupSettings
|
||||||
|
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
||||||
|
run: |
|
||||||
|
cd YouGroupSettings && make clean package DEBUG=0 FINALPACKAGE=1
|
||||||
|
mv packages/*.deb ../ygs.deb
|
||||||
|
|
||||||
|
- name: Build YouQuality
|
||||||
|
if: ${{ inputs.enable_yq }}
|
||||||
|
run: |
|
||||||
|
cd YouQuality && make clean package DEBUG=0 FINALPACKAGE=1
|
||||||
|
mv packages/*.deb ../yq.deb
|
||||||
|
|
||||||
|
- name: Build YTVideoOverlay
|
||||||
|
if: ${{ inputs.enable_yq || inputs.enable_youpip }}
|
||||||
|
run: |
|
||||||
|
cd YTVideoOverlay && make clean package DEBUG=0 FINALPACKAGE=1
|
||||||
|
mv packages/*.deb ../ytvo.deb
|
||||||
|
|
||||||
|
- name: Build DontEatMyContent
|
||||||
|
if: ${{ inputs.enable_demc }}
|
||||||
|
run: |
|
||||||
|
cd DontEatMyContent && make clean package DEBUG=0 FINALPACKAGE=1
|
||||||
|
mv packages/*.deb ../demc.deb
|
||||||
|
|
||||||
|
- name: Clone Open in YouTube (Safari extension)
|
||||||
|
run: |
|
||||||
|
git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/BillyCurtis/OpenYouTubeSafariExtension
|
||||||
|
cd OpenYoutubeSafariExtension
|
||||||
|
git sparse-checkout set --no-cone OpenYoutubeSafariExtension.appex
|
||||||
|
git checkout
|
||||||
|
mv *.appex ..
|
||||||
|
|
||||||
|
- name: Upload built debs as artifacts
|
||||||
|
uses: actions/upload-artifact@v6
|
||||||
|
with:
|
||||||
|
name: built-debs
|
||||||
|
path: |
|
||||||
|
*.deb
|
||||||
|
*.appex
|
||||||
|
if-no-files-found: ignore
|
||||||
|
retention-days: 1
|
||||||
+37
-224
@@ -3,7 +3,6 @@ name: Generate TrollFools/Cyan files
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
|
|
||||||
create_cyan:
|
create_cyan:
|
||||||
description: "Generate .cyan file"
|
description: "Generate .cyan file"
|
||||||
type: boolean
|
type: boolean
|
||||||
@@ -40,6 +39,12 @@ on:
|
|||||||
required: true
|
required: true
|
||||||
default: false
|
default: false
|
||||||
|
|
||||||
|
enable_ytabc:
|
||||||
|
description: "Integrate YTABConfig"
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
default: false
|
||||||
|
|
||||||
enable_demc:
|
enable_demc:
|
||||||
description: "Integrate DontEatMyContent"
|
description: "Integrate DontEatMyContent"
|
||||||
type: boolean
|
type: boolean
|
||||||
@@ -48,7 +53,7 @@ on:
|
|||||||
|
|
||||||
tweak_version:
|
tweak_version:
|
||||||
description: "The version of the tweak to use. Enter the version manually from dayanch96/YTLite/releases or leave default"
|
description: "The version of the tweak to use. Enter the version manually from dayanch96/YTLite/releases or leave default"
|
||||||
default: "5.2b2"
|
default: "5.2b4"
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
@@ -69,18 +74,30 @@ concurrency:
|
|||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build-tweaks:
|
||||||
name:
|
uses: ./.github/workflows/_build_tweaks.yml
|
||||||
|
with:
|
||||||
|
enable_youpip: ${{ inputs.enable_youpip }}
|
||||||
|
enable_ytuhd: ${{ inputs.enable_ytuhd }}
|
||||||
|
enable_yq: ${{ inputs.enable_yq }}
|
||||||
|
enable_ryd: ${{ inputs.enable_ryd }}
|
||||||
|
enable_ytabc: ${{ inputs.enable_ytabc }}
|
||||||
|
enable_demc: ${{ inputs.enable_demc }}
|
||||||
|
tweak_version: ${{ inputs.tweak_version }}
|
||||||
|
|
||||||
|
package:
|
||||||
|
name: Generate Cyan/TrollFools
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
needs: build-tweaks
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Main
|
- name: Download built debs
|
||||||
uses: actions/checkout@v4.1.1
|
uses: actions/download-artifact@v7
|
||||||
with:
|
with:
|
||||||
path: main
|
name: built-debs
|
||||||
submodules: recursive
|
path: ${{ github.workspace }}
|
||||||
|
|
||||||
- name: Check Inputs
|
- name: Check Inputs
|
||||||
if: ${{ !inputs.create_cyan && !inputs.create_tf }}
|
if: ${{ !inputs.create_cyan && !inputs.create_tf }}
|
||||||
@@ -89,225 +106,27 @@ jobs:
|
|||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: brew install make ldid dpkg
|
run: brew install dpkg
|
||||||
|
|
||||||
- name: Set PATH environment variable
|
|
||||||
run: echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
|
|
||||||
|
|
||||||
- name: Cache Theos
|
|
||||||
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
|
||||||
id: theos
|
|
||||||
uses: actions/cache@v4
|
|
||||||
env:
|
|
||||||
cache-name: theos_cache_67db2ab
|
|
||||||
with:
|
|
||||||
path: theos/
|
|
||||||
key: ${{ env.cache-name }}
|
|
||||||
restore-keys: ${{ env.cache-name }}
|
|
||||||
|
|
||||||
- name: Setup Theos
|
|
||||||
if: ${{ (inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc) && steps.theos.outputs.cache-hit != 'true' }}
|
|
||||||
uses: actions/checkout@v4.1.7
|
|
||||||
with:
|
|
||||||
repository: theos/theos
|
|
||||||
ref: 67db2ab8d950910161730de77c322658ea3e6b44
|
|
||||||
path: ${{ github.workspace }}/theos
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Download iOS SDK
|
|
||||||
if: ${{ (inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc) && steps.theos.outputs.cache-hit != 'true' }}
|
|
||||||
run: |
|
|
||||||
git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/theos/sdks/
|
|
||||||
cd sdks
|
|
||||||
git sparse-checkout set --no-cone iPhoneOS16.5.sdk
|
|
||||||
git checkout
|
|
||||||
mv *.sdk $THEOS/sdks
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Install cyan
|
- name: Install cyan
|
||||||
if: ${{ inputs.create_cyan }}
|
if: ${{ github.event.inputs.create_cyan }}
|
||||||
run: pipx install --force https://github.com/asdfzxcvbn/pyzule-rw/archive/main.zip
|
run: pipx install --force https://github.com/asdfzxcvbn/pyzule-rw/archive/main.zip
|
||||||
|
|
||||||
- name: Download YouTube Plus
|
|
||||||
id: download_ytp
|
|
||||||
run: |
|
|
||||||
deb_url="https://github.com/dayanch96/YTLite/releases/download/v${{ inputs.tweak_version }}/com.dvntm.ytlite_${{ inputs.tweak_version }}_iphoneos-arm.deb"
|
|
||||||
wget "$deb_url" --no-verbose -O ${{ github.workspace }}/ytplus.deb
|
|
||||||
|
|
||||||
- name: Clone Open in YouTube (Safari extension)
|
|
||||||
if: ${{ inputs.create_cyan }}
|
|
||||||
run: |
|
|
||||||
git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/CokePokes/YoutubeExtensions/
|
|
||||||
cd YoutubeExtensions
|
|
||||||
git sparse-checkout set --no-cone OpenYoutubeSafariExtension.appex
|
|
||||||
git checkout
|
|
||||||
mv *.appex ${{ github.workspace }}
|
|
||||||
|
|
||||||
- name: Clone YouTubeHeader
|
|
||||||
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
if [ -d "$THEOS/include/YouTubeHeader" ]; then
|
|
||||||
echo "YouTubeHeader exists. Pulling latest changes..."
|
|
||||||
cd $THEOS/include/YouTubeHeader
|
|
||||||
git pull
|
|
||||||
else
|
|
||||||
echo "YouTubeHeader does not exist. Cloning repository..."
|
|
||||||
cd $THEOS/include
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouTubeHeader.git
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "${{ inputs.enable_demc }}" = "true" ]; then
|
|
||||||
echo "Copying YouTubeHeader to YTHeaders..."
|
|
||||||
rm -rf "$THEOS/include/YTHeaders"
|
|
||||||
cp -r "$THEOS/include/YouTubeHeader" "$THEOS/include/YTHeaders"
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Clone PSHeader
|
|
||||||
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
if [ -d "$THEOS/include/PSHeader" ]; then
|
|
||||||
echo "PSHeader exists. Pulling latest changes..."
|
|
||||||
cd $THEOS/include/PSHeader
|
|
||||||
git pull
|
|
||||||
else
|
|
||||||
echo "PSHeader does not exist. Cloning repository..."
|
|
||||||
cd $THEOS/include
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/PSHeader.git
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Clone YouPiP
|
|
||||||
if: ${{ inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouPiP.git
|
|
||||||
|
|
||||||
- name: Clone YTUHD
|
|
||||||
if: ${{ inputs.enable_ytuhd }}
|
|
||||||
uses: actions/checkout@v4.1.7
|
|
||||||
with:
|
|
||||||
repository: PoomSmart/YTUHD
|
|
||||||
ref: 0f59b38817d554ab692a0053456319847a6ab1a1
|
|
||||||
path: ${{ github.workspace }}/YTUHD
|
|
||||||
|
|
||||||
- name: Clone Return-YouTube-Dislikes
|
|
||||||
if: ${{ inputs.enable_ryd }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/Return-YouTube-Dislikes.git
|
|
||||||
|
|
||||||
- name: Clone YouGroupSettings
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouGroupSettings.git
|
|
||||||
|
|
||||||
- name: Clone YouQuality
|
|
||||||
if: ${{ inputs.enable_yq }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouQuality.git
|
|
||||||
|
|
||||||
- name: Clone YTVideoOverlay
|
|
||||||
if: ${{ inputs.enable_yq || inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YTVideoOverlay.git
|
|
||||||
|
|
||||||
- name: Clone DontEatMyContent
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 --recurse-submodules https://github.com/therealFoxster/DontEatMyContent.git
|
|
||||||
|
|
||||||
- name: Build YouPiP
|
|
||||||
if: ${{ inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YouPiP
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/youpip.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YTUHD
|
|
||||||
if: ${{ inputs.enable_ytuhd }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YTUHD
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ytuhd.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build Return-YouTube-Dislikes
|
|
||||||
if: ${{ inputs.enable_ryd }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/Return-YouTube-Dislikes
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ryd.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YouGroupSettings
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YouGroupSettings
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ygs.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YouQuality
|
|
||||||
if: ${{ inputs.enable_yq }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YouQuality
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/yq.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YTVideoOverlay
|
|
||||||
if: ${{ inputs.enable_yq || inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YTVideoOverlay
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ytvo.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build DontEatMyContent
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/DontEatMyContent
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/demc.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Generate .cyan file
|
- name: Generate .cyan file
|
||||||
if: ${{ inputs.create_cyan }}
|
if: ${{ github.event.inputs.create_cyan }}
|
||||||
run: |
|
run: |
|
||||||
tweaks="ytplus.deb OpenYoutubeSafariExtension.appex"
|
tweaks="ytplus.deb OpenYoutubeSafariExtension.appex"
|
||||||
|
for f in *.deb; do
|
||||||
for deb in youpip.deb ytuhd.deb ryd.deb ygs.deb yq.deb ytvo.deb demc.deb; do
|
[ -f "$f" ] && tweaks="$tweaks $f"
|
||||||
if [ -f "$deb" ]; then
|
|
||||||
tweaks="$tweaks $deb"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
cgen -uwef $tweaks -n "${{ github.event.inputs.display_name }}" -b ${{ github.event.inputs.bundle_id }} -o cyan_YouTubePlus_${{ github.event.inputs.tweak_version }}.cyan
|
||||||
cgen -uwef $tweaks -n "${{ inputs.display_name }}" -b ${{ inputs.bundle_id }} -o cyan_YouTubePlus_${{ inputs.tweak_version }}.cyan
|
|
||||||
|
|
||||||
- name: Generate .zip file for TrollFools
|
- name: Generate .zip file for TrollFools
|
||||||
if: ${{ inputs.create_tf }}
|
if: ${{ github.event.inputs.create_tf }}
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ytp_tf
|
mkdir -p ytp_tf
|
||||||
|
|
||||||
for f in *.deb; do
|
for f in *.deb; do
|
||||||
if [ -f "$f" ]; then
|
if [ -f "$f" ]; then
|
||||||
echo "Extracting $f..."
|
|
||||||
mkdir -p tmp_deb
|
mkdir -p tmp_deb
|
||||||
dpkg-deb -x "$f" tmp_deb
|
dpkg-deb -x "$f" tmp_deb
|
||||||
find tmp_deb -type f -name "*.dylib" -exec cp -R {} ytp_tf/ \;
|
find tmp_deb -type f -name "*.dylib" -exec cp -R {} ytp_tf/ \;
|
||||||
@@ -315,10 +134,8 @@ jobs:
|
|||||||
rm -rf tmp_deb
|
rm -rf tmp_deb
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "Zipping..."
|
|
||||||
cd ytp_tf
|
cd ytp_tf
|
||||||
zip -r "../TrollFools_YouTubePlus_${{ inputs.tweak_version }}.zip" .
|
zip -r "../TrollFools_YouTubePlus_${{ github.event.inputs.tweak_version }}.zip" .
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf ytp_tf
|
rm -rf ytp_tf
|
||||||
|
|
||||||
@@ -326,21 +143,17 @@ jobs:
|
|||||||
id: filelist
|
id: filelist
|
||||||
run: |
|
run: |
|
||||||
files=""
|
files=""
|
||||||
if [ "${{ inputs.create_cyan }}" = "true" ]; then
|
[ "${{ github.event.inputs.create_cyan }}" = "true" ] && files="${files}cyan_YouTubePlus_${{ github.event.inputs.tweak_version }}.cyan"$'\n'
|
||||||
files="${files}cyan_YouTubePlus_${{ inputs.tweak_version }}.cyan"$'\n'
|
[ "${{ github.event.inputs.create_tf }}" = "true" ] && files="${files}TrollFools_YouTubePlus_${{ github.event.inputs.tweak_version }}.zip"$'\n'
|
||||||
fi
|
|
||||||
if [ "${{ inputs.create_tf }}" = "true" ]; then
|
|
||||||
files="${files}TrollFools_YouTubePlus_${{ inputs.tweak_version }}.zip"$'\n'
|
|
||||||
fi
|
|
||||||
echo -e "files<<EOF" >> $GITHUB_OUTPUT
|
echo -e "files<<EOF" >> $GITHUB_OUTPUT
|
||||||
echo -e "$files" >> $GITHUB_OUTPUT
|
echo -e "$files" >> $GITHUB_OUTPUT
|
||||||
echo "EOF" >> $GITHUB_OUTPUT
|
echo "EOF" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Upload to GitHub Releases
|
- name: Upload to GitHub Releases
|
||||||
uses: softprops/action-gh-release@v2.0.1
|
uses: softprops/action-gh-release@v2.5.0
|
||||||
with:
|
with:
|
||||||
tag_name: ytp-${{ github.run_number }}
|
tag_name: ytp-${{ github.run_number }}
|
||||||
name: YouTubePlus v${{ inputs.tweak_version }}_cyan_trollfools (${{ github.run_number }})
|
name: YouTubePlus v${{ github.event.inputs.tweak_version }}_cyan_trollfools (${{ github.run_number }})
|
||||||
files: ${{ steps.filelist.outputs.files }}
|
files: ${{ steps.filelist.outputs.files }}
|
||||||
draft: true
|
draft: true
|
||||||
|
|
||||||
|
|||||||
+33
-215
@@ -3,7 +3,6 @@ name: Create YouTube Plus app
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
|
|
||||||
enable_youpip:
|
enable_youpip:
|
||||||
description: "Integrate YouPiP"
|
description: "Integrate YouPiP"
|
||||||
type: boolean
|
type: boolean
|
||||||
@@ -28,6 +27,12 @@ on:
|
|||||||
required: true
|
required: true
|
||||||
default: false
|
default: false
|
||||||
|
|
||||||
|
enable_ytabc:
|
||||||
|
description: "Integrate YTABConfig"
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
default: false
|
||||||
|
|
||||||
enable_demc:
|
enable_demc:
|
||||||
description: "Integrate DontEatMyContent"
|
description: "Integrate DontEatMyContent"
|
||||||
type: boolean
|
type: boolean
|
||||||
@@ -42,7 +47,7 @@ on:
|
|||||||
|
|
||||||
tweak_version:
|
tweak_version:
|
||||||
description: "The version of the tweak to use. Enter the version manually from dayanch96/YTLite/releases or leave default"
|
description: "The version of the tweak to use. Enter the version manually from dayanch96/YTLite/releases or leave default"
|
||||||
default: "5.2b2"
|
default: "5.2b4"
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
@@ -69,250 +74,63 @@ concurrency:
|
|||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build-tweaks:
|
||||||
name:
|
uses: ./.github/workflows/_build_tweaks.yml
|
||||||
|
with:
|
||||||
|
enable_youpip: ${{ inputs.enable_youpip }}
|
||||||
|
enable_ytuhd: ${{ inputs.enable_ytuhd }}
|
||||||
|
enable_yq: ${{ inputs.enable_yq }}
|
||||||
|
enable_ryd: ${{ inputs.enable_ryd }}
|
||||||
|
enable_ytabc: ${{ inputs.enable_ytabc }}
|
||||||
|
enable_demc: ${{ inputs.enable_demc }}
|
||||||
|
tweak_version: ${{ inputs.tweak_version }}
|
||||||
|
|
||||||
|
package:
|
||||||
|
name: Package IPA
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
needs: build-tweaks
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Main
|
- name: Download built debs
|
||||||
uses: actions/checkout@v4.1.1
|
uses: actions/download-artifact@v7
|
||||||
with:
|
with:
|
||||||
path: main
|
name: built-debs
|
||||||
submodules: recursive
|
path: ${{ github.workspace }}
|
||||||
|
|
||||||
- name: Hide sensitive inputs
|
- name: Hide sensitive inputs
|
||||||
uses: levibostian/action-hide-sensitive-inputs@v1
|
uses: levibostian/action-hide-sensitive-inputs@v1
|
||||||
with:
|
with:
|
||||||
exclude_inputs: bundle_id,display_name,enable_demc,enable_ryd,enable_youpip,enable_yq,enable_ytuhd,info_note,tweak_version
|
exclude_inputs: bundle_id,display_name,enable_demc,enable_ryd,enable_ytabc,enable_youpip,enable_yq,enable_ytuhd,info_note,tweak_version
|
||||||
|
|
||||||
- name: Download and validate IPA
|
- name: Download and validate IPA
|
||||||
run: |
|
run: |
|
||||||
wget "${{ inputs.ipa_url }}" --no-verbose -O ${{ github.workspace }}/youtube.ipa
|
wget "${{ github.event.inputs.ipa_url }}" --no-verbose -O youtube.ipa
|
||||||
|
file_type=$(file --mime-type -b youtube.ipa)
|
||||||
file_type=$(file --mime-type -b ${{ github.workspace }}/youtube.ipa)
|
|
||||||
|
|
||||||
if [[ "$file_type" != "application/x-ios-app" && "$file_type" != "application/zip" ]]; then
|
if [[ "$file_type" != "application/x-ios-app" && "$file_type" != "application/zip" ]]; then
|
||||||
echo "::error::Validation failed: The downloaded file is not a valid IPA. Detected type: $file_type."
|
echo "::error::Validation failed: The downloaded file is not a valid IPA. Detected type: $file_type."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: brew install make ldid
|
|
||||||
|
|
||||||
- name: Set PATH environment variable
|
|
||||||
run: echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
|
|
||||||
|
|
||||||
- name: Cache Theos
|
|
||||||
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
|
||||||
id: theos
|
|
||||||
uses: actions/cache@v4
|
|
||||||
env:
|
|
||||||
cache-name: theos_cache_67db2ab
|
|
||||||
with:
|
|
||||||
path: theos/
|
|
||||||
key: ${{ env.cache-name }}
|
|
||||||
restore-keys: ${{ env.cache-name }}
|
|
||||||
|
|
||||||
- name: Setup Theos
|
|
||||||
if: ${{ (inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc) && steps.theos.outputs.cache-hit != 'true' }}
|
|
||||||
uses: actions/checkout@v4.1.7
|
|
||||||
with:
|
|
||||||
repository: theos/theos
|
|
||||||
ref: 67db2ab8d950910161730de77c322658ea3e6b44
|
|
||||||
path: ${{ github.workspace }}/theos
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Download iOS SDK
|
|
||||||
if: ${{ (inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc) && steps.theos.outputs.cache-hit != 'true' }}
|
|
||||||
run: |
|
|
||||||
git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/theos/sdks/
|
|
||||||
cd sdks
|
|
||||||
git sparse-checkout set --no-cone iPhoneOS16.5.sdk
|
|
||||||
git checkout
|
|
||||||
mv *.sdk $THEOS/sdks
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Install cyan
|
- name: Install cyan
|
||||||
run: pipx install --force https://github.com/asdfzxcvbn/pyzule-rw/archive/main.zip
|
run: pipx install --force https://github.com/asdfzxcvbn/pyzule-rw/archive/main.zip
|
||||||
|
|
||||||
- name: Download YouTube Plus
|
|
||||||
id: download_ytp
|
|
||||||
run: |
|
|
||||||
deb_url="https://github.com/dayanch96/YTLite/releases/download/v${{ inputs.tweak_version }}/com.dvntm.ytlite_${{ inputs.tweak_version }}_iphoneos-arm.deb"
|
|
||||||
wget "$deb_url" --no-verbose -O ${{ github.workspace }}/ytplus.deb
|
|
||||||
|
|
||||||
- name: Clone Open in YouTube (Safari extension)
|
|
||||||
run: |
|
|
||||||
git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/CokePokes/YoutubeExtensions/
|
|
||||||
cd YoutubeExtensions
|
|
||||||
git sparse-checkout set --no-cone OpenYoutubeSafariExtension.appex
|
|
||||||
git checkout
|
|
||||||
mv *.appex ${{ github.workspace }}
|
|
||||||
|
|
||||||
- name: Clone YouTubeHeader
|
|
||||||
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
if [ -d "$THEOS/include/YouTubeHeader" ]; then
|
|
||||||
echo "YouTubeHeader exists. Pulling latest changes..."
|
|
||||||
cd $THEOS/include/YouTubeHeader
|
|
||||||
git pull
|
|
||||||
else
|
|
||||||
echo "YouTubeHeader does not exist. Cloning repository..."
|
|
||||||
cd $THEOS/include
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouTubeHeader.git
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "${{ inputs.enable_demc }}" = "true" ]; then
|
|
||||||
echo "Copying YouTubeHeader to YTHeaders..."
|
|
||||||
rm -rf "$THEOS/include/YTHeaders"
|
|
||||||
cp -r "$THEOS/include/YouTubeHeader" "$THEOS/include/YTHeaders"
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Clone PSHeader
|
|
||||||
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
if [ -d "$THEOS/include/PSHeader" ]; then
|
|
||||||
echo "PSHeader exists. Pulling latest changes..."
|
|
||||||
cd $THEOS/include/PSHeader
|
|
||||||
git pull
|
|
||||||
else
|
|
||||||
echo "PSHeader does not exist. Cloning repository..."
|
|
||||||
cd $THEOS/include
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/PSHeader.git
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Clone YouPiP
|
|
||||||
if: ${{ inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouPiP.git
|
|
||||||
|
|
||||||
- name: Clone YTUHD
|
|
||||||
if: ${{ inputs.enable_ytuhd }}
|
|
||||||
uses: actions/checkout@v4.1.7
|
|
||||||
with:
|
|
||||||
repository: PoomSmart/YTUHD
|
|
||||||
ref: 0f59b38817d554ab692a0053456319847a6ab1a1
|
|
||||||
path: ${{ github.workspace }}/YTUHD
|
|
||||||
|
|
||||||
- name: Clone Return-YouTube-Dislikes
|
|
||||||
if: ${{ inputs.enable_ryd }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/Return-YouTube-Dislikes.git
|
|
||||||
|
|
||||||
- name: Clone YouGroupSettings
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouGroupSettings.git
|
|
||||||
|
|
||||||
- name: Clone YouQuality
|
|
||||||
if: ${{ inputs.enable_yq }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouQuality.git
|
|
||||||
|
|
||||||
- name: Clone YTVideoOverlay
|
|
||||||
if: ${{ inputs.enable_yq || inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YTVideoOverlay.git
|
|
||||||
|
|
||||||
- name: Clone DontEatMyContent
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 --recurse-submodules https://github.com/therealFoxster/DontEatMyContent.git
|
|
||||||
|
|
||||||
- name: Build YouPiP
|
|
||||||
if: ${{ inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YouPiP
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/youpip.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YTUHD
|
|
||||||
if: ${{ inputs.enable_ytuhd }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YTUHD
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ytuhd.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build Return-YouTube-Dislikes
|
|
||||||
if: ${{ inputs.enable_ryd }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/Return-YouTube-Dislikes
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ryd.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YouGroupSettings
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YouGroupSettings
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ygs.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YouQuality
|
|
||||||
if: ${{ inputs.enable_yq }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YouQuality
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/yq.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YTVideoOverlay
|
|
||||||
if: ${{ inputs.enable_yq || inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YTVideoOverlay
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ytvo.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build DontEatMyContent
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/DontEatMyContent
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/demc.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Inject tweaks into IPA
|
- name: Inject tweaks into IPA
|
||||||
run: |
|
run: |
|
||||||
tweaks="ytplus.deb OpenYoutubeSafariExtension.appex"
|
tweaks="ytplus.deb OpenYoutubeSafariExtension.appex"
|
||||||
|
|
||||||
for f in *.deb; do
|
for f in *.deb; do
|
||||||
if [ -f "$f" ]; then
|
[ -f "$f" ] && tweaks="$tweaks $f"
|
||||||
tweaks="$tweaks $f"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
cyan -i youtube.ipa -o YouTubePlus_${{ github.event.inputs.tweak_version }}.ipa -uwef $tweaks -n "${{ github.event.inputs.display_name }}" -b ${{ github.event.inputs.bundle_id }}
|
||||||
cyan -i youtube.ipa -o YouTubePlus_${{ inputs.tweak_version }}.ipa -uwef $tweaks -n "${{ inputs.display_name }}" -b ${{ inputs.bundle_id }}
|
|
||||||
|
|
||||||
- name: Upload to GitHub Releases
|
- name: Upload to GitHub Releases
|
||||||
uses: softprops/action-gh-release@v2.0.1
|
uses: softprops/action-gh-release@v2.5.0
|
||||||
with:
|
with:
|
||||||
tag_name: ytp-${{ github.run_number }}
|
tag_name: ytp-${{ github.run_number }}
|
||||||
name: YouTubePlus v${{ inputs.tweak_version }} (${{ github.run_number }})
|
name: YouTubePlus v${{ github.event.inputs.tweak_version }} (${{ github.run_number }})
|
||||||
files: YouTubePlus_${{ inputs.tweak_version }}.ipa
|
files: YouTubePlus_${{ github.event.inputs.tweak_version }}.ipa
|
||||||
draft: true
|
draft: true
|
||||||
|
|
||||||
- name: Output Release URL
|
- name: Output Release URL
|
||||||
|
|||||||
+30
-217
@@ -3,7 +3,6 @@ name: '[BETA] Create YouTube Plus app'
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
|
|
||||||
enable_youpip:
|
enable_youpip:
|
||||||
description: "Integrate YouPiP"
|
description: "Integrate YouPiP"
|
||||||
type: boolean
|
type: boolean
|
||||||
@@ -28,6 +27,12 @@ on:
|
|||||||
required: true
|
required: true
|
||||||
default: false
|
default: false
|
||||||
|
|
||||||
|
enable_ytabc:
|
||||||
|
description: "Integrate YTABConfig"
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
default: false
|
||||||
|
|
||||||
enable_demc:
|
enable_demc:
|
||||||
description: "Integrate DontEatMyContent"
|
description: "Integrate DontEatMyContent"
|
||||||
type: boolean
|
type: boolean
|
||||||
@@ -69,251 +74,59 @@ concurrency:
|
|||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build-tweaks:
|
||||||
name:
|
uses: ./.github/workflows/_build_tweaks.yml
|
||||||
|
with:
|
||||||
|
enable_youpip: ${{ inputs.enable_youpip }}
|
||||||
|
enable_ytuhd: ${{ inputs.enable_ytuhd }}
|
||||||
|
enable_yq: ${{ inputs.enable_yq }}
|
||||||
|
enable_ryd: ${{ inputs.enable_ryd }}
|
||||||
|
enable_ytabc: ${{ inputs.enable_ytabc }}
|
||||||
|
enable_demc: ${{ inputs.enable_demc }}
|
||||||
|
tweak_url: ${{ inputs.tweak_url }}
|
||||||
|
|
||||||
|
package:
|
||||||
|
name: Package IPA (Beta)
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
needs: build-tweaks
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Main
|
- name: Download built debs
|
||||||
uses: actions/checkout@v4.1.1
|
uses: actions/download-artifact@v7
|
||||||
with:
|
with:
|
||||||
path: main
|
name: built-debs
|
||||||
submodules: recursive
|
path: ${{ github.workspace }}
|
||||||
|
|
||||||
- name: Hide sensitive inputs
|
- name: Hide sensitive inputs
|
||||||
uses: levibostian/action-hide-sensitive-inputs@v1
|
uses: levibostian/action-hide-sensitive-inputs@v1
|
||||||
with:
|
with:
|
||||||
exclude_inputs: bundle_id,display_name,enable_demc,enable_ryd,enable_youpip,enable_yq,enable_ytuhd,info_note
|
exclude_inputs: bundle_id,display_name,enable_demc,enable_ryd,enable_ytabc,enable_youpip,enable_yq,enable_ytuhd,info_note
|
||||||
|
|
||||||
- name: Download and validate IPA
|
- name: Download and validate IPA
|
||||||
run: |
|
run: |
|
||||||
wget "${{ inputs.ipa_url }}" --no-verbose -O ${{ github.workspace }}/youtube.ipa
|
wget "${{ github.event.inputs.ipa_url }}" --no-verbose -O youtube.ipa
|
||||||
|
file_type=$(file --mime-type -b youtube.ipa)
|
||||||
file_type=$(file --mime-type -b ${{ github.workspace }}/youtube.ipa)
|
|
||||||
|
|
||||||
if [[ "$file_type" != "application/x-ios-app" && "$file_type" != "application/zip" ]]; then
|
if [[ "$file_type" != "application/x-ios-app" && "$file_type" != "application/zip" ]]; then
|
||||||
echo "::error::Validation failed: The downloaded file is not a valid IPA. Detected type: $file_type."
|
echo "::error::Validation failed: The downloaded file is not a valid IPA. Detected type: $file_type."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Download and validate tweak
|
|
||||||
run: |
|
|
||||||
wget "${{ inputs.tweak_url }}" --no-verbose -O ${{ github.workspace }}/ytplus.deb
|
|
||||||
|
|
||||||
file_type=$(file --mime-type -b ${{ github.workspace }}/ytplus.deb)
|
|
||||||
|
|
||||||
if [[ "$file_type" != "application/vnd.debian.binary-package" ]]; then
|
|
||||||
echo "::error::Validation failed: The file is not a valid DEB file. Detected type: $file_type."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: brew install make ldid
|
|
||||||
|
|
||||||
- name: Set PATH environment variable
|
|
||||||
run: echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
|
|
||||||
|
|
||||||
- name: Cache Theos
|
|
||||||
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
|
||||||
id: theos
|
|
||||||
uses: actions/cache@v4
|
|
||||||
env:
|
|
||||||
cache-name: theos_cache_67db2ab
|
|
||||||
with:
|
|
||||||
path: theos/
|
|
||||||
key: ${{ env.cache-name }}
|
|
||||||
restore-keys: ${{ env.cache-name }}
|
|
||||||
|
|
||||||
- name: Setup Theos
|
|
||||||
if: ${{ (inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc) && steps.theos.outputs.cache-hit != 'true' }}
|
|
||||||
uses: actions/checkout@v4.1.7
|
|
||||||
with:
|
|
||||||
repository: theos/theos
|
|
||||||
ref: 67db2ab8d950910161730de77c322658ea3e6b44
|
|
||||||
path: ${{ github.workspace }}/theos
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- name: Download iOS SDK
|
|
||||||
if: ${{ (inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc) && steps.theos.outputs.cache-hit != 'true' }}
|
|
||||||
run: |
|
|
||||||
git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/theos/sdks/
|
|
||||||
cd sdks
|
|
||||||
git sparse-checkout set --no-cone iPhoneOS16.5.sdk
|
|
||||||
git checkout
|
|
||||||
mv *.sdk $THEOS/sdks
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Install cyan
|
- name: Install cyan
|
||||||
run: pipx install --force https://github.com/asdfzxcvbn/pyzule-rw/archive/main.zip
|
run: pipx install --force https://github.com/asdfzxcvbn/pyzule-rw/archive/main.zip
|
||||||
|
|
||||||
- name: Clone Open in YouTube (Safari extension)
|
|
||||||
run: |
|
|
||||||
git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/CokePokes/YoutubeExtensions/
|
|
||||||
cd YoutubeExtensions
|
|
||||||
git sparse-checkout set --no-cone OpenYoutubeSafariExtension.appex
|
|
||||||
git checkout
|
|
||||||
mv *.appex ${{ github.workspace }}
|
|
||||||
|
|
||||||
- name: Clone YouTubeHeader
|
|
||||||
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
if [ -d "$THEOS/include/YouTubeHeader" ]; then
|
|
||||||
echo "YouTubeHeader exists. Pulling latest changes..."
|
|
||||||
cd $THEOS/include/YouTubeHeader
|
|
||||||
git pull
|
|
||||||
else
|
|
||||||
echo "YouTubeHeader does not exist. Cloning repository..."
|
|
||||||
cd $THEOS/include
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouTubeHeader.git
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "${{ inputs.enable_demc }}" = "true" ]; then
|
|
||||||
echo "Copying YouTubeHeader to YTHeaders..."
|
|
||||||
rm -rf "$THEOS/include/YTHeaders"
|
|
||||||
cp -r "$THEOS/include/YouTubeHeader" "$THEOS/include/YTHeaders"
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Clone PSHeader
|
|
||||||
if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
if [ -d "$THEOS/include/PSHeader" ]; then
|
|
||||||
echo "PSHeader exists. Pulling latest changes..."
|
|
||||||
cd $THEOS/include/PSHeader
|
|
||||||
git pull
|
|
||||||
else
|
|
||||||
echo "PSHeader does not exist. Cloning repository..."
|
|
||||||
cd $THEOS/include
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/PSHeader.git
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Clone YouPiP
|
|
||||||
if: ${{ inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouPiP.git
|
|
||||||
|
|
||||||
- name: Clone YTUHD
|
|
||||||
if: ${{ inputs.enable_ytuhd }}
|
|
||||||
uses: actions/checkout@v4.1.7
|
|
||||||
with:
|
|
||||||
repository: PoomSmart/YTUHD
|
|
||||||
ref: 0f59b38817d554ab692a0053456319847a6ab1a1
|
|
||||||
path: ${{ github.workspace }}/YTUHD
|
|
||||||
|
|
||||||
- name: Clone Return-YouTube-Dislikes
|
|
||||||
if: ${{ inputs.enable_ryd }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/Return-YouTube-Dislikes.git
|
|
||||||
|
|
||||||
- name: Clone YouGroupSettings
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouGroupSettings.git
|
|
||||||
|
|
||||||
- name: Clone YouQuality
|
|
||||||
if: ${{ inputs.enable_yq }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YouQuality.git
|
|
||||||
|
|
||||||
- name: Clone YTVideoOverlay
|
|
||||||
if: ${{ inputs.enable_yq || inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 https://github.com/PoomSmart/YTVideoOverlay.git
|
|
||||||
|
|
||||||
- name: Clone DontEatMyContent
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}
|
|
||||||
git clone --quiet --depth=1 --recurse-submodules https://github.com/therealFoxster/DontEatMyContent.git
|
|
||||||
|
|
||||||
- name: Build YouPiP
|
|
||||||
if: ${{ inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YouPiP
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/youpip.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YTUHD
|
|
||||||
if: ${{ inputs.enable_ytuhd }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YTUHD
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ytuhd.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build Return-YouTube-Dislikes
|
|
||||||
if: ${{ inputs.enable_ryd }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/Return-YouTube-Dislikes
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ryd.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YouGroupSettings
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YouGroupSettings
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ygs.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YouQuality
|
|
||||||
if: ${{ inputs.enable_yq }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YouQuality
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/yq.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build YTVideoOverlay
|
|
||||||
if: ${{ inputs.enable_yq || inputs.enable_youpip }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/YTVideoOverlay
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/ytvo.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Build DontEatMyContent
|
|
||||||
if: ${{ inputs.enable_demc }}
|
|
||||||
run: |
|
|
||||||
cd ${{ github.workspace }}/DontEatMyContent
|
|
||||||
make clean package DEBUG=0 FINALPACKAGE=1
|
|
||||||
mv packages/*.deb ${{ github.workspace }}/demc.deb
|
|
||||||
env:
|
|
||||||
THEOS: ${{ github.workspace }}/theos
|
|
||||||
|
|
||||||
- name: Inject tweaks into IPA
|
- name: Inject tweaks into IPA
|
||||||
run: |
|
run: |
|
||||||
tweaks="ytplus.deb OpenYoutubeSafariExtension.appex"
|
tweaks="ytplus.deb OpenYoutubeSafariExtension.appex"
|
||||||
|
|
||||||
for f in *.deb; do
|
for f in *.deb; do
|
||||||
if [ -f "$f" ]; then
|
[ -f "$f" ] && tweaks="$tweaks $f"
|
||||||
tweaks="$tweaks $f"
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
cyan -i youtube.ipa -o YouTubePlus_Beta.ipa -uwef $tweaks -n "${{ github.event.inputs.display_name }}" -b ${{ github.event.inputs.bundle_id }}
|
||||||
cyan -i youtube.ipa -o YouTubePlus_Beta.ipa -uwef $tweaks -n "${{ inputs.display_name }}" -b ${{ inputs.bundle_id }}
|
|
||||||
|
|
||||||
- name: Upload to GitHub Releases
|
- name: Upload to GitHub Releases
|
||||||
uses: softprops/action-gh-release@v2.0.1
|
uses: softprops/action-gh-release@v2.5.0
|
||||||
with:
|
with:
|
||||||
tag_name: ytp-beta-${{ github.run_number }}
|
tag_name: ytp-beta-${{ github.run_number }}
|
||||||
name: YouTubePlus Beta (${{ github.run_number }})
|
name: YouTubePlus Beta (${{ github.run_number }})
|
||||||
|
|||||||
+1
-1
@@ -19,7 +19,7 @@
|
|||||||
</details>
|
</details>
|
||||||
<br>
|
<br>
|
||||||
<details>
|
<details>
|
||||||
<summary>La riproduzione non funziona più su YouTube Plus sideloaded. Cosa dovrei fare?</summary>
|
<summary>Il Cast non funziona più su YouTube Plus sideloaded. Cosa dovrei fare?</summary>
|
||||||
<p>Finché non si risolve il problema, è consigliato usare YouTube 20.14.1 o inferiori.</p>
|
<p>Finché non si risolve il problema, è consigliato usare YouTube 20.14.1 o inferiori.</p>
|
||||||
</details>
|
</details>
|
||||||
<br>
|
<br>
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ Review by [@qbap](https://github.com/qbap) on ONE Jailbreak: https://onejailbrea
|
|||||||
<summary>How to build the YouTube Plus app</summary>
|
<summary>How to build the YouTube Plus app</summary>
|
||||||
<ol>
|
<ol>
|
||||||
<li>Click on <strong>Sync fork</strong>, and if your branch is out-of-date, click on <strong>Update branch</strong>.</li>
|
<li>Click on <strong>Sync fork</strong>, and if your branch is out-of-date, click on <strong>Update branch</strong>.</li>
|
||||||
<li>Navigate to the <strong>Actions tab</strong> in your forked repository and select <strong>Build YouTube Plus app</strong>.</li>
|
<li>Navigate to the <strong>Actions tab</strong> in your forked repository and select <strong>Create YouTube Plus app</strong>.</li>
|
||||||
<li>Click the <strong>Run workflow</strong> button located on the right side.</li>
|
<li>Click the <strong>Run workflow</strong> button located on the right side.</li>
|
||||||
<li>Mark or unmark the tweaks you want to integrate. Learn more about them in the <a href="#tweak-integration-details">Tweak Integration Details</a> section.</li>
|
<li>Mark or unmark the tweaks you want to integrate. Learn more about them in the <a href="#tweak-integration-details">Tweak Integration Details</a> section.</li>
|
||||||
<li>Prepare a decrypted .ipa file <em>(we cannot provide this due to legal reasons)</em>, then upload it to a file provider (e.g., filebin.net, filemail.com, or Dropbox is recommended). Paste the URL of the decrypted IPA file in the provided field.</li>
|
<li>Prepare a decrypted .ipa file <em>(we cannot provide this due to legal reasons)</em>, then upload it to a file provider (e.g., filebin.net, filemail.com, or Dropbox is recommended). Paste the URL of the decrypted IPA file in the provided field.</li>
|
||||||
@@ -103,9 +103,9 @@ Review by [@qbap](https://github.com/qbap) on ONE Jailbreak: https://onejailbrea
|
|||||||
|
|
||||||
## Supported YouTube Version
|
## Supported YouTube Version
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>Latest confirmed:</strong> <em>20.29.3</em></li>
|
<li><strong>Latest confirmed:</strong> <em>20.42.3</em></li>
|
||||||
<li><strong>Date tested:</strong> <em>July 25, 2025</em></li>
|
<li><strong>Date tested:</strong> <em>Nov 5, 2025</em></li>
|
||||||
<li><strong>YouTube Plus:</strong> <em>5.2 beta 2</em></li>
|
<li><strong>YouTube Plus:</strong> <em>5.2 beta 4</em></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
## Tweak Integration Details
|
## Tweak Integration Details
|
||||||
|
|||||||
@@ -90,6 +90,22 @@
|
|||||||
],
|
],
|
||||||
"class": "DepictionStackView",
|
"class": "DepictionStackView",
|
||||||
"tabname": "Details"
|
"tabname": "Details"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"views": [
|
||||||
|
{
|
||||||
|
"class": "DepictionTableButtonView",
|
||||||
|
"title": "My Patreon",
|
||||||
|
"action": "https://patreon.com/dayanch96"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"class": "DepictionTableButtonView",
|
||||||
|
"title": "Buy me a coffee",
|
||||||
|
"action": "https://buymeacoffee.com/dayanch96"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"class": "DepictionStackView",
|
||||||
|
"tabname": "Support"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -337,8 +337,8 @@
|
|||||||
"Interface" = "واجهة المستخدم";
|
"Interface" = "واجهة المستخدم";
|
||||||
"OledTheme" = "ثيم OLED";
|
"OledTheme" = "ثيم OLED";
|
||||||
"OledThemeDesc" = "يحول جميع الألوان الداكنة إلى الأسود.";
|
"OledThemeDesc" = "يحول جميع الألوان الداكنة إلى الأسود.";
|
||||||
"OledKeyboard" = "لوحة مفاتيح Oled";
|
"OledKeyboard" = "لوحة مفاتيح OLED";
|
||||||
"OledKeyboardDesc" = "يطبق سمة oled السوداء على لوحة المفاتيح المظلمة";
|
"OledKeyboardDesc" = "يطبق سمة OLED السوداء على لوحة المفاتيح المظلمة";
|
||||||
"NoSearchHistory" = "إخفاء سجل البحث";
|
"NoSearchHistory" = "إخفاء سجل البحث";
|
||||||
"NoSearchHistoryDesc" = "يخفي سجل البحث والاقتراحات بصريًا. ملاحظة: سيظل سجل البحث الخاص بك متاحًا في عملاء YouTube الآخرين.";
|
"NoSearchHistoryDesc" = "يخفي سجل البحث والاقتراحات بصريًا. ملاحظة: سيظل سجل البحث الخاص بك متاحًا في عملاء YouTube الآخرين.";
|
||||||
"StickSortComments" = "تثبيت رأس التعليقات";
|
"StickSortComments" = "تثبيت رأس التعليقات";
|
||||||
|
|||||||
@@ -335,10 +335,10 @@
|
|||||||
|
|
||||||
/* Interface options */
|
/* Interface options */
|
||||||
"Interface" = "Interface";
|
"Interface" = "Interface";
|
||||||
"OledTheme" = "Oled theme";
|
"OledTheme" = "OLED theme";
|
||||||
"OledThemeDesc" = "Turns all dark colors to black";
|
"OledThemeDesc" = "Turns all dark colors to black";
|
||||||
"OledKeyboard" = "Oled keyboard";
|
"OledKeyboard" = "OLED keyboard";
|
||||||
"OledKeyboardDesc" = "Applies oled black theme for dark keyboard";
|
"OledKeyboardDesc" = "Applies OLED black theme for dark keyboard";
|
||||||
"NoSearchHistory" = "Hide search history";
|
"NoSearchHistory" = "Hide search history";
|
||||||
"NoSearchHistoryDesc" = "Visually hides search history and suggestions. Note: Your search history will still be accessible in your other YouTube clients.";
|
"NoSearchHistoryDesc" = "Visually hides search history and suggestions. Note: Your search history will still be accessible in your other YouTube clients.";
|
||||||
"StickSortComments" = "Stick comments header";
|
"StickSortComments" = "Stick comments header";
|
||||||
|
|||||||
@@ -187,7 +187,7 @@
|
|||||||
|
|
||||||
"Player.Actions" = "Acciones";
|
"Player.Actions" = "Acciones";
|
||||||
"DefaultPlaybackRate" = "Velocidad de reproducción predeterminada";
|
"DefaultPlaybackRate" = "Velocidad de reproducción predeterminada";
|
||||||
"DefaultPlaybackRateDesc" = "Overrides the default playback speed";
|
"DefaultPlaybackRateDesc" = "Anula la velocidad de reproducción predeterminada";
|
||||||
"BackgroundPlayback" = "Reproducción en segundo plano";
|
"BackgroundPlayback" = "Reproducción en segundo plano";
|
||||||
"BackgroundPlaybackDesc" = "Permite la reproducción en segundo plano.";
|
"BackgroundPlaybackDesc" = "Permite la reproducción en segundo plano.";
|
||||||
"Miniplayer" = "Activar mini reproductor";
|
"Miniplayer" = "Activar mini reproductor";
|
||||||
@@ -335,10 +335,10 @@
|
|||||||
|
|
||||||
/* Interface options */
|
/* Interface options */
|
||||||
"Interface" = "Interfaz";
|
"Interface" = "Interfaz";
|
||||||
"OledTheme" = "Tema Oled";
|
"OledTheme" = "Tema OLED";
|
||||||
"OledThemeDesc" = "Convierte todos los colores oscuros en negro";
|
"OledThemeDesc" = "Convierte todos los colores oscuros en negro";
|
||||||
"OledKeyboard" = "Teclado Oled";
|
"OledKeyboard" = "Teclado OLED";
|
||||||
"OledKeyboardDesc" = "Aplica el tema negro oled al teclado oscuro";
|
"OledKeyboardDesc" = "Aplica el tema negro OLED al teclado oscuro";
|
||||||
"NoSearchHistory" = "Ocultar el historial de búsqueda";
|
"NoSearchHistory" = "Ocultar el historial de búsqueda";
|
||||||
"NoSearchHistoryDesc" = "Oculta visualmente el historial de búsqueda y las sugerencias. Nota: El historial de búsqueda seguirá siendo accesible en otros clientes de YouTube.";
|
"NoSearchHistoryDesc" = "Oculta visualmente el historial de búsqueda y las sugerencias. Nota: El historial de búsqueda seguirá siendo accesible en otros clientes de YouTube.";
|
||||||
"StickSortComments" = "Pegar cabecera de comentarios";
|
"StickSortComments" = "Pegar cabecera de comentarios";
|
||||||
|
|||||||
@@ -337,8 +337,8 @@
|
|||||||
"Interface" = "Interface";
|
"Interface" = "Interface";
|
||||||
"OledTheme" = "Thème OLED";
|
"OledTheme" = "Thème OLED";
|
||||||
"OledThemeDesc" = "Change toutes les couleurs sombres en noir OLED";
|
"OledThemeDesc" = "Change toutes les couleurs sombres en noir OLED";
|
||||||
"OledKeyboard" = "Oled keyboard";
|
"OledKeyboard" = "OLED keyboard";
|
||||||
"OledKeyboardDesc" = "Applies oled black theme for dark keyboard";
|
"OledKeyboardDesc" = "Applies OLED black theme for dark keyboard";
|
||||||
"NoSearchHistory" = "Masquer l'historique de recherche";
|
"NoSearchHistory" = "Masquer l'historique de recherche";
|
||||||
"NoSearchHistoryDesc" = "Masque visuellement l'historique de recherche et les suggestions. Note : Votre historique de recherche sera toujours accessible dans vos autres clients YouTube.";
|
"NoSearchHistoryDesc" = "Masque visuellement l'historique de recherche et les suggestions. Note : Votre historique de recherche sera toujours accessible dans vos autres clients YouTube.";
|
||||||
"StickSortComments" = "Épingler l'en-tête des commentaires";
|
"StickSortComments" = "Épingler l'en-tête des commentaires";
|
||||||
|
|||||||
@@ -19,9 +19,9 @@
|
|||||||
|
|
||||||
"PostDownloadAction" = "ダウンロード後の動作";
|
"PostDownloadAction" = "ダウンロード後の動作";
|
||||||
"PostDownloadDesc" = "選択した動作は、動画のダウンロードが正常に完了すると実行されます。";
|
"PostDownloadDesc" = "選択した動作は、動画のダウンロードが正常に完了すると実行されます。";
|
||||||
"SaveToPhotos" = "「写真」アプリに保存";
|
"SaveToPhotos" = "[写真] アプリに保存";
|
||||||
"Share" = "共有";
|
"Share" = "共有";
|
||||||
"Copy" = "Copy";
|
"Copy" = "コピー";
|
||||||
"Ask" = "確認";
|
"Ask" = "確認";
|
||||||
"DownloadCompleted" = "ダウンロード完了";
|
"DownloadCompleted" = "ダウンロード完了";
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
"EmbedThumbnailsToVideos" = "サムネイルを埋め込む";
|
"EmbedThumbnailsToVideos" = "サムネイルを埋め込む";
|
||||||
"EmbedThumbnailsToVideosDesc" = "動画のサムネイルをメタデータのサムネイルとして埋め込みます。";
|
"EmbedThumbnailsToVideosDesc" = "動画のサムネイルをメタデータのサムネイルとして埋め込みます。";
|
||||||
"EmbedCapsToVideos" = "字幕を埋め込む";
|
"EmbedCapsToVideos" = "字幕を埋め込む";
|
||||||
"EmbedCapsToVideosDesc" = "選択した字幕/キャプションを動画に埋め込みます。";
|
"EmbedCapsToVideosDesc" = "選択したキャプション/字幕を動画に埋め込みます。";
|
||||||
"EmbedAutoGenCaps" = "自動生成の字幕";
|
"EmbedAutoGenCaps" = "自動生成の字幕";
|
||||||
"EmbedAutoGenCapsDesc" = "自動生成、翻訳、および自動翻訳された字幕を字幕リストに追加します。";
|
"EmbedAutoGenCapsDesc" = "自動生成、翻訳、および自動翻訳された字幕を字幕リストに追加します。";
|
||||||
"DownloadCaptions" = "字幕をダウンロード";
|
"DownloadCaptions" = "字幕をダウンロード";
|
||||||
@@ -49,11 +49,11 @@
|
|||||||
|
|
||||||
/* Nav bar options */
|
/* Nav bar options */
|
||||||
"Navbar" = "ナビゲーションバー(上部のボタン類)";
|
"Navbar" = "ナビゲーションバー(上部のボタン類)";
|
||||||
"RemoveCast" = "キャストボタンを非表示";
|
"RemoveCast" = "[キャスト] ボタンを非表示";
|
||||||
"RemoveCastDesc" = "ナビゲーションバーから [キャスト] ボタンを非表示にします。";
|
"RemoveCastDesc" = "ナビゲーションバーから [キャスト] ボタンを非表示にします。";
|
||||||
"RemoveNotifications" = "通知ボタンを非表示";
|
"RemoveNotifications" = "[通知] ボタンを非表示";
|
||||||
"RemoveNotificationsDesc" = "ナビゲーションバーから [通知] ボタンを非表示にします。";
|
"RemoveNotificationsDesc" = "ナビゲーションバーから [通知] ボタンを非表示にします。";
|
||||||
"RemoveSearch" = "検索ボタンを非表示";
|
"RemoveSearch" = "[検索] ボタンを非表示";
|
||||||
"RemoveSearchDesc" = "ナビゲーションバーから [検索] ボタンを非表示にします。";
|
"RemoveSearchDesc" = "ナビゲーションバーから [検索] ボタンを非表示にします。";
|
||||||
"RemoveVoiceSearch" = "音声検索ボタンを非表示";
|
"RemoveVoiceSearch" = "音声検索ボタンを非表示";
|
||||||
"RemoveVoiceSearchDesc" = "ナビゲーションバーから音声検索のボタンを非表示にします。";
|
"RemoveVoiceSearchDesc" = "ナビゲーションバーから音声検索のボタンを非表示にします。";
|
||||||
@@ -92,17 +92,17 @@
|
|||||||
/* Player options */
|
/* Player options */
|
||||||
"Player" = "プレーヤー";
|
"Player" = "プレーヤー";
|
||||||
"PlaybackQualityOnWiFi" = "WiFi での再生画質";
|
"PlaybackQualityOnWiFi" = "WiFi での再生画質";
|
||||||
"PlaybackQualityOnWiFiDesc" = "Automatically applies the selected quality when streaming over Wi-Fi";
|
"PlaybackQualityOnWiFiDesc" = "Wi-Fi経由でストリーミングする際に選択した画質を自動的に適用します。";
|
||||||
"PlaybackQualityOnCellular" = "モバイルデータ通信での再生画質";
|
"PlaybackQualityOnCellular" = "モバイルデータ通信での再生画質";
|
||||||
"PlaybackQualityOnCellularDesc" = "Automatically applies the selected quality when streaming over mobile data";
|
"PlaybackQualityOnCellularDesc" = "モバイルデータ通信でストリーミングする際に選択した画質を自動的に適用します。";
|
||||||
|
|
||||||
"PreferredCaptions" = "優先する字幕";
|
"PreferredCaptions" = "優先する字幕";
|
||||||
"Original" = "オリジナル";
|
"Original" = "オリジナル";
|
||||||
"Custom" = "手動で選択";
|
"Custom" = "手動で選択";
|
||||||
"CustomAudioTrack" = "音声トラックを選択";
|
"CustomAudioTrack" = "音声トラックを選択";
|
||||||
"CustomAudioTrackDesc" = "Specifies the preferred audio track language to use for playback, if available";
|
"CustomAudioTrackDesc" = "再生時に使用する優先オーディオトラック言語を指定します (利用可能な場合)。";
|
||||||
"CustomCaptions" = "字幕を選択";
|
"CustomCaptions" = "字幕を選択";
|
||||||
"CustomCaptionsDesc" = "Specifies the preferred captions language to display, if available";
|
"CustomCaptionsDesc" = "利用可能な場合は、表示する字幕の言語を指定します。";
|
||||||
"AutoGenCaps" = "自動生成の字幕";
|
"AutoGenCaps" = "自動生成の字幕";
|
||||||
"AutoGenCapsDesc" = "選択した字幕が見つからない場合、YouTube Plus はオリジナル字幕の翻訳または自動生成字幕の翻訳を選択します。";
|
"AutoGenCapsDesc" = "選択した字幕が見つからない場合、YouTube Plus はオリジナル字幕の翻訳または自動生成字幕の翻訳を選択します。";
|
||||||
|
|
||||||
@@ -187,7 +187,7 @@
|
|||||||
|
|
||||||
"Player.Actions" = "動作";
|
"Player.Actions" = "動作";
|
||||||
"DefaultPlaybackRate" = "デフォルトの再生速度";
|
"DefaultPlaybackRate" = "デフォルトの再生速度";
|
||||||
"DefaultPlaybackRateDesc" = "Overrides the default playback speed";
|
"DefaultPlaybackRateDesc" = "デフォルトの再生速度を上書きします。";
|
||||||
"BackgroundPlayback" = "バックグラウンド再生";
|
"BackgroundPlayback" = "バックグラウンド再生";
|
||||||
"BackgroundPlaybackDesc" = "バックグラウンド再生を有効にします。";
|
"BackgroundPlaybackDesc" = "バックグラウンド再生を有効にします。";
|
||||||
"Miniplayer" = "ミニプレーヤーを有効化";
|
"Miniplayer" = "ミニプレーヤーを有効化";
|
||||||
@@ -206,20 +206,20 @@
|
|||||||
"ExitFullscreenDesc" = "動画が終了した際に全画面表示を終了します。";
|
"ExitFullscreenDesc" = "動画が終了した際に全画面表示を終了します。";
|
||||||
|
|
||||||
"Player.Gestures" = "ジェスチャー";
|
"Player.Gestures" = "ジェスチャー";
|
||||||
"CompactToast" = "Compact toast";
|
"CompactToast" = "コンパクトなトーストを使用";
|
||||||
"CompactToastDesc" = "Displays a compact-style toast for player gestures";
|
"CompactToastDesc" = "プレイヤーのジェスチャー用のコンパクトなスタイルのトーストを表示します。";
|
||||||
"LeftSideGesture" = "左側のジェスチャー";
|
"LeftSideGesture" = "左側のジェスチャー";
|
||||||
"LeftSideGestureDesc" = "Adjusts the selected setting by swiping vertically on the left side of the screen";
|
"LeftSideGestureDesc" = "画面の左側を縦にスワイプして選択した設定を調整します。";
|
||||||
"RightSideGesture" = "右側のジェスチャー";
|
"RightSideGesture" = "右側のジェスチャー";
|
||||||
"RightSideGestureDesc" = "Adjusts the selected setting by swiping vertically on the right side of the screen";
|
"RightSideGestureDesc" = "画面の右側を縦にスワイプして選択した設定を調整します。";
|
||||||
"ActivationAreaWidth" = "ジェスチャー有効化幅";
|
"ActivationAreaWidth" = "ジェスチャー有効化幅";
|
||||||
"ActivationAreaWidthDesc" = "この値は、画面左右のジェスチャー認識領域をピクセル単位で決定します。\n\n許可される最大値は画面幅の 3 分の 1 です。\n\nプレーヤーの最小化や拡大を試みる際の誤作動を防ぐために、この設定を調整すると便利です。";
|
"ActivationAreaWidthDesc" = "この値は、画面左右のジェスチャー認識領域をピクセル単位で決定します。\n\n許可される最大値は画面幅の 3 分の 1 です。\n\nプレーヤーの最小化や拡大を試みる際の誤作動を防ぐために、この設定を調整すると便利です。";
|
||||||
"HoldToSpeed" = "長押しで再生速度を変更";
|
"HoldToSpeed" = "長押しで再生速度を変更";
|
||||||
"HoldToSpeedDesc" = "Sets the playback speed triggered by a long press on the player";
|
"HoldToSpeedDesc" = "プレーヤーを長押しすることで再生速度を設定します。";
|
||||||
"AdjustWithFinger" = "ジェスチャーで再生速度を調整";
|
"AdjustWithFinger" = "ジェスチャーで再生速度を調整";
|
||||||
"AdjustWithFingerDesc" = "プレーヤーを長押ししながら指を上下に動かすことで再生速度を調整できます。";
|
"AdjustWithFingerDesc" = "プレーヤーを長押ししながら指を上下に動かすことで再生速度を調整できます。";
|
||||||
"PreserveSpeed" = "Lock speed";
|
"PreserveSpeed" = "再生速度を維持";
|
||||||
"PreserveSpeedDesc" = "Locks at adjusted speed after gesture completion.";
|
"PreserveSpeedDesc" = "ジェスチャー終了後も調整された再生速度を維持します。";
|
||||||
"SeekAnywhere" = "スワイプでシーク";
|
"SeekAnywhere" = "スワイプでシーク";
|
||||||
"SeekAnywhereDesc" = "左右にスワイプして再生シークを制御できるようにします。";
|
"SeekAnywhereDesc" = "左右にスワイプして再生シークを制御できるようにします。";
|
||||||
"SeekMethod" = "シーク方法";
|
"SeekMethod" = "シーク方法";
|
||||||
@@ -328,10 +328,10 @@
|
|||||||
|
|
||||||
"ActiveTabs" = "有効なタブ";
|
"ActiveTabs" = "有効なタブ";
|
||||||
"InactiveTabs" = "無効なタブ";
|
"InactiveTabs" = "無効なタブ";
|
||||||
"HideLibraryFooter" = "ライブラリタブは、タブバーの最初のタブを長押しすることで表示/非表示を切り替えられます。";
|
"HideLibraryFooter" = "タブバーの最初のタブを長押しすることで、タブ設定にアクセスすることもできます。";
|
||||||
"Warning" = "警告";
|
"Warning" = "警告";
|
||||||
"AtLeastOneTab" = "At least one tab must remain active";
|
"AtLeastOneTab" = "少なくとも 1 つのタブが有効になっている必要があります。";
|
||||||
"TabsCountRestricted" = "有効なタブは最大 6 つまでです。";
|
"TabsCountRestricted" = "有効にできるタブは最大 6 つまでです。";
|
||||||
|
|
||||||
/* Interface options */
|
/* Interface options */
|
||||||
"Interface" = "インターフェース";
|
"Interface" = "インターフェース";
|
||||||
@@ -361,11 +361,11 @@
|
|||||||
"MiniplayerStyleDesc" = "フローティングモードへの切り替え/終了にはアプリの再起動が必要です。";
|
"MiniplayerStyleDesc" = "フローティングモードへの切り替え/終了にはアプリの再起動が必要です。";
|
||||||
"Floating" = "フローティング";
|
"Floating" = "フローティング";
|
||||||
|
|
||||||
"Other" = "Other";
|
"Other" = "その他";
|
||||||
"NoShareChunk" = "共有識別子を削除";
|
"NoShareChunk" = "共有識別子を削除";
|
||||||
"NoShareChunkDesc" = "共有リンクから「si=identifier」パラメータを削除します。YouTube が共有メニューを継続的に改善しているため、「システムの共有シートに置換」オプションの優れた代替手段となります。";
|
"NoShareChunkDesc" = "共有リンクから「si=identifier」パラメータを削除します。YouTube が共有メニューを継続的に改善しているため、「システムの共有シートに置換」オプションの優れた代替手段となります。";
|
||||||
"AutoCheckLinks" = "Auto-check clipboard";
|
"AutoCheckLinks" = "クリップボードの自動確認";
|
||||||
"AutoCheckLinksDesc" = "Check clipboard for YouTube-related links each time the app is opened.\nFor proper functionality, go to iOS Settings → YouTube → Paste from other apps and select \"Allow\"";
|
"AutoCheckLinksDesc" = "アプリを開くたびに、クリップボードに YouTube 関連のリンクが保存されているか確認します。\n正しく機能させるには、iOS の設定 → YouTube → 他のアプリからの貼り付けで「許可」を選択してください。";
|
||||||
|
|
||||||
"ContextMenu" = "コンテキストメニュー";
|
"ContextMenu" = "コンテキストメニュー";
|
||||||
"NativeShare" = "システムの共有シートに置換";
|
"NativeShare" = "システムの共有シートに置換";
|
||||||
@@ -388,16 +388,16 @@
|
|||||||
"RemoveDontRecommendMenuDesc" = "メニューから [チャンネルをおすすめに表示しない] オプションを削除します。";
|
"RemoveDontRecommendMenuDesc" = "メニューから [チャンネルをおすすめに表示しない] オプションを削除します。";
|
||||||
"RemoveReportMenu" = "[報告] を削除";
|
"RemoveReportMenu" = "[報告] を削除";
|
||||||
"RemoveReportMenuDesc" = "メニューから [報告] オプションを削除します。";
|
"RemoveReportMenuDesc" = "メニューから [報告] オプションを削除します。";
|
||||||
"RemoveRemixMenu" = "Remove \"Remix\"";
|
"RemoveRemixMenu" = "[リミックス] を削除";
|
||||||
"RemoveRemixMenuDesc" = "Removes \"Remix\" option from menu.";
|
"RemoveRemixMenuDesc" = "メニューから [リミックス] オプションを削除します。";
|
||||||
"RemoveYTMMenu" = "Remove \"YouTube Music\"";
|
"RemoveYTMMenu" = "[YouTube Music] を非表示";
|
||||||
"RemoveYTMMenuDesc" = "Removes \"Listen with YouTube Music\" option from menu.";
|
"RemoveYTMMenuDesc" = "メニューから [YouTube Music で聴く] オプションをを非表示にします。";
|
||||||
|
|
||||||
/* SponsorBlock settings */
|
/* SponsorBlock settings */
|
||||||
"EnableSponsorBlock" = "有効化";
|
"EnableSponsorBlock" = "有効化";
|
||||||
"EnableSponsorBlockDesc" = "SponsorBlock 拡張機能を有効にします。";
|
"EnableSponsorBlockDesc" = "SponsorBlock 拡張機能を有効にします。";
|
||||||
"SbPlayerButton" = "Display button in overlay";
|
"SbPlayerButton" = "オーバーレイでボタンを表示";
|
||||||
"SbPlayerButtonDesc" = "Adds SponsorBlock button in players overlay.";
|
"SbPlayerButtonDesc" = "プレーヤーオーバーレイに SponsorBlock のボタンを追加します。";
|
||||||
"ShowNotifications" = "通知を表示";
|
"ShowNotifications" = "通知を表示";
|
||||||
"ShowNotificationsDesc" = "自動的にスキップされたセグメントの通知を表示します。手動でスキップする必要があるカテゴリの通知は常に表示されます。";
|
"ShowNotificationsDesc" = "自動的にスキップされたセグメントの通知を表示します。手動でスキップする必要があるカテゴリの通知は常に表示されます。";
|
||||||
"SegmentsInFeedPlayer" = "フィードにセグメントを表示";
|
"SegmentsInFeedPlayer" = "フィードにセグメントを表示";
|
||||||
@@ -447,12 +447,12 @@
|
|||||||
"Sb.Ask" = "スキップするか確認";
|
"Sb.Ask" = "スキップするか確認";
|
||||||
"Sb.Display" = "プレーヤーに表示";
|
"Sb.Display" = "プレーヤーに表示";
|
||||||
|
|
||||||
"PublicUserID" = "Public UserID";
|
"PublicUserID" = "公開ユーザ ID";
|
||||||
"PrivateUserID" = "Private UserID";
|
"PrivateUserID" = "プライベートユーザー ID";
|
||||||
"TapToReveal" = "Tap to reveal";
|
"TapToReveal" = "タップして表示";
|
||||||
"Save" = "Save";
|
"Save" = "保存";
|
||||||
"Error.SbPublicID" = "The public user ID must contain exactly 64 characters";
|
"Error.SbPublicID" = "パブリックユーザー ID は 64 文字でなければなりません。";
|
||||||
"Error.SbPrivateID" = "The private (local) user ID must contain at least 32 characters";
|
"Error.SbPrivateID" = "プライベート (またはローカル) ユーザー ID は少なくとも 32 文字でなければなりません";
|
||||||
|
|
||||||
"sb_sponsor" = "スポンサーセグメント";
|
"sb_sponsor" = "スポンサーセグメント";
|
||||||
"sb_intro" = "イントロセグメント";
|
"sb_intro" = "イントロセグメント";
|
||||||
@@ -461,14 +461,14 @@
|
|||||||
"sb_selfpromo" = "自己プロモーションセグメント";
|
"sb_selfpromo" = "自己プロモーションセグメント";
|
||||||
"sb_music_offtopic" = "余談セグメント";
|
"sb_music_offtopic" = "余談セグメント";
|
||||||
"sb_preview" = "プレビューセグメント";
|
"sb_preview" = "プレビューセグメント";
|
||||||
"sb_poi_highlight" = "Highlight";
|
"sb_poi_highlight" = "ハイライト";
|
||||||
"sb_filler" = "フィラーセグメント";
|
"sb_filler" = "フィラーセグメント";
|
||||||
|
|
||||||
"SegmentDetected" = "%@ detected.\n%@";
|
"SegmentDetected" = "%@ を検出しました。\n%@";
|
||||||
"SegmentSkipped" = "%@ has been skipped";
|
"SegmentSkipped" = "%@ はスキップされました";
|
||||||
"SkippedToSegment" = "Jumped to %@";
|
"SkippedToSegment" = "%@ にジャンプしました。";
|
||||||
"SkipSegment" = "Would you like to skip the segment?";
|
"SkipSegment" = "セグメントをスキップしますか?";
|
||||||
"SkipToSegment" = "Would you like to jump to the highlight?";
|
"SkipToSegment" = "ハイライトにジャンプしますか?";
|
||||||
"Unskip" = "スキップしない";
|
"Unskip" = "スキップしない";
|
||||||
|
|
||||||
/* Developer section */
|
/* Developer section */
|
||||||
@@ -540,7 +540,7 @@
|
|||||||
"Disable" = "無効化";
|
"Disable" = "無効化";
|
||||||
"Disabled" = "無効";
|
"Disabled" = "無効";
|
||||||
"PlaybackSpeed" = "再生速度";
|
"PlaybackSpeed" = "再生速度";
|
||||||
"SpeedPreserved" = "Speed locked at %@";
|
"SpeedPreserved" = "再生速度が%@にロックされました。";
|
||||||
"ResetSpeed" = "リセット";
|
"ResetSpeed" = "リセット";
|
||||||
|
|
||||||
"Toast.Brightness" = "明るさ";
|
"Toast.Brightness" = "明るさ";
|
||||||
@@ -599,21 +599,21 @@
|
|||||||
"RetryLogin" = "回避策が有効になりました。\n\nもう一度お試しください。";
|
"RetryLogin" = "回避策が有効になりました。\n\nもう一度お試しください。";
|
||||||
"LoginInfo" = "Google アカウントへのログインに成功した後、アプリの再起動が必要です。";
|
"LoginInfo" = "Google アカウントへのログインに成功した後、アプリの再起動が必要です。";
|
||||||
|
|
||||||
"OpenLink" = "Open link";
|
"OpenLink" = "リンクを開く";
|
||||||
"LinkDetected" = "A YouTube-related link was detected. Would you like to open it in YouTube?";
|
"LinkDetected" = "YouTube 関連のリンクが検出されました。YouTube で開きますか?";
|
||||||
|
|
||||||
"SbWhitelist" = "Whitelist";
|
"SbWhitelist" = "ホワイトリスト";
|
||||||
"SbAddToWhitelist" = "Add to the whitelist";
|
"SbAddToWhitelist" = "ホワイトリストに登録";
|
||||||
"Sb.Whitelisted" = "Added to the whitelist";
|
"Sb.Whitelisted" = "ホワイトリストに登録しました。";
|
||||||
"SbRemoveFromWhitelist" = "Remove from the whitelist";
|
"SbRemoveFromWhitelist" = "ホワイトリストから削除";
|
||||||
"Sb.Whitelist" = "Whitelisted channels";
|
"Sb.Whitelist" = "ホワイトリストに登録されたチャンネル";
|
||||||
"Sb.Channels" = "Channels";
|
"Sb.Channels" = "チャンネル";
|
||||||
"Sb.ChannelsHere" = "Whitelisted channels appear here";
|
"Sb.ChannelsHere" = "ホワイトリストに登録されたチャンネルがここに表示されます。";
|
||||||
"SortType" = "Sort type";
|
"SortType" = "並べ替えの種類";
|
||||||
"Sb.Newest" = "Newest first";
|
"Sb.Newest" = "新しい順";
|
||||||
"Sb.Oldest" = "Oldest first";
|
"Sb.Oldest" = "古い順";
|
||||||
"Sb.Alphabetical" = "Alphabetical (A-Z)";
|
"Sb.Alphabetical" = "アルファベット順 (A ~ Z)";
|
||||||
"Sb.AlphabeticalRev" = "Reverse (Z-A)";
|
"Sb.AlphabeticalRev" = "アルファベット順 (逆順)";
|
||||||
|
|
||||||
"Welcome.Download" = "メディアのダウンロード";
|
"Welcome.Download" = "メディアのダウンロード";
|
||||||
"Welcome.DownloadDesc" = "動画、ショート、オーディオ、プロフィール画像など、お気に入りのコンテンツをダウンロードできます。興味深い投稿やコメントをコピーしたり、画像として保存したりできます。";
|
"Welcome.DownloadDesc" = "動画、ショート、オーディオ、プロフィール画像など、お気に入りのコンテンツをダウンロードできます。興味深い投稿やコメントをコピーしたり、画像として保存したりできます。";
|
||||||
@@ -633,16 +633,3 @@
|
|||||||
"Conflicts.CloseYT" = "YouTube を閉じる";
|
"Conflicts.CloseYT" = "YouTube を閉じる";
|
||||||
|
|
||||||
"DonationReminder" = "皆さんのご支援が YouTube Plus の更なる改善に繋がります。\n\n寄付を行うか、YouTube Plus 設定でこれらの通知を無効にすることもできます。ご支援ありがとうございます💜";
|
"DonationReminder" = "皆さんのご支援が YouTube Plus の更なる改善に繋がります。\n\n寄付を行うか、YouTube Plus 設定でこれらの通知を無効にすることもできます。ご支援ありがとうございます💜";
|
||||||
|
|
||||||
/* Old localizations (commented out for reference)
|
|
||||||
"TabIsHidden" = "非表示のタブはアプリ起動時のページとして選択できません。";
|
|
||||||
"TabIsStartupTab" = "アプリ起動時のページとして選択されたタブは非表示にできません。";
|
|
||||||
"PreserveSpeed" = "再生速度を維持";
|
|
||||||
"PreserveSpeedDesc" = "ジェスチャー終了後も調整された再生速度を維持します。";
|
|
||||||
"sb_poi_highlight" = "ハイライトセグメント";
|
|
||||||
"SegmentDetected" = "%@ が検出されました";
|
|
||||||
"SegmentSkipped" = "%@ はスキップされました";
|
|
||||||
"SkippedToSegment" = "%@ にスキップしました";
|
|
||||||
"SkipSegment" = "スキップ";
|
|
||||||
"SkipToSegment" = "ハイライトに";
|
|
||||||
"SpeedPreserved" = "再生速度を保存しました";
|
|
||||||
@@ -337,8 +337,8 @@
|
|||||||
"Interface" = "Interfejs";
|
"Interface" = "Interfejs";
|
||||||
"OledTheme" = "Motyw OLED";
|
"OledTheme" = "Motyw OLED";
|
||||||
"OledThemeDesc" = "Zamienia wszystkie ciemne kolory na czarne";
|
"OledThemeDesc" = "Zamienia wszystkie ciemne kolory na czarne";
|
||||||
"OledKeyboard" = "Klawiatura oled";
|
"OledKeyboard" = "Klawiatura OLED";
|
||||||
"OledKeyboardDesc" = "Stosuje czarny motyw oled dla ciemnej klawiatury";
|
"OledKeyboardDesc" = "Stosuje czarny motyw OLED dla ciemnej klawiatury";
|
||||||
"NoSearchHistory" = "Ukryj historię wyszukiwania";
|
"NoSearchHistory" = "Ukryj historię wyszukiwania";
|
||||||
"NoSearchHistoryDesc" = "Wizualnie ukrywa historię wyszukiwania i sugestie. Uwaga: Twoja historia wyszukiwania będzie nadal dostępna w innych klientach YouTube.";
|
"NoSearchHistoryDesc" = "Wizualnie ukrywa historię wyszukiwania i sugestie. Uwaga: Twoja historia wyszukiwania będzie nadal dostępna w innych klientach YouTube.";
|
||||||
"StickSortComments" = "Przypnij nagłówek komentarzy";
|
"StickSortComments" = "Przypnij nagłówek komentarzy";
|
||||||
|
|||||||
@@ -335,9 +335,9 @@
|
|||||||
|
|
||||||
/* Interface options */
|
/* Interface options */
|
||||||
"Interface" = "Интерфейс";
|
"Interface" = "Интерфейс";
|
||||||
"OledTheme" = "Oled режим";
|
"OledTheme" = "OLED режим";
|
||||||
"OledThemeDesc" = "Заменяет темные цвета черным";
|
"OledThemeDesc" = "Заменяет темные цвета черным";
|
||||||
"OledKeyboard" = "Oled клавиатура";
|
"OledKeyboard" = "OLED клавиатура";
|
||||||
"OledKeyboardDesc" = "Применяет черную тему для темной клавиатуры";
|
"OledKeyboardDesc" = "Применяет черную тему для темной клавиатуры";
|
||||||
"NoSearchHistory" = "Скрыть историю поиска";
|
"NoSearchHistory" = "Скрыть историю поиска";
|
||||||
"NoSearchHistoryDesc" = "Визуально скрывает историю поиска и подсказок. Данная опция не отменяет трекинг вашей истории поиска.";
|
"NoSearchHistoryDesc" = "Визуально скрывает историю поиска и подсказок. Данная опция не отменяет трекинг вашей истории поиска.";
|
||||||
|
|||||||
@@ -335,10 +335,10 @@
|
|||||||
|
|
||||||
/* Interface options */
|
/* Interface options */
|
||||||
"Interface" = "Arayüz";
|
"Interface" = "Arayüz";
|
||||||
"OledTheme" = "Oled teması";
|
"OledTheme" = "OLED teması";
|
||||||
"OledThemeDesc" = "Tüm koyu renkleri siyaha çevirir";
|
"OledThemeDesc" = "Tüm koyu renkleri siyaha çevirir";
|
||||||
"OledKeyboard" = "Oled klavye";
|
"OledKeyboard" = "OLED klavye";
|
||||||
"OledKeyboardDesc" = "Koyu klavye için oled temayı uygular";
|
"OledKeyboardDesc" = "Koyu klavye için OLED temayı uygular";
|
||||||
"NoSearchHistory" = "Arama geçmişini gizle";
|
"NoSearchHistory" = "Arama geçmişini gizle";
|
||||||
"NoSearchHistoryDesc" = "Arama geçmişini ve önerileri görsel olarak gizler. Not: Arama geçmişiniz diğer YouTube istemcilerinizde hala erişilebilir olacaktır.";
|
"NoSearchHistoryDesc" = "Arama geçmişini ve önerileri görsel olarak gizler. Not: Arama geçmişiniz diğer YouTube istemcilerinizde hala erişilebilir olacaktır.";
|
||||||
"StickSortComments" = "Yorum başlığını sabitle";
|
"StickSortComments" = "Yorum başlığını sabitle";
|
||||||
|
|||||||
Reference in New Issue
Block a user