├── static ├── .nojekyll ├── CNAME └── img │ ├── logo.png │ └── favicon.svg ├── .github ├── CODEOWNERS └── workflows │ ├── pr-check.yml │ └── deploy.yml ├── babel.config.js ├── src ├── components │ └── HomepageFeatures │ │ ├── styles.module.css │ │ └── index.js ├── pages │ ├── index.module.css │ └── index.js └── css │ └── custom.css ├── i18n ├── ja │ └── docusaurus-plugin-content-docs │ │ └── current │ │ ├── intro.mdx │ │ ├── advanced │ │ ├── url-schema.mdx │ │ ├── app-sources.mdx │ │ ├── jit.mdx │ │ └── sparserestore.mdx │ │ ├── installation │ │ ├── post-install.mdx │ │ ├── mac.mdx │ │ ├── linux.mdx │ │ ├── prerequisites.mdx │ │ ├── windows.mdx │ │ └── pairing-file.mdx │ │ ├── troubleshooting │ │ └── common-issues.mdx │ │ └── release-notes.mdx ├── ko │ └── docusaurus-plugin-content-docs │ │ └── current │ │ ├── intro.mdx │ │ ├── advanced │ │ ├── url-schema.mdx │ │ ├── pairing-file.mdx │ │ ├── app-sources.mdx │ │ └── jit.mdx │ │ ├── troubleshooting │ │ └── common-issues.mdx │ │ ├── installation │ │ ├── prerequisites.mdx │ │ └── install.mdx │ │ └── release-notes.mdx ├── it │ └── docusaurus-plugin-content-docs │ │ └── current │ │ ├── intro.mdx │ │ ├── advanced │ │ ├── url-schema.mdx │ │ ├── pairing-file.mdx │ │ ├── app-sources.mdx │ │ └── jit.mdx │ │ └── troubleshooting │ │ └── common-issues.mdx ├── zh │ └── docusaurus-plugin-content-docs │ │ └── current │ │ ├── intro.mdx │ │ ├── advanced │ │ ├── url-schema.mdx │ │ ├── pairing-file.mdx │ │ ├── app-sources.mdx │ │ ├── alternative.mdx │ │ └── jit.mdx │ │ ├── installation │ │ ├── install.mdx │ │ └── prerequisites.mdx │ │ └── troubleshooting │ │ ├── common-issues.mdx │ │ └── troubleshooting.mdx ├── de │ └── docusaurus-plugin-content-docs │ │ └── current │ │ ├── intro.mdx │ │ ├── advanced │ │ ├── url-schema.mdx │ │ ├── pairing-file.mdx │ │ ├── app-sources.mdx │ │ ├── jit.mdx │ │ └── sparserestore.mdx │ │ ├── installation │ │ ├── install.mdx │ │ └── prerequisites.mdx │ │ ├── release-notes.mdx │ │ └── troubleshooting │ │ └── common-issues.mdx ├── fr │ └── docusaurus-plugin-content-docs │ │ └── current │ │ ├── intro.mdx │ │ ├── advanced │ │ ├── url-schema.mdx │ │ ├── app-sources.mdx │ │ └── jit.mdx │ │ ├── installation │ │ ├── install.mdx │ │ └── prerequisites.mdx │ │ ├── troubleshooting │ │ └── common-issues.mdx │ │ └── release-notes.mdx ├── ru │ └── docusaurus-plugin-content-docs │ │ └── current │ │ ├── intro.mdx │ │ ├── advanced │ │ ├── url-schema.mdx │ │ ├── app-sources.mdx │ │ ├── jit.mdx │ │ └── sparserestore.mdx │ │ ├── installation │ │ ├── post-install.mdx │ │ ├── mac.mdx │ │ ├── linux.mdx │ │ ├── windows.mdx │ │ └── prerequisites.mdx │ │ ├── release-notes.mdx │ │ └── troubleshooting │ │ └── common-issues.mdx ├── nl │ └── docusaurus-plugin-content-docs │ │ └── current │ │ ├── intro.mdx │ │ ├── advanced │ │ ├── url-schema.mdx │ │ ├── app-sources.mdx │ │ ├── jit.mdx │ │ └── sparserestore.mdx │ │ ├── installation │ │ ├── post-install.mdx │ │ ├── linux.mdx │ │ ├── mac.mdx │ │ ├── windows.mdx │ │ └── prerequisites.mdx │ │ ├── release-notes.mdx │ │ └── troubleshooting │ │ └── common-issues.mdx ├── es │ └── docusaurus-plugin-content-docs │ │ └── current │ │ ├── intro.mdx │ │ ├── installation │ │ ├── post-install.mdx │ │ ├── mac.mdx │ │ ├── linux.mdx │ │ ├── prerequisites.mdx │ │ └── windows.mdx │ │ ├── advanced │ │ ├── url-schema.mdx │ │ ├── app-sources.mdx │ │ ├── jit.mdx │ │ └── sparserestore.mdx │ │ ├── troubleshooting │ │ └── common-issues.mdx │ │ └── release-notes.mdx ├── vi │ └── docusaurus-plugin-content-docs │ │ └── current │ │ ├── intro.mdx │ │ ├── installation │ │ ├── post-install.mdx │ │ ├── mac.mdx │ │ ├── linux.mdx │ │ ├── prerequisites.mdx │ │ └── windows.mdx │ │ ├── advanced │ │ ├── url-schema.mdx │ │ ├── app-sources.mdx │ │ └── jit.mdx │ │ ├── release-notes.mdx │ │ └── troubleshooting │ │ └── common-issues.mdx └── sv │ └── docusaurus-plugin-content-docs │ └── current │ ├── intro.mdx │ ├── advanced │ ├── url-schema.mdx │ ├── pairing-file.mdx │ ├── app-sources.mdx │ ├── jit.mdx │ └── alternative.mdx │ ├── installation │ ├── install.mdx │ └── prerequisites.mdx │ └── troubleshooting │ └── common-issues.mdx ├── docs ├── intro.mdx ├── advanced │ ├── url-schema.mdx │ ├── pairing-file.mdx │ ├── app-sources.mdx │ └── jit.mdx └── troubleshooting │ └── common-issues.mdx ├── TODO.md ├── .gitignore ├── README.md ├── package.json └── sidebars.js /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | docs.sidestore.io -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideStore-Docs/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @JoeMatt @lonkelle @nythepegasus @Spidy123222 @SternXD @SideStore/docs-maintainer -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [require.resolve('@docusaurus/core/lib/babel/preset')], 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- 1 | .features { 2 | display: flex; 3 | align-items: center; 4 | padding: 2rem 0; 5 | width: 100%; 6 | } 7 | 8 | .featureSvg { 9 | height: 200px; 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # SideStore Intro 6 | 7 | ようこそSideStoreへ! 8 | 9 | SideStoreは、iOS/iPadOS 14以降のデバイスでアプリのサイドロードを簡単に行えるようにします。 10 | 11 | 開始するには、[前提条件](installation/prerequisites.mdx)のページにアクセスして、指示に従ってください。 12 | -------------------------------------------------------------------------------- /docs/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # SideStore Intro 6 | 7 | Welcome to SideStore! 8 | 9 | SideStore makes sideloading applications on iOS/iPadOS 14+ devices easy. 10 | 11 | To get started, go to the [Prerequisites](installation/prerequisites.mdx) page and follow the instructions. 12 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # SideStore 소개 6 | 7 | SideStore에 오신 것을 환영합니다! 8 | 9 | SideStore는 iOS/iPadOS 14 이상을 사용하는 기기에서 애플리케이션들을 쉽게 사이드로드할 수 있도록 도와주는 도구입니다. 10 | 11 | 시작하려면 [필수 요구 사항](installation/prerequisites.mdx)으로 이동하여 지침을 따르세요. -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | # Todo List for SideStore-Docs 2 | 3 | - [ ] Error Codes and Troubleshooting cleanup 4 | 5 | iloader translation: 6 | - [X] EN 7 | - [ ] ES 8 | - [ ] FR (partial) 9 | - [ ] DE (partial) 10 | - [X] IT 11 | - [ ] NL (partial) 12 | - [X] ZH 13 | - [ ] JA 14 | - [ ] RU 15 | - [X] KO 16 | - [X] SV 17 | - [ ] VI 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Production 5 | /build 6 | 7 | # Generated files 8 | .docusaurus 9 | .cache-loader 10 | .yarn 11 | 12 | # Misc 13 | .DS_Store 14 | .env.local 15 | .env.development.local 16 | .env.test.local 17 | .env.production.local 18 | 19 | npm-debug.log* 20 | yarn-debug.log* 21 | yarn-error.log* 22 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # Intro di SideStore 6 | 7 | Benvenuto in SideStore! 8 | 9 | SideStore rende semplice il sideload di applicazioni su iOS/iPadOS 14+. 10 | 11 | Per iniziare, vai nella pagina [Prerequisiti](installation/prerequisites) e segui le istruzioni. 12 | -------------------------------------------------------------------------------- /i18n/zh/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # SideStore 介绍 6 | 7 | :::danger 8 | 9 | 本文档目前尚未完全翻译成您的语言。如果您考虑参与翻译我们的文档,请帮助我们! 10 | 11 | ::: 12 | 13 | 14 | 欢迎使用 SideStore! 15 | 16 | SideStore 让 iOS/iPadOS 14 及更高版本的设备更轻松的侧载应用。 17 | 18 | 想要快速开始,访问[安装前准备](installation/prerequisites.mdx)页面并跟随指示进行后续操作。 19 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # SideStore Einführung 6 | 7 | Wilkommen zu SideStore! 8 | 9 | SideStore erleichtert das Sideloading von Anwendungen auf iOS/iPadOS 14+ Geräten. 10 | 11 | Um zu beginnen, gehen Sie zu [Voraussetzungen](installation/prerequisites.mdx) und folgen Sie den Anweisungen. 12 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # Introduction à SideStore 6 | 7 | Bienvenue sur SideStore! 8 | 9 | SideStore facilite le sideloading d'applications sur les appareils iOS/iPadOS 14+. 10 | 11 | Pour commencer, rendez-vous sur la page des [Prérequis](installation/prerequisites.mdx) et suivez les instructions. -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # Про SideStore 6 | 7 | 8 | 9 | Добро пожаловать в SideStore! 10 | 11 | SideStore упрощает загрузку пользовательских приложений на устройствах iOS/iPadOS 14+. 12 | 13 | Чтобы начать, перейдите в раздел [подготовки](installation/prerequisites.mdx) и следуйте инструкциям. 14 | -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * CSS files with the .module.css suffix will be treated as CSS modules 3 | * and scoped locally. 4 | */ 5 | 6 | .heroBanner { 7 | padding: 4rem 0; 8 | text-align: center; 9 | position: relative; 10 | overflow: hidden; 11 | } 12 | 13 | @media screen and (max-width: 996px) { 14 | .heroBanner { 15 | padding: 2rem; 16 | } 17 | } 18 | 19 | .buttons { 20 | display: flex; 21 | align-items: center; 22 | justify-content: center; 23 | } 24 | -------------------------------------------------------------------------------- /i18n/zh/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: URL Schemes 3 | description: URL Schemes的操作指南 4 | --- 5 | 6 | # URL Schemes 7 | 8 | 以下是可用于与SideStore交互的URL Schemes的列表。这些URL Schemes非常有用,因为它们让开发人员只需在他们的社交媒体或网站上放置一个一键链接,iOS就会直接在SideStore中打开此链接,并执行对应的操作。 9 | 10 | 目前使用URL Schemes可以做的事情仅限于安装应用程序和添加源,但将来会扩展到接受多个输入并执行各种其他任务。 11 | 12 | ## 侧载远程托管的app 13 | 14 | ``` 15 | sidestore://install?url=[download url] 16 | ``` 17 | 18 | ## 添加一个AltSource 19 | 20 | ``` 21 | sidestore://source?url=[source url] 22 | ``` -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: URLスキーマ 3 | description: URLスキーマに関するガイド。 4 | --- 5 | 6 | # URLスキーマ 7 | 8 | 以下は、SideStoreと連携するために使用できるさまざまなURLスキーマの一覧です。これらは非常に便利で、開発者がソーシャルメディアやウェブサイトにワンクリックリンクを配置するだけで、iOSがリンクを直接SideStoreで開き、指定された操作を実行してくれます。 9 | 10 | 現在、URLスキーマで可能な操作はアプリやソースのインストールに限定されていますが、将来的には複数の入力に対応し、さまざまなタスクを実行できるように拡張される予定です。 11 | 12 | ## リモートホストされたアプリのインストール 13 | 14 | ``` 15 | sidestore://install?url=[download url] 16 | ``` 17 | 18 | ## AltSourceの追加 19 | 20 | ``` 21 | sidestore://source?url=[source url] 22 | ``` 23 | -------------------------------------------------------------------------------- /i18n/zh/docusaurus-plugin-content-docs/current/advanced/pairing-file.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 配对文件 3 | description: 重新导入配对文件的指南 4 | --- 5 | :::warning 6 | 注意,如果您更新或重置了您的苹果设备,您的配对文件将过期,您需要生成一个新的配对文件。当然,由于苹果的软件运行方式,这可能会随时发生,目前我们无法修复它。这是一个关于如何使用 iloader重新导入配对文件到您的设备上的指南。 7 | ::: 8 | 9 | ## 重新导入您的配对文件 10 | 1. 请确保您已经按照[安装指引](/docs/installation/prerequisites)中的步骤安装并配置好iloader和SideStore。 11 | 2. 为获得最佳效果,请用USB数据线将您的苹果设备连接到电脑上,但是如果您的设备通过无线方式连接到了您的电脑上,这同样可行。 12 | 3. 点击"Manage Pairing File" 13 | 4. 在"SideStore"和您需要导入的其他应用的右侧,点击"Place Pairing File",当绿色的"Pairing file placed successfully!"出现的时候,说明导入成功了。 14 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: URL Schema 3 | description: URL schema 가이드입니다. 4 | --- 5 | 6 | # URL Schema 7 | 8 | 다음은 SideStore와 상호작용하는 데 사용할 수 있는 다양한 URL Scheme 목록입니다. 이는 개발자들이 소셜 미디어나 웹사이트에 원클릭 링크를 넣을 수 있게 해주고, iOS가 해당 링크를 SideStore에서 직접 열어 지정된 작업을 수행할 수 있게 해주기 때문에 매우 유용합니다. 9 | 10 | 현재 URL Scheme을 사용하여 할 수 있는 작업 목록은 앱과 소스 설치로 제한되어 있지만, 향후 여러 입력을 받아 다양한 다른 작업을 수행할 수 있도록 확장될 예정입니다. 11 | 12 | ## 원격 호스팅된 앱 설치하기 13 | 14 | ``` 15 | sidestore://install?url=[download url] 16 | ``` 17 | 18 | ## AltSource 추가하기 19 | 20 | ``` 21 | sidestore://source?url=[source url] 22 | ``` -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/installation/post-install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: インストール後の手順 3 | description: もう少しで完了です!あと少しだけ手順を踏みましょう。 4 | sidebar_position: 6 5 | --- 6 | 7 | SideStoreをインストールするための最後のステップは、SideStore自体をリフレッシュすることです。 8 | 9 | これを行うには、次の手順を実行してください: 10 | 11 | 1. StosVPNに接続します。 12 | 2. SideStoreを開きます。 13 | 3. まだ選択していない場合は、ペアリングファイルを選択します。 14 | 4. 「マイアプリ」に移動します。 15 | 5. 「x日後」と表示されているボタンを選択します。ここで「x」は、期限が切れるまでの残り日数です。 16 | * 成功すると、Safariの空白タブが開くか、ホーム画面に戻ります。また、これを行うよう通知が届きます。 17 | 18 | もしSideStoreがリフレッシュされない場合、早期期限切れを引き起こすバグが発生することがあります。その場合、SideStoreを再インストールする必要があります。この作業を自動化する計画はありますが、現時点では手動で行う必要があります。 19 | -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # SideStore Intro 6 | 7 | :::danger 8 | 9 | This documentation is currently not completely translated into your language. Please consider helping us by translating our docs! 10 | 11 | Deze documentatie is momenteel niet volledig in uw taal vertaald. Help ons alstublieft door onze documentatie te vertalen! 12 | 13 | ::: 14 | 15 | Welkom bij SideStore! 16 | 17 | SideStore maakt het eenvoudig om applicaties te sideloaden op iOS/iPadOS 14+ apparaten. 18 | 19 | Om te beginnen ga je naar de [Vereisten](installation/prerequisites.mdx) en volg je de instructies. 20 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | titulo: Intro de SideStore 3 | --- 4 | 5 | # Intro de SideStore 6 | 7 | :::danger 8 | 9 | This documentation is currently not fully translated into Spanish. Please consider helping us by translating our docs! 10 | 11 | Esta documentación no está traducida completamente al español. ¡Por favor, considere ayudarnos traduciendo nuestra documentación! 12 | 13 | ::: 14 | 15 | 16 | ¡Bienvenidos a SideStore! 17 | 18 | SideStore hace el sideloading de aplicaciones en dispositivos iOS/iPadOS 14+ fácil. 19 | 20 | Para empezar, dirigese a [Prerequisites](installation/prerequisites.mdx) y sigua las instrucciones. 21 | -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # SideStore Intro 6 | 7 | :::danger 8 | 9 | This documentation is currently not completely translated into your language. Please consider helping us by translating our docs! 10 | 11 | Tài liệu này hiện chưa được dịch hoàn toàn sang ngôn ngữ của bạn. Vui lòng cân nhắc giúp chúng tôi bằng cách dịch tài liệu của chúng tôi! 12 | 13 | ::: 14 | 15 | 16 | Chào mừng đến với SideStore! 17 | 18 | SideStore giúp việc tải ứng dụng trên các thiết bị iOS/iPadOS 14+ trở nên dễ dàng. 19 | 20 | Để bắt đầu, hãy đi đến [Điều kiện cho thiết bị](installation/prerequisites.mdx) và làm theo hướng dẫn. 21 | -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-docs/current/intro.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # Introduktion till SideStore 6 | 7 | :::danger 8 | 9 | These docs might be outdated in this language. Please refer to the English version or help us update the translation. 10 | 11 | Den här dokumentationen kan vara inaktuell på svenska. Kontrollera gärna den engelska versionen eller hjälp oss uppdatera översättningen. 12 | 13 | ::: 14 | 15 | Välkommen till SideStore! 16 | 17 | SideStore gör det enkelt att sideloada appar på iOS- och iPadOS-enheter med version 14 eller senare. 18 | 19 | För att komma igång går du till sidan [Förberedelser](installation/prerequisites.mdx) och följer instruktionerna. 20 | -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- 1 | name: PR Build Check 2 | 3 | on: 4 | pull_request: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | build: 10 | name: Test Build Docusaurus 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v4 14 | with: 15 | fetch-depth: 0 16 | - uses: actions/setup-node@v4 17 | with: 18 | node-version: 20 19 | cache: yarn 20 | 21 | - name: Install dependencies 22 | run: yarn install --frozen-lockfile 23 | - name: Build website 24 | run: yarn build 25 | 26 | - name: Build Result 27 | run: echo "Build completed successfully! The PR has no conflicts." 28 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/advanced/pairing-file.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 페어링 파일 3 | description: 페어링 파일을 수동으로 다시 가져오는 방법을 안내할게요. 4 | --- 5 | :::warning 6 | iDevice를 업데이트하거나 초기화하면 페어링 파일이 만료되어 다시 가져와야 해요. 이는 가끔 무작위로 발생하기도 해요. 이는 단순히 Apple 소프트웨어의 작동 방식 때문이며, 현재로서는 이를 해결할 방법이 없어요. 본 가이드에서 iloader를 사용하여 페어링 파일을 수동으로 교체하는 방법을 안내할게요. 7 | ::: 8 | 9 | ## 페어링 파일 교체하기 10 | 1. iloader 및 SideStore 설치하고 설정하려면, [설치 가이드](/docs/installation/prerequisites)의 있는 단계들을 제대로 따랐는지 확인해 주세요. 만약 iloader가 업데이트를 할거냐고 물으면 'Yes를 누르세요. 11 | 2. 최상의 결과를 위해 iDevice를 USB 케이블로 컴퓨터에 연결해 주세요. 하지만 기기가 무선으로만 표시된다면 그것도 괜찮아요. 12 | 3. "Manage Pairing File"를 클릭해 주세요. 13 | 4. "SideStore" 및 원하는 다른 앱 오른쪽에 있는 "Place"를 클릭해 주세요. "Pairing file placed successfully! 라고 초록색 메시지가 표시되어야 해요. 14 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/installation/mac.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: macOSでの手順 3 | description: macOSを使用してSideStoreをインストールする手順 4 | sidebar_position: 4 5 | --- 6 | 7 | 開始する前に、[前提条件](prerequisites)と[ペアリングファイル](pairing-file)の準備がすべて完了していることを確認してください。 8 | 9 | 1. [AltStoreの公式サイト](https://AltStore.io)からAltServerをダウンロードして実行します。 10 | 2. 最新のSideStore IPAを[こちら](https://github.com/sidestore/sidestore/releases/latest/download/sidestore.ipa)からダウンロードします。 11 | 3. option(alt)キーを押しながらメニューバーのAltServerアイコンをクリックし、「Sideload .ipa」を選択してSideStore IPAを指定します。 12 | 4. Apple IDのメールアドレスで「Developer App」を承認します。 13 | * macOSの設定アプリで「一般」→「VPNとデバイス管理」にあります。 14 | 5. SideStoreを開き、ペアリングファイルを選択してApple IDでサインインします。 15 | 16 | インストールが完了したら、[インストール後の手順](post-install) に進みましょう。 17 | -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: URL-schema 3 | description: En guide om URL-scheman. 4 | --- 5 | 6 | # URL-schema 7 | 8 | Nedan listas de URL-scheman som kan användas för att interagera med SideStore. De är användbara eftersom utvecklare kan lägga en ettklickslänk på sociala medier eller sin webbplats så öppnar iOS länken direkt i SideStore och utför angiven åtgärd. 9 | 10 | Listan över åtgärder som stöds via URL-schema är i nuläget begränsad till att installera appar och källor, men kommer att byggas ut för att ta emot fler parametrar och åtgärder framöver. 11 | 12 | ## Installera en app via fjärrhämtning 13 | 14 | ``` 15 | sidestore://install?url=[download url] 16 | ``` 17 | 18 | ## Lägg till en AltSource 19 | 20 | ``` 21 | sidestore://source?url=[source url] 22 | ``` 23 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: URL Schema 3 | description: Guida sull'url schema. 4 | --- 5 | 6 | # URL Schema 7 | 8 | Qui puoi trovare una lista dei diversi URL schemes che possono essere utilizzati per interagire con SideStore. Sono molto comodi perché permettono agli sviluppatori di usare un link one-click sul proprio profilo social o sito web e iOS aprirà direttamente il link in SideStore, eseguendo l'azione specificata. 9 | 10 | La lista di cose possibili è per ora limitata all'installazione di app e sorgenti, ma verrà ampliata nel futuro per eseguire più task. 11 | 12 | ## Installa un'app hostata in remoto 13 | 14 | ``` 15 | sidestore://install?url=[download url] 16 | ``` 17 | 18 | ## Aggiungi un AltSource 19 | 20 | ``` 21 | sidestore://source?url=[source url] 22 | ``` 23 | -------------------------------------------------------------------------------- /docs/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: URL Schema 3 | description: A guide on url schema. 4 | --- 5 | 6 | # URL Schema 7 | 8 | The following is the list of different URL Schemes that can be used to interact with SideStore. These are incredibly useful because they allow developers to simply put a one-click link on their social media or website, and iOS will open the link directly in SideStore, performing the action(s) specified. 9 | 10 | The current list of things you can do using URL Schemes is limited to installing apps and sources, but it will be expanded upon in the future to take multiple inputs and perform a variety of other tasks. 11 | 12 | ## Install a remotely hosted app 13 | 14 | ``` 15 | sidestore://install?url=[download url] 16 | ``` 17 | 18 | ## Add an AltSource 19 | 20 | ``` 21 | sidestore://source?url=[source url] 22 | ``` -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/installation/linux.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Linuxでの手順 3 | description: Linuxを使用してSideStoreをインストールする手順 4 | sidebar_position: 5 5 | --- 6 | 7 | LinuxでSideStore(または他のIPA)をインストールするには、Dockerがインストールされていることを確認してください。開始する前に、[前提条件](prerequisites)とStosVPNのインストールを完了していることを確認してください。 8 | 9 | 1. Dockerでaltconを実行します 10 | ```bash 11 | docker run --rm -it -e ALTSERVER_ANISETTE_SERVER="https://ani.sidestore.io/" -v ${PWD}/:/mnt/ -v /var/run:/var/run ghcr.io/sidestore/altcon 12 | ``` 13 | Podmanを使用してaltconを実行することもできます 14 | ```bash 15 | podman run --privileged --rm -it -e ALTSERVER_ANISETTE_SERVER="https://ani.sidestore.io/" -v ${PWD}/:/mnt/ -v /var/run:/var/run ghcr.io/sidestore/altcon 16 | ``` 17 | Altconはデバイスとのペアリングを開始します。まだ接続していない場合は、デバイスを接続してください。「信頼」をタップし、パスコードを入力します。 18 | 19 | 完了したら、[インストール後の手順](post-install)に進んでください。 20 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/installation/post-install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Post-Install Instructions 3 | description: Almost there, just a few more steps! 4 | sidebar_position: 6 5 | --- 6 | The last step to installing SideStore is to refresh SideStore, within itself. 7 | 8 | To do this, you need to: 9 | 10 | 1. Connect to StosVPN. 11 | 2. Open SideStore. 12 | 3. If you haven't already, select the pairing file. 13 | 4. Go to "My Apps". 14 | 5. Select the "x DAYS" button, where x is the number of days until expire. 15 | * If successful, this will open a blank Safari tab or go to your home screen. You will get a notification also telling you to do this. 16 | 17 | If SideStore is not refreshed, a bug causing early expiry will require you to reinstall SideStore. There is a plan to have this done automatically, but for now it needs to be done manually. 18 | -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/installation/post-install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Hướng dẫn sau khi cài đặt SideStore 3 | description: Sắp xong rồi, chỉ cần vài bước nữa thôi! 4 | sidebar_position: 6 5 | --- 6 | Bước cuối cùng để cài đặt SideStore là làm mới SideStore trong chính nó. 7 | 8 | Để thực hiện điều này, bạn cần phải: 9 | 10 | 1. Kết nối vào StosVPN. 11 | 2. Mở SideStore. 12 | 3. Nếu bạn chưa thực hiện, hãy chọn tệp ghép nối. 13 | 4. Ấn vào "My Apps". 14 | 5. Ấn vào "Refresh All" 15 | * Nếu thành công, thao tác này sẽ mở một tab Safari trống hoặc chuyển đến màn hình chính của bạn. Bạn cũng sẽ nhận được thông báo yêu cầu bạn thực hiện thao tác này. 16 | 17 | Nếu SideStore không được làm mới, lỗi gây ra hết hạn sớm sẽ yêu cầu bạn phải cài đặt lại SideStore. Có một kế hoạch để thực hiện việc này tự động, nhưng hiện tại cần phải thực hiện thủ công. 18 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: URL Schema 3 | description: A guide on url schema. 4 | --- 5 | 6 | # URL Schema 7 | 8 | The following is the list of different URL Schemes that can be used to interact with SideStore. These are incredibly useful because they allow developers to simply put a one-click link on their social media or website, and iOS will open the link directly in SideStore, performing the action(s) specified. 9 | 10 | The current list of things you can do using URL Schemes is limited to installing apps and sources, but it will be expanded upon in the future to take multiple inputs and perform a variety of other tasks. 11 | 12 | ## Install a remotely hosted app 13 | 14 | ``` 15 | sidestore://install?url=[download url] 16 | ``` 17 | 18 | ## Add an AltSource 19 | 20 | ``` 21 | sidestore://source?url=[source url] 22 | ``` -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Схемы URL 3 | description: Инструкция по использованию схем URL. 4 | --- 5 | 6 | # Схемы URL 7 | 8 | Ниже приведен список различных схем URL, с помощью которых можно взаимодействовать с SideStore. Они очень полезные, так как позволяют разработчикам вписывать лишь одну ссылку в их социальных сетях или сайтах, и iOS откроёт ссылку напрямую в SideStore, выполняя данные задачи. 9 | 10 | В данный момент список того, что Вы можете сделать с URL схемами ограничен установкой приложений и источников приложений, но в будущем планируется добавить возможность принятия нескольких входных данных и выполнения множество других задач. 11 | ## Установка удалённо размещённого приложения 12 | 13 | ``` 14 | sidestore://install?url=[download url] 15 | ``` 16 | 17 | ## Добавление источника приложений 18 | 19 | ``` 20 | sidestore://source?url=[source url] 21 | ``` 22 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/installation/post-install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Инструкция после установки 3 | description: Уже очень близко, осталось всего несколько шагов! 4 | sidebar_position: 6 5 | --- 6 | Последний шаг установки SideStore - освежение SideStore, через него. 7 | 8 | Для этого, Вам нужно: 9 | 10 | 1. Подключиться к "StosVPN". 11 | 2. Открыть SideStore. 12 | 3. Если Вы ещё этого не сделали, выберите файл сопряжения. 13 | 4. Перейдите в "My Apps". 14 | 5. Нажмите на кнопку "x DAYS", где x - количество дней до истечения срока действия.. 15 | * Если Вы сделали всё правильно, должна открыться пустая вкладка в Safari или главный экран. Вы также получите уведомление о необходимости сделать это. 16 | 17 | Если SideStore не освежился, баг, из-за которого происходит раннее истечение срока, потребует переустановки Sidestore. Мы планируем сделать решение автоматическим, но в данный момент это нужно делать самостоятельно. 18 | -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: URL Schema 3 | description: Instrucite hoe de url schema werkt. 4 | --- 5 | 6 | # URL Schema 7 | 8 | Het volgende is de lijst met verschillende URL-schema’s die gebruikt kunnen worden om met SideStore te communiceren. Deze zijn enorm handig omdat ontwikkelaars hiermee een éénklik-link op hun sociale media of website kunnen plaatsen, waarna iOS de link direct in SideStore opent en de opgegeven actie(s) uitvoert. 9 | 10 | De huidige lijst met mogelijkheden binnen URL-schema’s is beperkt tot het installeren van apps en bronnen (sources), maar deze zal in de toekomst worden uitgebreid om meerdere invoeren te ondersteunen en een bredere reeks taken uit te voeren. 11 | 12 | ## Een extern gehoste app installeren 13 | 14 | ``` 15 | sidestore://install?url=[download url] 16 | ``` 17 | 18 | ## Een AltSource toevoegen 19 | 20 | ``` 21 | sidestore://source?url=[source url] 22 | ``` -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Esquema de URL 3 | description: Una guía sobre Esquemas de URL. 4 | --- 5 | 6 | # Esquema de URL 7 | 8 | Lo suigiente es la lista de diferentes esquema de URL que pueden ser usados para interactuar con SideStore. Estas pueden ser increiblemente útiles porque permiten a los desarrolladores a simplemente usar un link de un click en sus redes sociales o pagina web, y iOS abrira el link directamente en SideStore, haciendo la o las acciones especificadas. 9 | 10 | La lista actual de cosas que puedes hacer usando los esquemas de URL esta limitado a instalar apps o fuentes, pero se expandera en el futuro para usar distintos inputs y hacer una variedad de tareas. 11 | 12 | ## Instala una app hosteada remotamente 13 | 14 | ``` 15 | sidestore://install?url=[URL de descarga] 16 | ``` 17 | 18 | ## Añade un AltSource 19 | 20 | ``` 21 | sidestore://source?url=[URL de fuente] 22 | ``` 23 | -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sơ đồ URL 3 | description: Hướng dẫn về lược đồ url. 4 | --- 5 | 6 | # Sơ đồ URL 7 | 8 | Sau đây là danh sách các URL Scheme khác nhau có thể được sử dụng để tương tác với SideStore. Những URL Scheme này cực kỳ hữu ích vì chúng cho phép các nhà phát triển chỉ cần đặt một liên kết một lần nhấp vào phương tiện truyền thông xã hội hoặc trang web của họ và iOS sẽ mở liên kết trực tiếp trong SideStore, thực hiện hành động(các hành động) được chỉ định. 9 | 10 | Danh sách hiện tại về những việc bạn có thể làm khi sử dụng URL Scheme chỉ giới hạn ở việc cài đặt ứng dụng và nguồn, nhưng danh sách này sẽ được mở rộng trong tương lai để tiếp nhận nhiều đầu vào và thực hiện nhiều tác vụ khác. 11 | 12 | ## Cài đặt ứng dụng được lưu trữ từ xa 13 | 14 | ``` 15 | sidestore://install?url=[url để tải] 16 | ``` 17 | 18 | ## Thêm AltSource 19 | 20 | ``` 21 | sidestore://source?url=[url nguồn] 22 | ``` 23 | -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/installation/post-install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Post-Installatie Instructies 3 | description: Je bent er bijna, nog een paar stappen! 4 | sidebar_position: 6 5 | --- 6 | 7 | De laatste stap voor het installeren van SideStore is om SideStore binnen de app zelf te vernieuwen. 8 | 9 | Om dit te doen, moet je: 10 | 11 | 1. Verbinden met StosVPN. 12 | 2. SideStore openen. 13 | 3. Als je dit nog niet hebt gedaan, het pairing-bestand selecteren. 14 | 4. Naar “My Apps” gaan. 15 | 5. De knop “x DAYS” selecteren, waarbij x het aantal dagen is tot de vervaldatum. 16 | * Als dit succesvol is, opent er een lege Safari-tab of ga je terug naar je beginscherm. Je krijgt ook een notificatie die je vertelt dit te doen. 17 | 18 | Als SideStore niet wordt vernieuwd, zorgt een bug voor voortijdige vervaldatum en moet je SideStore opnieuw installeren. Er is een plan om dit automatisch te laten verlopen, maar voorlopig moet het nog handmatig gedaan worden. 19 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/advanced/url-schema.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Schéma d'URL 3 | description: Un guide sur le schéma d'URL. 4 | --- 5 | 6 | # Schéma d'URL 7 | 8 | Voici la liste des différents schémas d'URL qui peuvent être utilisés pour interagir avec SideStore. Ils sont extrêmement utiles car ils permettent aux développeurs d'ajouter simplement un lien en un clic sur leurs réseaux sociaux ou sites web, et iOS ouvrira directement le lien dans SideStore, en effectuant l'action spécifiée. 9 | 10 | La liste actuelle des actions que vous pouvez effectuer avec les schémas d'URL est limitée à l'installation d'applications et de sources, mais elle sera étendue à l'avenir pour accepter plusieurs entrées et effectuer une variété d'autres tâches. 11 | 12 | ## Installer une application hébergée à distance 13 | 14 | ``` 15 | sidestore://install?url=[URL de téléchargement] 16 | ``` 17 | 18 | ## Ajouter une AltSource 19 | 20 | ``` 21 | sidestore://source?url=[URL source] 22 | ``` -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/installation/mac.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Установка через macOS 3 | description: Инструкция по установке SideStore через macOS 4 | sidebar_position: 4 5 | --- 6 | 7 | Перед началом, выполните шаги [подготовки](prerequisites) и получите [файл сопряжения](pairing-file)! 8 | 9 | 1. Загрузите и запустите AltServer с [сайта AltStore](https://AltStore.io). 10 | 2. Загрузите IPA файл SideStore который Вы можете найти [здесь](https://github.com/sidestore/sidestore/releases/latest/download/sidestore.ipa). 11 | 3. Зажмите option/alt и нажмите на иконку AltServer в трее. Нажмите "Sideload .ipa", и выберите IPA файл SideStore. 12 | 4. Подтвердите "ПО разработчика" с Вашей почтой Apple ID. 13 | * Вы можете найти это в настройках, во вкладке "Основные", "VPN и управление устройством". 14 | 5. Откройте SideStore, выберите файл сопряжения и выполните вход в Ваш Apple ID. 15 | 16 | Когда завершите, выполните действия из [инструкции после установки](post-install). 17 | -------------------------------------------------------------------------------- /docs/advanced/pairing-file.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pairing File 3 | description: A guide on manually reimporting your pairing file. 4 | --- 5 | :::warning 6 | Your pairing file may expire and need to be reimported if you update or reset your iPhone, iPad, or iPod touch. This also occurs at random times. This is Apple's fault and there is nothing we can do to fix it. This guide instructs you how to manually replace your pairing file with iloader. 7 | ::: 8 | 9 | ## Replacing your pairing file 10 | 1. Make sure you have followed the steps in the [install guide](/docs/installation/prerequisites) to install and setup iloader and SideStore. If iloader prompts you to update it, click 'Yes'. 11 | 2. For most reliable results, connect your iPhone, iPad, or iPod touch to your computer via a USB cable. If your device only appears wirelessly, that should work too. 12 | 3. Click 'Manage Pairing File'. 13 | 4. To the right of "SideStore" and any other apps you wish, click 'Place'. "Pairing file placed successfully!" should appear in green. 14 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/installation/mac.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: macOS Instructions 3 | description: Instructions for installing SideStore using macOS 4 | sidebar_position: 4 5 | --- 6 | 7 | Before you start, make sure to have all steps completed found in the [Prerequisites](prerequisites), and that you have a [pairing file](pairing-file)! 8 | 9 | 1. Download and run AltServer from [AltStore's website](https://AltStore.io). 10 | 2. Download the SideStore IPA which you can find [here](https://github.com/sidestore/sidestore/releases/latest/download/sidestore.ipa). 11 | 3. Hold option/alt and click on the AltServer menu bar icon. Click "Sideload .ipa", and select the SideStore IPA file. 12 | 4. Approve the "Developer App" with your Apple ID's email. 13 | * You can find this in Settings, under "General", and then "VPN & Device Management". 14 | 5. Open SideStore, select your pairing file, and sign in with your Apple ID. 15 | 16 | When you finish, then follow the [post-install instructions](post-install). 17 | -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-docs/current/advanced/pairing-file.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pairing-fil 3 | description: En guide för att manuellt importera pairing-filen igen. 4 | --- 5 | :::warning 6 | Var uppmärksam på att pairing-filen löper ut om du uppdaterar eller nollställer din iDevice, och du måste importera den igen. Det kan även hända slumpmässigt. Det beror på hur Apples mjukvara fungerar och vi kan tyvärr inte göra något åt det. Den här guiden visar hur du importerar pairing-filen i SideStore via iloader. 7 | ::: 8 | 9 | ## Importera pairing-filen på nytt 10 | 1. Säkerställ att du följt stegen i [installationsguiden](/docs/installation/prerequisites) för att installera och konfigurera iloader och SideStore. 11 | 2. För bästa resultat: anslut din iDevice till datorn med USB-kabel, men om den visas trådlöst går det också bra. 12 | 3. Klicka på "Manage Pairing File". 13 | 4. Till höger om "SideStore" (och andra appar du vill) klickar du på "Place Pairing File". Texten "Pairing file placed successfully!" visas då i grönt. 14 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/installation/linux.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Linux Instructions 3 | description: Instructions for installing SideStore using Linux 4 | sidebar_position: 5 5 | --- 6 | 7 | To install SideStore (or any other IPA) on Linux, make sure you have Docker installed. Before you start, make sure to install StosVPN and any other and [prerequisites](prerequisites) that are satisfied! 8 | 9 | 1. Run altcon with Docker 10 | ```bash 11 | docker run --rm -it -e ALTSERVER_ANISETTE_SERVER="https://ani.sidestore.io/" -v ${PWD}/:/mnt/ -v /var/run:/var/run ghcr.io/sidestore/altcon 12 | ``` 13 | 14 | You can also run altcon with Podman 15 | ```bash 16 | podman run --privileged --rm -it -e ALTSERVER_ANISETTE_SERVER="https://ani.sidestore.io/" -v ${PWD}/:/mnt/ -v /var/run:/var/run ghcr.io/sidestore/altcon 17 | ``` 18 | 19 | Altcon will start to pair with your device, plug it in if you haven't. Press "trust" and enter your passcode. 20 | 21 | When you finish, then follow the [post-install instructions](post-install). 22 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/installation/linux.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Установка через Linux 3 | description: Инструкция по установке SideStore через Linux 4 | sidebar_position: 5 5 | --- 6 | 7 | Для установки SideStore (или любого другого IPA файла) на Linux, нужно установить Docker. Перед тем как начать, установите StosVPN и остальное из [подготовки](prerequisites)! 8 | 9 | 1. Запустите altcon через Docker 10 | ```bash 11 | docker run --rm -it -e ALTSERVER_ANISETTE_SERVER="https://ani.sidestore.io/" -v ${PWD}/:/mnt/ -v /var/run:/var/run ghcr.io/sidestore/altcon 12 | ``` 13 | 14 | Также возможен запуск altcon через Podman 15 | ```bash 16 | podman run --privileged --rm -it -e ALTSERVER_ANISETTE_SERVER="https://ani.sidestore.io/" -v ${PWD}/:/mnt/ -v /var/run:/var/run ghcr.io/sidestore/altcon 17 | ``` 18 | 19 | Altcon начнёт сопряжение с Вашим устройством, подключите устройство, если ещё этого не сделали. Подтвердите запрос на доверие Вашему ПК. 20 | 21 | Когда завершите, выполните действия из [инструкции после установки](post-install). 22 | -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/installation/linux.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Linux Instructies 3 | description: Instructies voor het installeren van SideStore met Linux 4 | sidebar_position: 5 5 | --- 6 | 7 | Om SideStore (of een andere IPA) op Linux te installeren, zorg je ervoor dat Docker is geïnstalleerd. Voordat je begint, installeer StosVPN en zorg dat alle andere [vereisten](prerequisites) zijn voldaan! 8 | 9 | 1. Voer altcon uit met Docker 10 | ```bash 11 | docker run --rm -it -e ALTSERVER_ANISETTE_SERVER="https://ani.sidestore.io/" -v ${PWD}/:/mnt/ -v /var/run:/var/run ghcr.io/sidestore/altcon 12 | ``` 13 | Je kunt altcon ook uitvoeren met Podman 14 | 15 | ```bash 16 | podman run --privileged --rm -it -e ALTSERVER_ANISETTE_SERVER="https://ani.sidestore.io/" -v ${PWD}/:/mnt/ -v /var/run:/var/run ghcr.io/sidestore/altcon 17 | ``` 18 | 19 | Altcon zal beginnen met koppelen aan je apparaat; sluit het aan als je dat nog niet hebt gedaan. Druk op “trust” en voer je toegangscode in. 20 | 21 | Wanneer je klaar bent, volg dan de post-install instructies. 22 | -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/installation/mac.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: macOS Instructions 3 | description: Instructies voor het installeren van SideStore met macOS 4 | sidebar_position: 4 5 | --- 6 | 7 | Voordat je begint, zorg dat je alle stappen hebt voltooid uit de [Prerequisites](prerequisites) en dat je een [pairing-bestand](pairing-file) hebt! 8 | 9 | 1. Download en start AltServer vanaf [AltStore's website](https://AltStore.io). 10 | 2. Download de SideStore IPA, die je [hier](https://github.com/sidestore/sidestore/releases/latest/download/sidestore.ipa) kunt vinden. 11 | 3. Houd option/alt ingedrukt en klik op het AltServer-pictogram in de menubalk. Klik op "Sideload .ipa" en selecteer het SideStore-IPA-bestand. 12 | 4. Keur de "Developer App" goed met het e-mailadres van je Apple ID. 13 | * Je vindt dit in Instellingen, onder "Algemeen", en vervolgens "VPN & apparaatbeheer". 14 | 5. Open SideStore, selecteer je pairing-bestand en log in met je Apple ID. 15 | 16 | Wanneer je klaar bent, volg dan de [post-install instructies](post-install). 17 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/installation/prerequisites.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 前提条件 3 | description: 'インストールの最初のステップ' 4 | sidebar_position: 1 5 | --- 6 | 7 | SideStore のインストールプロセスは少し複雑に思えるかもしれませんが、***一度だけ***コンピュータを使用し、少しの時間でデバイスに SideStore をインストールすることができます! 8 | 9 | ## 必要条件 10 | 11 | SideStore をインストールするには、以下が必要です: 12 | - iOS または iPadOS 14 以上を搭載した iOS または iPadOS デバイス。 13 | - Windows、macOS、または Linux コンピュータ(Linux サポートは実験的)。 14 | - Apple ID。 15 | - StosVPN アプリ。 16 | - 多少の時間(迅速なプロセスですが、トラブルシューティングの時間を確保してください)。 17 | 18 | iOS/iPadOS 16 以上のユーザーは、**必ず**開発者モードを有効にする必要があります。手順は以下の通りです: 19 | 1. 設定アプリを開く。 20 | 2. 「プライバシーとセキュリティ」セクションに進む。 21 | 3. 画面下部で「開発者モード」をオンにする。 22 | 23 | > **注意:** 「開発者モード」のオプションは、SideStore を正常にインストールした後にのみ表示されます。 24 | 25 | ## StosVPN 26 | 27 | SideStore は、SideStore が内部サービスと通信できるようにするデバイス上の VPN を使用します。 28 | 29 | 1. [公式 App Store](https://apps.apple.com/us/app/stosvpn/id6744003051) から StosVPN アプリをダウンロードします。 30 | 2. VPN を有効にします。 31 | 32 | この VPN は、SideStore でアプリをインストールまたは更新する際に常にオンにする必要があります。 33 | 34 | ## 次のステップ 35 | 36 | 次のページに進み、ペアリングファイルを生成しましょう! 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SideStore Documentation 2 | 3 | This is the official GitHub repository for SideStore's documentation hosted at . 4 | 5 | This project is licensed under the [GNU Affero General Public License](LICENSE). 6 | 7 | ## Installation 8 | 9 | ```shell 10 | yarn 11 | ``` 12 | 13 | ### Local Development 14 | 15 | ```shell 16 | yarn start 17 | ``` 18 | 19 | This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. 20 | 21 | ### Build 22 | 23 | ```shell 24 | yarn build 25 | ``` 26 | 27 | This command generates static content into the `build` directory and can be served using any static contents hosting service. 28 | 29 | ### Deployment 30 | 31 | The documentation uses GitHub Pages as hosting. To deploy to GitHub Pages, simply commit to the `main` branch. GitHub Actions will automatically build and deploy to Pages! 32 | 33 | ## Status 34 | 35 | ![Alt](https://repobeats.axiom.co/api/embed/7fd3c052892e88d60945586ce1a82feeb709bd8a.svg "Repobeats analytics image") 36 | -------------------------------------------------------------------------------- /i18n/zh/docusaurus-plugin-content-docs/current/installation/install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 安装指引 3 | description: 将SideStore安装至您的苹果设备上 4 | sidebar_position: 2 5 | --- 6 | ## 安装SideStore 7 | 1. 使用数据线将您的苹果设备连接到电脑上。如果弹出了是否信任电脑的提示框的话,信任电脑并输入您的锁屏密码 8 | 2. 打开iloader 9 | 3. 登录您的Apple账户 10 | 4. 选择您的苹果设备 11 | 3. 选择"Install SideStore". 12 | 13 | ### 需要在您的苹果设备上进行的操作 14 | 请参考以下步骤 15 | 1. 打开“设置” 16 | 2. 点击“通用”,“VPN与设备管理” 17 | 3. 在“开发者APP”下找到您Apple账户的邮箱,点击该邮箱,并在接下来的页面点击“验证 App” 18 | 4. 在设置的主界面找到“隐私与安全性” 19 | 5. 划到页面的底部,打开“开发者模式”,此时您的设备应该会重启 20 | 6. 打开StosVPN,点击“Connect” 21 | 7. 打开SideStore 22 | 9. 使用您前面使用的Apple账户登录 23 | 10. 点击"My Apps". 24 | 11. 点击SideStore右侧的"x DAYS"按钮,(x是应用过期的剩余天数) 25 | 12. 此时应该弹出一个提示框询问您创建一个新的签名证书,点击"Refresh Now" 26 | 27 | 在进行完这一步后,SideStore会退出,返回至您的桌面。同时您会收到一条通知,在几秒后SideStore就可以使用了。 28 | 29 | 需要注意的是,如果您的设备升级/重置了,您的配对用文件会过期,您需要使用[这条指南](/docs/advanced/pairing-file)重新导入。当然配对用文件也可能因为Apple的应用政策过期。 30 | 31 | 如果您使用iloader重新安装了SideStore,您原来的证书可能会被吊销,这时需要您再次手动刷新应用。 32 | 33 | 如果您想使用同一个Apple ID在另一台设备上安装SideStore,请[参考这几个步骤](https://github.com/SideStore/SideStore/pull/1008#issue-3138680291)。 34 | 35 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/advanced/pairing-file.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pairing-Datei 3 | description: Eine Anleitung zum manuellen Reimport der Pairing-Datei. 4 | --- 5 | :::warning 6 | Achtung: Wenn Sie Ihr Apple-Gerät aktualisieren oder zurücksetzen, wird Ihre Pairing-Datei ungültig und Sie müssen mithilfe von [dieser Anleitung](/docs/advanced/pairing-file) sie wieder importieren. Dies kann auch wegen Apples Software zufällig geschehen. Wir können dagegen leider nichts tun. Diese Anleitung hilft Ihnen ihre Pairing-Datei mit iloader manuell zu reimportieren. 7 | ::: 8 | 9 | ## Reimportieren der Pairing-Datei 10 | 1. Stellen Sie sicher, dass Sie diese [Anleitung](/docs/installation/prerequisites) zur Einrichtung von iloader und Installation von SideStore befolgt haben. 11 | 2. Verbinden Sie ihr Gerät für das beste Ergebnis mit einem USB-Kabel, ansonsten können Sie es kabellos durchführen, wenn Ihr Gerät auftaucht. 12 | 3. Klicken Sie auf "Manage Pairing File" 13 | 4. Klicken Sie rechts von "SideStore" oder anderen gewünschten Apps auf "Place Pairing File". Ein grünes "Pairing file placed successfully!" sollte auftauchen. 14 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/installation/windows.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Windowsでのインストール 3 | description: Windowsを使用したSideStoreのインストール手順 4 | sidebar_position: 3 5 | --- 6 | 7 | Windowsをお使いの場合は、**Microsoft Store版ではない**以下のソフトがインストールされていることを確認してください: 8 | - [iCloud](https://updates.cdn-apple.com/2020/windows/001-39935-20200911-1A70AA56-F448-11EA-8CC0-99D41950005E/iCloudSetup.exe) 9 | - [iTunes](https://support.apple.com/en-us/HT210384) 10 | 11 | また、事前に[前提条件](prerequisites) と [ペアリングファイル](pairing-file) の準備を完了していることを確認してください。 12 | 13 | > **注意:** Microsoft Store版のiCloudは2022年9月中旬頃にAppleのサイトから削除されました。上記リンクは互換性のある古いバージョンへ直接アクセスできます。 14 | 15 | 1. [AltStoreのサイト](https://altstore.io/)からAltServerをダウンロードして実行します。 16 | 2. 最新のSideStore IPAを[こちら](https://github.com/sidestore/sidestore/releases/latest/download/sidestore.ipa)からダウンロードします。 17 | 3. Shiftキーを押しながらタスクトレイのAltServerアイコンをクリックし、「Sideload .ipa」を選択してSideStore IPAを指定します。 18 | 4. Apple IDのメールアドレスで「Developer App」を承認します。 19 | * 設定アプリの「一般」→「VPNとデバイス管理」から確認できます。 20 | 5. SideStoreを開き、ペアリングファイルを選択してからApple IDでサインインします。 21 | 22 | インストール完了後は、[インストール後の手順](post-install) に進んでください。 23 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/advanced/pairing-file.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: File di Pairing 3 | description: Guida per reimportare manualmente il pairing file. 4 | --- 5 | :::warning 6 | Il tuo pairing file potrebbe scadere e deve essere reimportato se aggiorni o formatti il tuo iPhone, iPad o iPod Touch. Questo succede anche randomicamente a causa di Apple, non c'è niente che possiamo fare per prevenirlo. Questa guida ti insegna a importare manualmente il pairing file in SideStore utilizzando iloader. 7 | ::: 8 | 9 | ## Reimportare il pairing file 10 | 1. Assicurati di aver seguito gli step nella [guida di installazione](/docs/installation/prerequisites) per installare e configurare iloader e SideStore. Se iloader ti chiede di essere aggiornato, tocca 'Yes' 11 | 2. Per un funzionamento più affidabile, collega il tuo iPhone, iPad o iPod Touch al computer tramite cavo USB. Se il tuo dispositivo appare solo in modalità wireless, funzionerà comunque. 12 | 3. Clicca 'Manage Pairing File'. 13 | 4. Alla destra di "SideStore" e qualsiasi altra app tu voglia, clicca 'Place'. Dovrebbe apparire "Pairing file placed successfully!" in verde. 14 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: アプリソース 3 | description: カスタムアプリソースに関するガイド。 4 | --- 5 | 6 | # ソースを作成する 7 | 8 | SideStoreはAltSourcesと完全に互換性があります。公式のAltStore [ソースドキュメント](https://faq.altstore.io/developers/make-a-source)では、独自のAltSourceを作成するために必要な詳細が提供されています。AltSourcesを使用すると、ユーザーはAltStoreおよびSideStoreを通じて利用可能なすべてのアプリを簡単に表示、インストール、更新することができます。 9 | 10 | ソースを編集する際には、[AltSource Browser](https://altsource.by.lao.sb/browse)を使用して変更のドラフトを作成・表示し、ソースのビジュアル表示を確認して、エラーを修正した後に最終的な変更を公開することを強くお勧めします。 11 | 12 | # ソースの配布 13 | 14 | AltSourceを自動的に追加するリンクを作成するには、以下のテンプレートを使用します: 15 | ``` 16 | sidestore://source?url=[source url] 17 | ``` 18 | 詳細については、[URLスキーマ](/docs/advanced/url-schema)を参照してください。この形式でAltSourceへのリンクを作成し、```tinyurl.com```のようなリンク短縮サービスに入れることがよく役立ちます。しかし、ユーザーがSideStoreがインストールされていない状態でsidestore://リンクを使用しようとするとクラッシュするため、いくつかのドキュメントを提供することをお勧めします。 19 | 20 | ## これで完了! 21 | 22 | こちらは既存の良いAltSourcesです:[公式AltStore](https://apps.altstore.io)ソース、[SideStoreコミュニティ](https://github.com/SideStore/Community-Source)ソース、[StikJIT](https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json)ソース、[DolphiniOS](https://altstore.oatmealdome.me)ソース。 23 | -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/installation/mac.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Hướng dẫn cho MacOS 3 | description: Hướng dẫn cài đặt SideStore sử dụng hệ điều hành macOS 4 | sidebar_position: 4 5 | --- 6 | 7 | Trước khi bắt đầu, hãy đảm bảo bạn đã hoàn thành tất cả các bước trong [Điều kiện cho máy](prerequisites), và bạn có một [tệp kết nối](pairing-file)! 8 | 9 | 1. Tải và chạy AltServer từ [Trang chủ của AltStore](https://AltStore.io). 10 | 2. Tải SideStore IPA từ trang chủ github của [SideStore](https://github.com/sidestore/sidestore/releases/latest/download/sidestore.ipa). 11 | 3. Ấn giữ nút option/alt và dùng con trỏ ấn vào biểu tượng [AltServer](https://media.idownloadblog.com/wp-content/uploads/2020/02/macOS-Big-Sur-select-device-to-install-AltStore.jpg) biểu tượng trên thanh menu. Ấn vào "Sideload .ipa", và chọn tệp sidestore.ipa. 12 | 4. Phê duyệt "Ứng dụng dành cho nhà phát triển" bằng tài khoản Apple ID của bạn. 13 | * Bạn có thể tìm thấy phần này trong phần Cài đặt, "Cài đặt chung", "Quản lý VPN & Thiết bị". 14 | 5. Mở SideStore, chọn tệp kết nối, và đăng nhập vào tài khoản Apple ID của bạn 15 | 16 | Khi đã hoàn tất, hãy tiếp tục đến [hướng dẫn sau khi cài đặt](post-install). 17 | -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/installation/linux.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Hướng dẫn cho Linux 3 | description: Hướng dẫn tải SideStore sử dụng hệ điều hành Linux 4 | sidebar_position: 5 5 | --- 6 | 7 | Để tải SideStore (hoặc bất kì IPA nào khác) trên hệ điều hành Linux, hãy chắc chắn rằng bạn có Docker tải về. Trước khi bắt đầu, hãy đảm bảo cài đặt [StosVPN](https://apps.apple.com/us/app/stosvpn/id6744003051) và bất kỳ phần mềm nào khác và [điều kiện cho máy](prerequisites) đã đầy đủ! 8 | 9 | 1. Chạy altcon bằng Docker 10 | ```bash 11 | docker run --rm -it -e ALTSERVER_ANISETTE_SERVER="https://ani.sidestore.io/" -v ${PWD}/:/mnt/ -v /var/run:/var/run ghcr.io/sidestore/altcon 12 | ``` 13 | 14 | Bạn có thể chạy altcon bằng Podman 15 | ```bash 16 | podman run --privileged --rm -it -e ALTSERVER_ANISETTE_SERVER="https://ani.sidestore.io/" -v ${PWD}/:/mnt/ -v /var/run:/var/run ghcr.io/sidestore/altcon 17 | ``` 18 | 19 | 2. Altcon sẽ bắt đầu kết nối tới thiết bị của bản, hãy gắn thiết bị của bạn vào máy bằng dây đi theo thiết bị của bạn. Ấn "tin cậy"/"tin tưởng"/"trust" và điền vào mật khẩu của thiết bị IOS/Ipad của bạn. 20 | 21 | 3. Khi đã hoàn thành, hãy tiếp tục với phần [hướng dẫn sau khi cài đặt](post-install). 22 | -------------------------------------------------------------------------------- /i18n/zh/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 应用源 3 | description: 自定义应用源的指南 4 | --- 5 | 6 | # 创建应用源 7 | 8 | SideStore与AltStore源(或AltSources)完全兼容。官方AltSource[文档](https://faq.altstore.io/developers/make-a-source)提供了制作自己的AltSource所需的所有详细信息。AltSources允许您的受众轻松查看、安装和更新所有可用的应用程序。 9 | 10 | 以下是一些推荐的第三方工具,可以帮助您创建查看AltSources: 11 | -您可以使用社区构建的[AltStudio](https://altstudio.app/)(开发中)来使用IPA文件自动为您生成AltSource!(注意:在使用AltStudio创建源后,您必须移除默认自动生成的`marketplaceID`和`Build`字段,否则SideStore会误认它是经过公证的源,并阻止添加该源) 12 | -您可以在完成更改之前,使用社区构建的[AltSource浏览器](https://altsource.by.lao.sb/browse/)以可视化方式查看您对AltSource草稿的更新,从而在发布之前更正任何错误! 13 | 14 | # 分发您的应用源 15 | 16 | 您可以用此模板创建一个链接,以便自动的添加您的AltSource: 17 | ``` 18 | sidestore://source?url=[source url] 19 | ``` 20 | 欲了解更多信息,请参阅[URL Schema](/docs/advanced/url-schema)。将您的AltSource链接以这种格式创建后,通常会将其放入 tinyurl.com 等链接缩短服务中,会很有帮助。然而,如果用户在未安装SideStore的情况下尝试使用 sidestore:// 链接,应用将会崩溃,因此提供一些说明文档可能会有帮助。 21 | 22 | ## 就是这样! 23 | 24 | 以下是一些不错的现有AltSource,您可以复制并粘贴到SideStore中使用:[SideStore 社区源](https://github.com/SideStore/Community-Source)、[官方 AltStore 源](https://apps.altstore.io)、[LiveContainer 源](https://raw.githubusercontent.com/LiveContainer/LiveContainer/refs/heads/main/apps.json)和[DolphiniOS 源](https://altstore.oatmealdome.me). 25 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "side-store-docs", 3 | "version": "0.0.0", 4 | "private": true, 5 | "scripts": { 6 | "docusaurus": "docusaurus", 7 | "start": "docusaurus start", 8 | "build": "docusaurus build", 9 | "swizzle": "docusaurus swizzle", 10 | "deploy": "docusaurus deploy", 11 | "clear": "docusaurus clear", 12 | "serve": "docusaurus serve", 13 | "write-translations": "docusaurus write-translations", 14 | "write-heading-ids": "docusaurus write-heading-ids" 15 | }, 16 | "dependencies": { 17 | "@docusaurus/core": "^3.9.2", 18 | "@docusaurus/preset-classic": "^3.9.2", 19 | "@mdx-js/react": "^3.1.1", 20 | "clsx": "^2.0.0", 21 | "docusaurus-lunr-search": "^3.6.0", 22 | "prism-react-renderer": "^2.3.0", 23 | "react": "^19.2.0", 24 | "react-dom": "^19.2.0" 25 | }, 26 | "devDependencies": { 27 | "@docusaurus/module-type-aliases": "3.9.2", 28 | "@docusaurus/types": "3.9.2" 29 | }, 30 | "browserslist": { 31 | "production": [ 32 | ">0.5%", 33 | "not dead", 34 | "not op_mini all" 35 | ], 36 | "development": [ 37 | "last 3 chrome version", 38 | "last 3 firefox version", 39 | "last 5 safari version" 40 | ] 41 | }, 42 | "engines": { 43 | "node": ">=18.0" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Any CSS included here will be global. The classic template 3 | * bundles Infima by default. Infima is a CSS framework designed to 4 | * work well for content-centric websites. 5 | */ 6 | 7 | /* You can override the default Infima variables here. */ 8 | :root { 9 | --ifm-color-primary: rgb(123, 44, 175); 10 | --ifm-color-primary-dark: rgb(92, 29, 134); 11 | --ifm-color-primary-darker: rgb(74, 22, 109); 12 | --ifm-color-primary-darkest: rgb(74, 16, 112); 13 | --ifm-color-primary-light: rgb(130, 46, 187); 14 | --ifm-color-primary-lighter: rgb(145, 52, 207); 15 | --ifm-color-primary-lightest: rgb(145, 51, 207); 16 | --ifm-code-font-size: 95%; 17 | --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); 18 | } 19 | 20 | /* For readability concerns, you should choose a lighter palette in dark mode. */ 21 | [data-theme='dark'] { 22 | --ifm-color-primary: rgb(123, 44, 175); 23 | --ifm-color-primary-dark: rgb(92, 29, 134); 24 | --ifm-color-primary-darker: rgb(74, 22, 109); 25 | --ifm-color-primary-darkest: rgb(74, 16, 112); 26 | --ifm-color-primary-light: rgb(130, 46, 187); 27 | --ifm-color-primary-lighter: rgb(145, 52, 207); 28 | --ifm-color-primary-lightest: rgb(145, 51, 207); 29 | --docusaurus-highlighted-code-line-bg: rgba(255, 255, 255, 0.1); 30 | } 31 | -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- 1 | import clsx from 'clsx'; 2 | import Link from '@docusaurus/Link'; 3 | import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; 4 | import Layout from '@theme/Layout'; 5 | import HomepageFeatures from '@site/src/components/HomepageFeatures'; 6 | 7 | import Heading from '@theme/Heading'; 8 | import styles from './index.module.css'; 9 | 10 | function HomepageHeader() { 11 | const {siteConfig} = useDocusaurusContext(); 12 | return ( 13 |
14 |
15 | 16 | {siteConfig.title} 17 | 18 |

{siteConfig.tagline}

19 |
20 | 23 | Get Started! 24 | 25 |
26 |
27 |
28 | ); 29 | } 30 | 31 | export default function Home() { 32 | const {siteConfig} = useDocusaurusContext(); 33 | return ( 34 | 37 | 38 |
39 | 40 |
41 |
42 | ); 43 | } 44 | -------------------------------------------------------------------------------- /i18n/zh/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 常见问题 3 | description: 在使用SideStore的过程中出现的常见问题 4 | --- 5 | 6 | :::warning 7 | 8 | 此页面目前还在完善过程中。页面提供的信息应该是准确的,但如如果需要帮助,请前往我们的[Discord服务器](https://discord.gg/sidestore-949183273383395328)进行提问。 9 | 10 | ::: 11 | 12 | ## SideStore的常见问题 13 | 14 | ### 我收到错误代码:"X" 15 | #### 解决方案 16 | 确认我们提供的[错误代码列表](error-codes)! 17 | 18 | ### AFC连接失败 19 | #### 原因 20 | 连接问题或是配对文件不可用。 21 | #### 解决方案 22 | 1. 尝试重新连接,确保Wi-Fi和StosVPN均已连接 23 | 2. 使用iloader生成并导入新的配对文件 24 | 25 | ### 没有Wi-Fi或VPN的连接 26 | #### 原因 27 | minimuxer服务的连接出现了问题。 28 | #### 解决方案 29 | 1. 如果您正在使用WireGuard,请更换到StosVPN 30 | 2. 关闭任何的DNS阻止器 31 | 3. 再试一次(多点点总会有用的) 32 | 4. 重新启动SideStore 33 | 5. 重新启动StosVPN 34 | 6. 使用iloader生成并导入新的配对文件。 35 | 36 | ### SideStore在安装过程中挂起 37 | #### 原因 38 | 缓存或是协议出了问题。 39 | #### 解决方案 40 | 1. 如果您并未更新SideStore的话,请进行更新,否则重启 41 | 2. 清理缓存 42 | 3. 更换Anisette服务器 43 | 4. 在设置-Anisette服务器-中重置adi.pb,然后登出,并重新登录SideStore 44 | 5. 重启设备 45 | 6. 重新生成配对文件 46 | 7. 使用AltServer重新安装SideStore 47 | 48 | ### 无法启动SideStore 49 | #### 原因 50 | 存在多种可能的原因。 51 | #### 解决方案 52 | 1. 确保您已通过AltServer安装了SideStore 53 | 2. 重新安装SideStore 54 | 55 | 如果以上方案均不可用,请按照以下步骤操作: 56 | 57 | 1. 删除SideStore以及您在SideStore中安装的所有应用 58 | 2. 重新安装SideStore 59 | 3. 导入您的配对文件并登录。(接下来会提示您是否刷新SideStore,选择否) 60 | 4. 将`sidestore.ipa`安装到您的设备上 61 | 5. 将`sidestore.ipa`文件导入到SideStore,就像您安装其他IPA文件一样 62 | 6. 这会允许Sidestore进行一次全新的安装,希望这会解决您的问题 63 | 64 | 65 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/installation/prerequisites.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Prerequisites 3 | description: 'The first steps of installation.' 4 | sidebar_position: 1 5 | --- 6 | 7 | SideStore's installation process can seem tricky, but with the ***one-time*** use of a computer, and some time, you'll have SideStore on your device! 8 | 9 | ## Requirements 10 | 11 | To install SideStore, you will need: 12 | - An iOS or iPadOS device running iOS or iPadOS 14 or higher. 13 | - A Windows, macOS, or Linux computer (Linux support is experimental). 14 | - An Apple ID. 15 | - The StosVPN app. 16 | - Some time (This is a quick process, but you should leave time for troubleshooting). 17 | 18 | Users of iOS/iPadOS 16 or higher *must* have Developer Mode enabled. Do this by: 19 | 1. Open the Settings app. 20 | 2. Go to the 'Privacy and Security' section. 21 | 3. Turn on 'Developer Mode' at the bottom. 22 | 23 | > **Note:** You will only see the 'Developer Mode' option after you have successfully installed SideStore. 24 | 25 | ## StosVPN 26 | 27 | SideStore utilizes an on-device VPN which allows SideStore to communicate with internal services. 28 | 29 | 1. Download the StosVPN app from the [Official App Store](https://apps.apple.com/us/app/stosvpn/id6744003051). 30 | 2. Enable the VPN. 31 | 32 | This VPN is required to be on any time you wish to install or update apps in SideStore. 33 | 34 | ## Next Steps 35 | 36 | Now, go to the next page to generate your pairing file! 37 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/installation/windows.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Установка через Windows 3 | description: Инструкция по установке SideStore через Windows 4 | sidebar_position: 3 5 | --- 6 | 7 | Перепроверьте что вы используете версию [iCloud](https://updates.cdn-apple.com/2020/windows/001-39935-20200911-1A70AA56-F448-11EA-8CC0-99D41950005E/iCloudSetup.exe) и [iTunes](https://support.apple.com/en-us/HT210384) не из Microsoft Store. Перед тем как приступать, убедитесь, что Вы выполнили все шаги [подготовки](prerequisites), и то что у Вас есть [файл сопряжения](pairing-file)! 8 | 9 | Версия iCloud, не относящаяся к Microsoft Store, была удалена с веб-сайта Apple в середине сентября 2022 года. Приведенная выше ссылка ведет на старую версию iCloud, которая все ещё совместима и доступна с серверов Apple. 10 | 11 | 1. Загрузите и запустите AltServer с [сайта AltStore](https://altstore.io/). 12 | 2. Загрузите IPA файл SideStore, который Вы можете найти [здесь](https://github.com/sidestore/sidestore/releases/latest/download/sidestore.ipa). 13 | 3. Зажмите Shift и нажмите на иконку AltServer в трее. Нажмите "Sideload .ipa", и выберите IPA файл SideStore. 14 | 4. Подтвердите "ПО разработчика" с Вашей почтой Apple ID. 15 | * Вы можете найти это в настройках, во вкладке "Основные", "VPN и управление устройством". 16 | 5. Откройте SideStore, выберите файл сопряжения и выполните вход в Ваш Apple ID. 17 | 18 | Когда завершите, выполните действия из [инструкции после установки](post-install). 19 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: App Sources 3 | description: 커스텀 앱 소스 가이드에요. 4 | --- 5 | 6 | # 소스 만들기 7 | 8 | SideStore는 AltSources와 완벽하게 호환됩니다. 공식 AltSource [문서](https://faq.altstore.io/developers/make-a-source)에서 AltSource를 만드는 데 필요한 모든 세부 정보를 제공해줍니다. AltSources를 사용하면 사용자들이 AltStore와 SideStore 모두에서 쉽게 앱을 보고, 설치하고, 업데이트할 수 있습니다. 9 | 10 | AltSources를 생성하고 확인하는 데 도움이 될 수 있는 권장되는 제3자 도구 몇 가지를 소개해 드릴게요: 11 | - 커뮤니티에서 개발한 [AltStudio](https://altstudio.app/) (개발 중)를 사용하면 IPA를 통해 자동으로 AltSource를 생성할 수 있습니다! (주의: AltStudio로 소스를 생성한 후에는 기본적으로 자동 생성된 marketplaceID 및 Build 필드를 반드시 제거해야 해요. 그렇지 않으면 SideStore가 해당 소스를 공증된 소스로 인식하여 추가가 차단될수 있어요) 12 | - 커뮤니티에서 제작한 [AltSource 브라우저](https://altsource.by.lao.sb/browse/)를 사용하면 변경 사항을 최종 확정하기 전에 AltSource 초안에 대한 업데이트 내용을 시각적으로 확인할 수 있어, 게시 전에 오류를 수정할 수 있어요! 13 | 14 | # 소스 배포하기 15 | 16 | 다음 템플릿을 사용하여 AltSource를 자동으로 추가하는 링크를 만들 수 있습니다: 17 | ``` 18 | sidestore://source?url=[source url] 19 | ``` 20 | 자세한 내용은 [URL Schema](/docs/advanced/url-schema)를 참조하세요. AltSource 링크를 이 형식으로 만든 다음 ```tinyurl.com```과 같은 링크 단축 서비스에 넣는 것이 도움이 될 수 있습니다. 하지만 SideStore가 설치되어 있지 않은 상태에서 sidestore:// 링크를 사용하려고 하면 충돌이 발생할 수 있으므로, 일부 문서화가 도움이 될 수 있습니다. 21 | 22 | ## 끝! 23 | 24 | 다음은 좋은 기존 AltSources의 예시에요: The [공식 SideStore 커뮤니티 소스](https://github.com/SideStore/Community-Source), [공식 AltStore 소스](https://apps.altstore.io), [LiveContainer 소스](https://raw.githubusercontent.com/LiveContainer/LiveContainer/refs/heads/main/apps.json), 그리고 [DolphiniOS 소스](https://altstore.oatmealdome.me). -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/installation/windows.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Windows Installation 3 | description: Instructions for installing SideStore using Windows 4 | sidebar_position: 3 5 | --- 6 | 7 | Please make sure that on your machine the non-Microsoft Store versions of [iCloud](https://updates.cdn-apple.com/2020/windows/001-39935-20200911-1A70AA56-F448-11EA-8CC0-99D41950005E/iCloudSetup.exe) and [iTunes](https://support.apple.com/en-us/HT210384) are installed, if you are running Windows. Before you start, make sure to have all steps completed found in the [Prerequisites](prerequisites), and that you have a [Pairing File](pairing-file)! 8 | 9 | The non-Microsoft Store version of iCloud was removed from Apple’s website sometime in mid-September, 2022. The above link directs to an older version of iCloud that is still compatible, and still available directly from Apple’s servers. 10 | 11 | 1. Download and run AltServer from [AltStore's website](https://altstore.io/). 12 | 2. Download the SideStore IPA which you can find [here](https://github.com/sidestore/sidestore/releases/latest/download/sidestore.ipa). 13 | 3. Hold shift and click on the AltServer tray icon. Click "Sideload .ipa", and select the SideStore IPA file. 14 | 4. Approve the "Developer App" with your Apple ID's email. 15 | * You can find this in Settings, under "General", and then "VPN & Device Management". 16 | 5. Open SideStore, select your pairing file, and sign in with your Apple ID. 17 | 18 | When you finish, then follow the [post-install instructions](post-install). 19 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: Deploy to GitHub Pages 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | workflow_dispatch: 8 | # Review gh actions docs if you want to further define triggers, paths, etc 9 | # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on 10 | 11 | jobs: 12 | build: 13 | name: Build Docusaurus 14 | runs-on: ubuntu-latest 15 | steps: 16 | - uses: actions/checkout@v4 17 | with: 18 | fetch-depth: 0 19 | - uses: actions/setup-node@v4 20 | with: 21 | node-version: 20 22 | cache: yarn 23 | 24 | - name: Install dependencies 25 | run: yarn install --frozen-lockfile 26 | - name: Build website 27 | run: yarn build 28 | 29 | - name: Upload Build Artifact 30 | uses: actions/upload-pages-artifact@v3 31 | with: 32 | path: build 33 | 34 | deploy: 35 | name: Deploy to GitHub Pages 36 | needs: build 37 | 38 | # Grant GITHUB_TOKEN the permissions required to make a Pages deployment 39 | permissions: 40 | pages: write # to deploy to Pages 41 | id-token: write # to verify the deployment originates from an appropriate source 42 | 43 | # Deploy to the github-pages environment 44 | environment: 45 | name: github-pages 46 | url: ${{ steps.deployment.outputs.page_url }} 47 | 48 | runs-on: ubuntu-latest 49 | steps: 50 | - name: Deploy to GitHub Pages 51 | id: deployment 52 | uses: actions/deploy-pages@v4 -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/installation/windows.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Windows Installation 3 | description: Instructies voor het installeren van SideStore met Windows 4 | sidebar_position: 3 5 | --- 6 | 7 | Zorg ervoor dat op jouw Windows-machine de niet-Microsoft Store versies van [iCloud](https://updates.cdn-apple.com/2020/windows/001-39935-20200911-1A70AA56-F448-11EA-8CC0-99D41950005E/iCloudSetup.exe) en [iTunes](https://support.apple.com/en-us/HT210384) zijn geïnstalleerd. Voordat je begint, zorg dat je alle stappen in de [Prerequisites](prerequisites) hebt uitgevoerd en dat je een [Pairing File](pairing-file) hebt! 8 | 9 | De niet-Microsoft Store-versie van iCloud is halverwege september 2022 verwijderd van Apple’s website. De bovenstaande link verwijst naar een oudere iCloud-versie die nog steeds compatibel is en rechtstreeks vanaf Apple’s servers beschikbaar blijft. 10 | 11 | 1. Download en start AltServer vanaf [AltStore's website](https://altstore.io/). 12 | 2. Download de SideStore IPA, die je [hier](https://github.com/sidestore/sidestore/releases/latest/download/sidestore.ipa) kunt vinden. 13 | 3. Houd shift ingedrukt en klik op het AltServer-icoon in het systeemvak. Klik op "Sideload .ipa" en selecteer het SideStore-IPA-bestand. 14 | 4. Keur de "Developer App" goed met het e-mailadres van je Apple ID. 15 | * Je vindt dit in Instellingen, onder "Algemeen", en vervolgens "VPN & apparaatbeheer". 16 | 5. Open SideStore, selecteer je pairing-bestand en log in met je Apple ID. 17 | 18 | Wanneer je klaar bent, volg dan de [post-install instructies](post-install). 19 | -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Creating a sidebar enables you to: 3 | - create an ordered group of docs 4 | - render a sidebar for each doc of that group 5 | - provide next/previous navigation 6 | 7 | The sidebars can be generated from the filesystem, or explicitly defined here. 8 | 9 | Create as many sidebars as you want. 10 | */ 11 | 12 | // @ts-check 13 | 14 | /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ 15 | const sidebars = { 16 | // By default, Docusaurus generates a sidebar from the docs folder structure 17 | // tutorialSidebar: [{type: 'autogenerated', dirName: '.'}], 18 | 19 | // But you can create a sidebar manually 20 | 21 | tutorialSidebar: [ 22 | 'intro', 23 | { 24 | type: 'category', 25 | label: 'Installation', 26 | items: ['installation/prerequisites', 'installation/install'], 27 | }, 28 | 'faq', 29 | { 30 | type: 'category', 31 | label: 'Troubleshooting', 32 | items: ['troubleshooting/error-codes', 'troubleshooting/troubleshooting', 'troubleshooting/common-issues'], 33 | }, 34 | { 35 | type: 'category', 36 | label: 'Advanced', 37 | items: ['advanced/alternative', 'advanced/anisette', 'advanced/app-sources', 'advanced/jit', 'advanced/pairing-file', 'advanced/url-schema'], 38 | }, 39 | { 40 | type: 'category', 41 | label: 'Contributing', 42 | items: ['contributing/contributing', 'contributing/formatting', 'contributing/advanced-formatting'], 43 | }, 44 | 'release-notes', 45 | ], 46 | }; 47 | 48 | export default sidebars; 49 | -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/installation/prerequisites.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Prerequisites 3 | description: 'De eerste stappen van de installatie.' 4 | sidebar_position: 1 5 | --- 6 | 7 | Het installatieproces van SideStore kan ingewikkeld lijken, maar met het ***eenmalig*** gebruik van een computer en een beetje tijd staat SideStore zo op je apparaat! 8 | 9 | ## Vereisten 10 | 11 | Om SideStore te installeren heb je nodig: 12 | - Een iOS- of iPadOS-apparaat dat draait op iOS of iPadOS 14 of hoger. 13 | - Een Windows-, macOS- of Linux-computer (Linux-ondersteuning is experimenteel). 14 | - Een Apple ID. 15 | - De StosVPN-app. 16 | - Een beetje tijd (het proces is snel, maar houd tijd vrij voor eventuele problemen). 17 | 18 | Gebruikers van iOS/iPadOS 16 of hoger *moeten* de Ontwikkelaarsmodus inschakelen. Dit doe je zo: 19 | 1. Open de Instellingen-app. 20 | 2. Ga naar het onderdeel 'Privacy en beveiliging'. 21 | 3. Zet 'Ontwikkelaarsmodus' aan onderaan. 22 | 23 | > **Let op:** De optie ‘Ontwikkelaarsmodus’ verschijnt pas nadat je SideStore met succes hebt geïnstalleerd. 24 | 25 | ## StosVPN 26 | 27 | SideStore maakt gebruik van een VPN op het apparaat dat SideStore in staat stelt te communiceren met interne services. 28 | 29 | 1. Download de StosVPN-app uit de [officiële App Store](https://apps.apple.com/us/app/stosvpn/id6744003051). 30 | 2. Schakel de VPN in. 31 | 32 | Deze VPN moet zijn ingeschakeld wanneer je apps wilt installeren of bijwerken in SideStore. 33 | 34 | ## Volgende stappen 35 | 36 | Ga nu door naar de volgende pagina om je pairing-bestand te genereren! 37 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/installation/prerequisites.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Подготовка 3 | description: 'Первые шаги установки.' 4 | sidebar_position: 1 5 | --- 6 | 7 | Процес установки SideStore может выглядеть сложным, но с ***единоразовым*** использованием ПК и немного свободного времени, вы сможете установить SideStore! 8 | 9 | ## Требования 10 | 11 | Для установки SideStore, Вам потребуется: 12 | - Устройство iOS или iPadOS, работающее на iOS или iPadOS 14 или выше. 13 | - ПК на системе Windows, macOS, или Linux (Поддержка Linux является экспериментальной). 14 | - Аккаунт Apple ID. 15 | - Приложение "StosVPN". 16 | - Немного времени (Процесс достаточно быстрый, но лучше оставить время для возможного исправления неполадок). 17 | 18 | Пользователи iOS/iPadOS 16 или выше должны *обязательно* включить режим разработчка. Для этого: 19 | 1. Откройте приложение 'Настройки'. 20 | 2. Зайдите в вкладку 'Конфиденциальность и безопасность'. 21 | 3. Включите 'Режим разработчика' в самом низу. 22 | 23 | > **Заметка:** У вас появиться возможность включить режим разработчика только после успешной установки SideStore. 24 | 25 | ## StosVPN 26 | 27 | SideStore использует VPN на устройстве который позволяет SideStore "общаться" с внутренними службами. 28 | 29 | 1. Установите приложение 'StosVPN' из [официального App Store](https://apps.apple.com/us/app/stosvpn/id6744003051). 30 | 2. Включите VPN. 31 | 32 | Вам нужно будет включать этот VPN когда вы захотите установить или обновить приложение в Sidestore. 33 | 34 | ## Дальнейшие действия 35 | 36 | Тепеь, переходи на следующую страницу для того чтобы сгенерировать файл сопряжения! 37 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: よくある問題 3 | description: SideStoreで見つかるよくある問題について。 4 | --- 5 | 6 | :::warning 7 | 8 | このページは現在進行中です。提供された情報は正確であるべきですが、必要に応じて[Discordサーバー](https://discord.com/invite/sidestore)をご参照ください。 9 | 10 | ::: 11 | 12 | ## SideStoreに関するよくある問題 13 | 14 | ### AFC接続の失敗 15 | #### 原因 16 | 接続の問題、または無効なペアリングファイル。 17 | #### 解決策 18 | 1. 再接続を試みる 19 | 2. JitterbugPairを使用して新しいペアリングファイルを生成し、設定メニューからインポートする。[ペアリングファイルの手順](/docs/installation/pairing-file)を参照 20 | 21 | ### Wi-FiまたはVPN接続の不具合 22 | #### 原因 23 | minimuxerサービスとの接続の問題。 24 | #### 解決策 25 | 1. WireGuardを使用している場合、StosVPNに切り替える 26 | 2. 再度試してみる(ボタンを何度も押すと効果的な場合があります) 27 | 3. SideStoreを再起動する 28 | 4. StosVPNを再起動する 29 | 5. JitterbugPairを使用して新しいペアリングファイルを生成し、設定メニューからインポートする。[ペアリングファイルの手順](/docs/installation/pairing-file)を参照 30 | 31 | ### SideStoreがインストール途中でフリーズする 32 | #### 原因 33 | キャッシュの問題。 34 | #### 解決策 35 | 1. SideStoreを再起動する 36 | 2. キャッシュをクリアする 37 | 3. Anisetteサーバーを変更する 38 | 4. adi.pbをリセットする 39 | 5. SideStoreからサインアウトし、再度サインインする 40 | 6. WireGuardを使用する 41 | 7. デバイスを再起動する 42 | 8. ペアリングファイルを再生成する 43 | 9. SideStoreを再インストールする 44 | 45 | ### SideStoreを起動できない 46 | #### 原因 47 | 複数の原因が考えられる。 48 | #### 解決策 49 | 1. SideStoreをAltserverを通じてインストールしたことを確認する。 50 | 2. SideStoreを再インストールする 51 | 52 | 上記がうまくいかない場合、以下の手順を試してみてください: 53 | 54 | 1. SideStoreと、SideStoreからインストールしたすべてのアプリを削除する。 55 | 2. SideStoreを再インストールする。 56 | 3. ペアリングファイルを選択し、ログインする。(SideStoreのリフレッシュを促すポップアップが表示されますが、「あとで」を選択) 57 | 4. SideStore.ipaファイルをデバイスにインストールする。 58 | 5. SideStore.ipaファイルを通常のアプリインストールと同様にSideStoreにインポートする。 59 | 6. これにより、SideStoreがクリーンな状態で更新され、問題が解決する可能性があります。 60 | 61 | -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/installation/prerequisites.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Điều kiện cần thiết cho thiết bị của bạn 3 | description: 'Các bước cài đặt đầu tiên.' 4 | sidebar_position: 1 5 | --- 6 | 7 | Quá trình cài đặt SideStore có vẻ phức tạp, nhưng chỉ cần ***sử dụng một lần*** máy tính và một thời gian, bạn sẽ có SideStore trên thiết bị của mình! 8 | 9 | ## Điều kiện 10 | 11 | Để cài đặt SideStore, bạn sẽ cần: 12 | - Thiết bị iOS hoặc iPadOS chạy iOS hoặc iPadOS 14 trở lên. 13 | - Máy tính Windows, macOS hoặc Linux (hỗ trợ Linux đang trong giai đoạn thử nghiệm). 14 | - Tài khoản Apple ID. 15 | - Ứng dụng [StosVPN](https://apps.apple.com/us/app/stosvpn/id6744003051). 16 | - Một chút thời gian (Đây là quá trình nhanh chóng, nhưng bạn nên dành thời gian để khắc phục sự cố). 17 | 18 | Người dùng iOS/iPadOS 16 trở lên *phải* bật Chế độ nhà phát triển. Thực hiện bằng cách: 19 | 1. Mở ứng dụng cài đặt. 20 | 2. Đi đến phần 'Quyền Riêng Tư Và Bảo Mật'. 21 | 3. Tìm 'Chế độ nhà phát truyển' và bật lên ở phía dưới phần 'Quyền Riêng Tư Và Bảo Mật'. (nó có thể báo cho bạn phải khởi động lại máy) 22 | 23 | > **Lưu ý:** Bạn sẽ chỉ thấy tùy chọn 'Chế độ nhà phát triển' sau khi đã cài đặt SideStore thành công. 24 | 25 | ## StosVPN 26 | 27 | SideStore sử dụng VPN trên thiết bị cho phép SideStore giao tiếp với các dịch vụ nội bộ. 28 | 29 | 1. Tải ứng dụng StosVPN từ [App Store](https://apps.apple.com/us/app/stosvpn/id6744003051). 30 | 2. Chạy VPN. 31 | 32 | Bạn phải bật VPN này bất cứ khi nào muốn cài đặt hoặc cập nhật ứng dụng trong SideStore. 33 | 34 | ## Bước tiếp theo 35 | 36 | Bây giờ, hãy chuyển sang trang tiếp theo để tạo tệp kết nối của bạn! 37 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: App Sources 3 | description: A guide on custom app sources. 4 | --- 5 | 6 | # Make a Source 7 | 8 | SideStore is fully compatible with AltSources. The official AltStore [source documentation](https://faq.altstore.io/developers/make-a-source) provides all the details you need to make your own AltSource. AltSources allow your audience to view, install, and update all your available apps easily across both AltStore and SideStore. 9 | 10 | When editing your source, it is highly recommended to create and view a draft of your changes using the [AltSource Browser](https://altsource.by.lao.sb/browse) to see a visual display of your source and correct any errors before finalizing and publishing changes to your source. 11 | 12 | # Distributing your Source 13 | 14 | You can create a link to automatically add your AltSource by using this template: 15 | ``` 16 | sidestore://source?url=[source url] 17 | ``` 18 | For more info, see [URL Schema](/docs/advanced/url-schema). It is often helpful to create the link to your AltSource in this format, then put it into a link shortener such as ```tinyurl.com```. However, if a user tries to use a sidestore:// link without SideStore already installed, it will crash, so some documentation may be helpful. 19 | 20 | ## That's it! 21 | 22 | Here are some good existing AltSources: The [official AltStore](https://apps.altstore.io) source, the [SideStore community](https://github.com/SideStore/Community-Source) source, the [StikJIT](https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) source, and the [DolphiniOS](https://altstore.oatmealdome.me) source. -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/installation/windows.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Hướng dẫn cho hệ điều hành Windows 3 | description: Hướng dẫn tải SideStore sử dụng hệ điều hành Windows 4 | sidebar_position: 3 5 | --- 6 | 7 | Hãy đảm bảo rằng trên máy của bạn tải phiên bản [iCloud](https://updates.cdn-apple.com/2020/windows/001-39935-20200911-1A70AA56-F448-11EA-8CC0-99D41950005E/iCloudSetup.exe) và [iTunes](https://support.apple.com/en-us/HT210384) không phải của Microsoft Store về. Trước khi bắt đầu, hãy đảm bảo bạn đã hoàn thành tất cả các bước trong [Điều kiện cần thiết cho máy](prerequisites),và bạn có một [Tệp kết nối](pairing-file)! 8 | 9 | Phiên bản iCloud không phải của Microsoft Store đã bị xóa khỏi trang web của Apple vào khoảng giữa tháng 9 năm 2022. Liên kết ở trên dẫn đến phiên bản iCloud cũ hơn vẫn tương thích và vẫn có sẵn trực tiếp từ máy chủ của Apple. 10 | 11 | 1. Tải và chạy AltServer từ [Trang chủ của AltStore](https://altstore.io/). 12 | 2. Tải về SideStore IPA từ github của Sidestore [ở đây](https://github.com/sidestore/sidestore/releases/latest/download/sidestore.ipa). 13 | 3. Ấn giữ nút shift và ấn vào biều tượng của [AltServer](https://preview.redd.it/altserver-doesnt-launch-on-windows-11-v0-i8bgl2mfh2ta1.png?width=622&format=png&auto=webp&s=4fb86f317e3883a20a8846168a91f5c9ffd31ec8). Ấn "Sideload .ipa", và chọn tệp SideStore.ipa. 14 | 4. Phê duyệt "Ứng dụng dành cho nhà phát triển" bằng tài khoản Apple ID của bạn. 15 | * Bạn có thể tìm ở phần cài đặt, "cài đặt chung", "Quản lý VPN & Thiết bị". 16 | 5. Mở SideStore, chọn tệp kết nối, và đăng nhập vào Apple ID ở phần settings. 17 | 18 | Khi bạn hoàn thành, sau đó làm theo [Hướng dẫn sau khi cài đặt](post-install). 19 | -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- 1 | import clsx from 'clsx'; 2 | import Heading from '@theme/Heading'; 3 | import styles from './styles.module.css'; 4 | 5 | const FeatureList = [ 6 | { 7 | title: 'Fast, Easy, Sleek', 8 | description: ( 9 | <> 10 | SideStore is meant to be a functional application, and in being functional 11 | is good looking, and not overcomplicated. 12 | 13 | ), 14 | }, 15 | { 16 | title: 'Power is Key', 17 | description: ( 18 | <> 19 | The ability to install applications not found on Apple's App Store is not 20 | common, and SideStore fills a large gap in the sideloading field. 21 | 22 | ), 23 | }, 24 | { 25 | title: 'Open Source', 26 | description: ( 27 | <> 28 | We find open source software very important, as SideStore is itself open source. 29 | Anyone is welcome to make contributions to any SideStore project on GitHub. 30 | 31 | ), 32 | }, 33 | ]; 34 | 35 | function Feature({title, description}) { 36 | return ( 37 |
38 |
39 | {title} 40 |

{description}

41 |
42 |
43 | ); 44 | } 45 | 46 | export default function HomepageFeatures() { 47 | return ( 48 |
49 |
50 |
51 | {FeatureList.map((props, idx) => ( 52 | 53 | ))} 54 |
55 |
56 |
57 | ); 58 | } 59 | -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Nguồn ứng dụng 3 | description: Hướng dẫn về nguồn ứng dụng tùy chỉnh. 4 | --- 5 | 6 | # Tạo nguồn ứng dụng 7 | 8 | SideStore hoàn toàn tương thích với AltSources. [Tài liệu nguồn AltStore chính thức](https://faq.altstore.io/developers/make-a-source) cung cấp mọi thông tin chi tiết bạn cần để tạo AltSource của riêng mình. AltSources cho phép đối tượng của bạn xem, cài đặt và cập nhật tất cả các ứng dụng khả dụng của bạn một cách dễ dàng trên cả AltStore và SideStore. 9 | 10 | Khi chỉnh sửa nguồn của bạn, bạn nên tạo và xem bản nháp các thay đổi của mình bằng [Trình duyệt AltSource](https://altsource.by.lao.sb/browse) để xem hình ảnh trực quan về nguồn của bạn và sửa mọi lỗi trước khi hoàn tất và xuất bản các thay đổi cho nguồn của bạn. 11 | 12 | # Phân phối Nguồn của bạn 13 | 14 | Bạn có thể tạo liên kết để tự động thêm AltSource của mình bằng cách sử dụng mẫu này: 15 | ``` 16 | sidestore://source?url=[url nguồn] 17 | ``` 18 | Để biết thêm thông tin, hãy xem [Sơ đồ URL](/docs/advanced/url-schema). Thường hữu ích khi tạo liên kết đến AltSource của bạn theo định dạng này, sau đó đưa vào trình rút gọn liên kết như ```tinyurl.com```. Tuy nhiên, nếu người dùng cố gắng sử dụng liên kết sidestore:// mà không cài đặt SideStore, liên kết sẽ bị sập, do đó, một số tài liệu có thể hữu ích. 19 | 20 | ## Vậy là xong! 21 | 22 | Sau đây là một số AltSource hiện có hữu ích: Nguồn [AltStore chính thức](https://apps.altstore.io), nguồn [từ cộng đồng SideStore](https://github.com/SideStore/Community-Source), nguồn [StikJIT](https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) và nguồn [DolphiniOS](https://altstore.oatmealdome.me). 23 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/release-notes.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: リリースノート 3 | description: SideStoreのリリースノートの集まり。 4 | sidebar_position: 2 5 | --- 6 | 7 | # 安定版ノート 8 | 9 | ## 0.6.1 10 | 11 | ### チェンジログ 12 | もう春ですか?今回は、0.5.9/0.5.10からの移行問題や、期限切れのバグを修正する新しいアップデートです。サイドローディングを楽しんでください! 13 | 14 | ### 変更点: 15 | - 修正: hasUpdateの比較でのタイプミスを修正 (@l2dyによる [#900](https://github.com/SideStore/SideStore/pull/900)) 16 | - `SettingsViewController.swift` の更新 (@neoarzによる [#915](https://github.com/SideStore/SideStore/pull/915)) 17 | - 0.5.9から0.6.0への移行時の問題を修正 (@mahee96による [#920](https://github.com/SideStore/SideStore/pull/920)) 18 | - "levaraging" のタイプミスを "leveraging" に修正 (@lafrenierejmによる [#926](https://github.com/SideStore/SideStore/pull/926)) 19 | - EMプロキシ部分にStosVPNを追加 (@Br0desによる [#940](https://github.com/SideStore/SideStore/pull/940)) 20 | 21 | ## 0.6.0 22 | 23 | ### チェンジログ 24 | 3月になり、いくつかの大きな変更があります。ついにAltStore 2.0の変更をSideStoreに組み込みました。これでその利点をすべて享受でき、SideStoreにもいくつかの修正が加わりました。お楽しみください! 25 | 26 | ### 変更点: 27 | - AltStore 2.0の変更 (@mahee96による [#794](https://github.com/SideStore/SideStore/pull/794)) 28 | - [リフレッシュ]: リフレッシュ時にはプロビジョニングプロファイルのみを更新するため、インストール関連の内容を削除 (@mahee96による [#846](https://github.com/SideStore/SideStore/pull/846)) 29 | - [設定]: 修正: `sparseRestore`がまだパッチ適用されていないiOSで、`DisableAppLimit`スイッチがオフ状態に戻ってしまう問題を修正 (@mahee96による [#850](https://github.com/SideStore/SideStore/pull/850)) 30 | - [バックアップ]: 修正: インストール中にロジックが更新されていなかった問題を修正、`override`キーワードが不足していた (@mahee96による [#857](https://github.com/SideStore/SideStore/pull/857)) 31 | - 機能: データベースに保存する前に、`sources`画面で複数のソースを追加できる機能 (@mahee96による [#888](https://github.com/SideStore/SideStore/pull/888)) 32 | - 機能: アプリ内の更新説明を(完全な)Markdownとしてレンダリングする機能 (@mahee96による [#897](https://github.com/SideStore/SideStore/pull/897)) 33 | -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: App-bronnen 3 | description: Een gids over aangepaste app-bronnen. 4 | --- 5 | 6 | # Een Bron maken 7 | 8 | SideStore is volledig compatibel met AltSources. De officiële AltStore-[source-documentatie](https://faq.altstore.io/developers/make-a-source) bevat alle informatie die je nodig hebt om je eigen AltSource te maken. AltSources stellen je publiek in staat om al je beschikbare apps gemakkelijk te bekijken, installeren en bijwerken, zowel in AltStore als in SideStore. 9 | 10 | Wanneer je jouw source bewerkt, wordt sterk aanbevolen om een concept te maken en te bekijken met de [AltSource Browser](https://altsource.by.lao.sb/browse). Daarmee kun je een visuele weergave van je source zien en eventuele fouten corrigeren voordat je de wijzigingen afrondt en publiceert. 11 | 12 | # Je Bron distribueren 13 | 14 | Je kunt een link maken om je AltSource automatisch toe te voegen met deze template: 15 | 16 | sidestore://source?url=[source url] 17 | 18 | Voor meer informatie, zie het [URL Schema](/docs/advanced/url-schema). Het is vaak handig om de link naar je AltSource in dit formaat te maken en vervolgens te verkorten met een dienst zoals ```tinyurl.com```. Houd er echter rekening mee dat een gebruiker SideStore al geïnstalleerd moet hebben; anders crasht een `sidestore://`-link. Daarom is enige uitleg in je documentatie soms aan te raden. 19 | 20 | ## Dat was alles! 21 | 22 | Hier zijn enkele goede bestaande AltSources: de source van [officiële AltStore](https://apps.altstore.io), de [SideStore community](https://github.com/SideStore/Community-Source), de [StikJIT-bron](https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) en de [DolphiniOS-source](https://altstore.oatmealdome.me). 23 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 일반적인 문제 3 | description: SideStore에서 발견되는 일반적인 문제. 4 | --- 5 | 6 | :::warning 7 | 8 | 이 페이지는 현재 진행 중입니다. 제공된 정보는 정확해야 하지만, 필요한 경우 [Discord 서버](https://discord.gg/sidestore-949183273383395328)를 참조해 도움을 받으시기를 바랍니다. 9 | 10 | ::: 11 | 12 | ## SideStore의 일반적인 문제 13 | 14 | ### AFC Connection Failure 15 | #### 발생 원인 16 | 연결 문제 또는 페어링 파일이 잘못되었습니다. 17 | #### 해결 방법 18 | 1. 재연결 시도 19 | 2. idevice pair 를 사용하여 새 페어링 파일을 생성하고 설정 메뉴를 통해 가져옵니다. 자세한 내용은 [페어링 파일 지침](/docs/advanced/pairing-file)을 참조하세요. 20 | 21 | ### No WiFi or VPN Connection 22 | #### 발생 원인 23 | 미니먹서 서비스의 연결 문제. 24 | #### 해결 방법 25 | 1. WireGuard를 사용 중인 경우, StosVPN으로 전환하세요. 26 | 2. DNS 차단 서버를 모두 꺼주세요. 27 | 3. 다시 시도하세요 (보통 버튼을 연타하면 도움이 됩니다.) 28 | 4. SideStore를 다시 시작하세요. 29 | 5. StosVPN 재시작 30 | 6. idevice pair 를 사용하여 새 페어링 파일을 생성하고 설정 메뉴를 통해 가져옵니다. 자세한 내용은 [페어링 파일 지침](/docs/advanced/pairing-file)을 참조하세요. 31 | 32 | ### 설치 중 중간에 SideStore가 멈춤 33 | #### 발생 원인 34 | 캐시 또는 프로토콜 문제. 35 | #### 해결 방법 36 | 1. 해당되는 경우 SideStore를 업데이트하십시오. 그렇지 않은 경우 단순히 재시작하십시오. 37 | 2. 캐시 지우기 38 | 3. Anisette 서버 변경 39 | 4. adi.pb 재설정 40 | 5. SideStore에서 로그아웃하고 다시 로그안 41 | 6. WireGuard 사용 42 | 7. 기기 다시 시작 43 | 8. 페어링 파일 재생성 44 | 9. Altserver를 이용하여 SideStore를 다시 설치 45 | 46 | ### SideStore를 열 수 없습니다. 47 | #### 발생 원인 48 | 여러 가지 원인이 있을 수 있습니다. 49 | #### 해결 방법 50 | 1. AltServer를 통해 SideStore를 설치했는지 확인합니다. 51 | 2. SideStore를 재설치합니다. 52 | 53 | 위의 방법으로 해결되지 않으면 다음을 수행하세요: 54 | 55 | 1. SideStore 및 SideStore에서 설치한 모든 앱을 삭제합니다. 56 | 2. SideStore를 다시 설치 57 | 3. 페어링 파일을 다시 불러오고 로그인합니다. (SideStore를 새로고침하라는 메시지가 표시되면 아니요를 선택합니다.) 58 | 4. `SideStore.ipa` 파일을 기기에 설치 59 | 5. 다른 앱을 설치할 때와 마찬가지로 `SideStore.ipa` 파일을 SideStore로 가져옵니다. 60 | 6. 이렇게 하면 SideStore가 새로고침을 수행하여 문제가 해결될 수 있습니다. 61 | 62 | 63 | -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-docs/current/installation/install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Installera 3 | description: Installera SideStore på din iDevice 4 | sidebar_position: 2 5 | --- 6 | ## Installera SideStore 7 | 1. Anslut din iDevice till datorn med kabel. Om du uppmanas, lita på datorn och ange din lösenkod. 8 | 2. Öppna iloader. 9 | 3. Logga in med ett Apple-konto (det behöver inte matcha enheten). 10 | 4. Välj din iDevice. 11 | 5. Välj "Install SideStore". 12 | 13 | ### På din iDevice 14 | Gör följande: 15 | 1. Öppna appen Inställningar. 16 | 2. Gå till "Allmänt" och sedan "VPN och enhetshantering". 17 | 3. Godkänn "Developer App" under Apple-kontots e-postadress. 18 | 4. Gå till "Integritet och säkerhet". 19 | 5. Scrolla längst ner och slå på "Utvecklarläge". Telefonen startas om. 20 | 6. Öppna StosVPN och tryck på "Connect". 21 | 7. Öppna SideStore. 22 | 8. Logga in med Apple-kontot du använde i iloader. 23 | 9. Gå till "My Apps". 24 | 10. Tryck på knappen "x DAYS" till höger om SideStore (x är antalet dagar tills appen går ut). 25 | 11. En prompt om att skapa ett nytt signeringscertifikat visas, tryck på "Refresh Now". 26 | 27 | Om processen lyckas öppnas din enhet till hemskärmen, du får en notifiering och SideStore är tillgängligt igen inom några sekunder. 28 | 29 | Observera att om du uppdaterar eller nollställer din iDevice löper pairing-filen ut och du måste importera den igen via [den här guiden](/docs/advanced/pairing-file). Det kan även hända sporadiskt på grund av Apples mjukvara. 30 | 31 | Om du installerar om SideStore via iloader kan certifikatet återkallas, vilket kräver att du uppdaterar det manuellt igen. 32 | 33 | Om du vill installera SideStore på en annan enhet med samma Apple-konto följer du [de här stegen](https://github.com/SideStore/SideStore/pull/1008#issue-3138680291). 34 | -------------------------------------------------------------------------------- /i18n/zh/docusaurus-plugin-content-docs/current/advanced/alternative.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 绕过3-App限制 3 | description: 一个关于如何通过SparseRestore安装多于3个应用的教程。 4 | --- 5 | 6 | :::note 7 | 8 | SparseRestore的"绕过3个应用的限制"**仅在iOS/iPadOS 17.0 到 18.1 beta 4 (不包括 17.7.1)中生效**。如果您没有使用这些版本的话,这些操作是没有用的,**请不要因此寻求帮助**。 9 | 10 | ::: 11 | 12 | ## 必要准备 13 | * 一台运行了SparseRestore支持的系统版本的苹果设备(请参考上面的描述). 14 | * 至少一个空闲的应用槽位。 15 | * SideStore 0.5.9或更高版本。您可以[在此](https://github.com/SideStore/SideStore/releases)找到最新版。 16 | * 为了执行漏洞,您**必须**在流程进行中,在您的苹果设备上关闭**查找网络**。否则执行不会成功。您可以参考以下的流程关闭: 17 | - 打开“设置”。 18 | - 点击最上面您的名字。 19 | - 点击“查找”。 20 | - 点击查找我的iPhone/iPad. 21 | - 关闭查找我的iPhone/iPad. 22 | - 您可能需要输入您的Apple ID密码以继续。 23 | 24 | > **提醒:**您仍可能无法关闭"查找我的设备",因为"失窃设备保护"可能避免您关闭它。请在尝试关闭查找设备前关闭失窃设备保护。 25 | 26 | ## 步骤 27 | 1. 安装SparseBox。有很多种方式可以安装SparseBox,但如果是这种需求的话,请使用SideStore进行安装。您可以[在这里](https://nightly.link/khanhduytran0/SparseBox/workflows/build/main/artifact.zip)找到最新版 (解压artifact.zip以获得.ipa文件)。 28 | 29 | 2. 在SideStore内打开"Disable App Limit"开关,确保SideStore是**关闭的** (不在后台),然后打开SparseBox。 30 | 31 | 3. 启用StosVPN,选择您的配对文件并点击'绕过3个应用的限制'。你将会看到一段很长的输出。请等待直到输出`idevicebackup2 exited with code -18`或者`idevicebackup2 exited with code 2`,关闭应用,无需点击“应用”。 32 | 33 | 4. 重新打开SideStore在SideStore设置界面下滑。点击"清理缓存",这允许绕过结果被SideStore使用。 34 | 35 | 5. 测试绕过成功(您可能需要安装多于一个app以测试,这取决于您剩余多少槽位)。如果应用弹出了和限制相关的错误,重新启动SideStore或者重试执行漏洞利用。如果安装应用成功,恭喜!您现在可以一次安装多于3个应用了! 36 | 37 | ## 提醒 38 | 由于某些限制,每当您侧载额外3个应用程序时,都必须执行此漏洞利用。 39 | 40 | 如果您想/需要使用查找网络的话,您现在就可以打开它了。然而,如果您想安装或者刷新更多应用,您仍需再次关闭查找网络。 41 | 42 | ## 备选方案 43 | 如果该漏洞利用对您来说没起作用,或者您的苹果设备是不支持的版本,也有其他的备选方案允许您同时使用多于3个应用。由Duy Tran Khanh ([khanhduytran0](https://github.com/khanhduytran0)) (也是SparseBox的开发者) 开发的Live Container允许iOS应用运行在应用内容器内,而不是分别独立的运行。这在某种意义上比SparseRestore更实用。[点此访问GitHub页面](https://github.com/khanhduytran0/LiveContainer)。 44 | -------------------------------------------------------------------------------- /i18n/zh/docusaurus-plugin-content-docs/current/installation/prerequisites.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 安装前准备 3 | description: '安装SideStore的第一步' 4 | sidebar_position: 1 5 | --- 6 | 7 | SideStore的安装过程可能看起来很棘手,但随着花一些时间***一次性***的使用电脑后,您的设备上就拥有了SideStore! 8 | 9 | ## 要求 10 | 11 | 想要安装SideStore,您需要: 12 | 13 | - 一台运行了iOS/iPadOS 14及更高版本,并且[带有密码](https://support.apple.com/en-us/119586)的iOS/iPadOS设备 14 | - 一台电脑(只会用一次) 15 | - 一个Apple ID。 16 | - Wi-Fi连接 17 | - 一些时间(流程很快,但是您需要留出一些[处理问题](/docs/troubleshooting)的时间)。 18 | 19 | ## 需要在您的设备上做的准备 20 | 21 | ### 在您的iPhone/iPad上 22 | 23 | SideStore利用设备上内置的VPN客户端功能以允许SideStore与内部服务通信。 24 | 25 | 1. 从[App Store](https://apps.apple.com/us/app/stosvpn/id6744003051)下载StosVPN 26 | 2. 启用VPN 27 | 28 | 该VPN需要在您期望安装/升级/刷新SideStore内安装的任意应用时保持开启。 29 | 30 | ### 在您的Mac上 31 | 1. 下载并安装([M系列芯片](https://github.com/nab138/iloader/releases/latest/download/iloader-darwin-aarch64.dmg)或[Intel芯片](https://github.com/nab138/iloader/releases/latest/download/iloader-darwin-x64.dmg))的Mac版iloader 32 | 2. 打开终端,运行`sudo xattr -c ./Applications/iloader.app`,如果弹出提示框请输入您的密码 33 | 34 | 35 | ## 在您的Windows电脑上 36 | 1. 下载并安装[iTunes](https://apple.co/ms) 37 | 2. 下载iloader安装器的([exe文件](https://github.com/nab138/iloader/releases/latest/download/iloader-windows-x64.exe)/[msi文件](https://github.com/nab138/iloader/releases/latest/download/iloader-windows-x64.msi)) 38 | 3. 运行安装器 39 | 40 | ## 在您的Linux机器上 41 | 1. 下载并安装`usbmuxd`(它可能已预装在您使用的发行版中,否则请使用您的软件包管理器进行安装) 42 | 2. 下载并安装适用于您使用的发行版的iloader(([Debian/Ubuntu](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.deb), [Fedora/openSUSE](https://github.com/nab138/iloader/releases/download/v0.1.3/iloader-linux-x86_64.rpm), [other](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.AppImage))) 43 | 44 | 45 | ## 下一步 46 | 47 | 接下来,按照安装指引来安装SideStore! 48 | - [安装指引](install) 49 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Источники приложений 3 | description: Инструкция по использованию пользовательских источников приложений. 4 | --- 5 | 6 | # Создание источников приложений 7 | 8 | SideStore полностью поддерживает источники приложений из AltStore. [Официальная документация AltStore](https://faq.altstore.io/developers/make-a-source) имеет всю информацию необходимую для создания своего источника приложений. Источники приложений из AltStore позволяют пользователям смотреть, устанавливать и обновлять приложения и на AltStore, и на SideStore. 9 | 10 | При редактировании своего источника приложений рекомендуется создавать и смотреть черновики своих изменений используя [AltSource Browser](https://altsource.by.lao.sb/browse), чтобы видеть визуальное отображение источника и исправлять любые ошибки перед публикацией изменений. 11 | 12 | # Распространение источников приложений 13 | 14 | Вы можете создать ссылку для автоматического добавления источника используя этот шаблон: 15 | ``` 16 | sidestore://source?url=[source url] 17 | ``` 18 | Больше информации есть в [схеме URL](/docs/advanced/url-schema). Иногда бывает полезно создавать ссылку на Ваш источник в таком формате, а потом вставлять её в сократитель ссылок, по типу ```tinyurl.com```. Однако, когда пользователь пытаеться использовать ссылку sidestore:// без установленного SideStore, оно вылетит, так-что документация может быть полезна. 19 | 20 | ## Это всё! 21 | 22 | Вот некоторые существующие хорошие источники приложений: [официальный источник приложений AltStore](https://apps.altstore.io), [источник приложений сообщества SideStore](https://github.com/SideStore/Community-Source), [StikJIT](https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) и [источник приложений DolphiniOS](https://altstore.oatmealdome.me). 23 | -------------------------------------------------------------------------------- /i18n/zh/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 启用JIT 3 | description: 关于如何为需要即时编译(JIT)的应用程序启用JIT编译的教程。 4 | --- 5 | 6 | :::note 7 | iOS 26再次破坏了JIT。StikDebug发布了一个新版本尝试解决,但是目前支持仍处于受限阶段。截止本指南编写时(11月10日)支持的应用如下: 8 | * UTM 9 | * Amethyst 10 | * MeloNX 11 | * maciOS 12 | * DolphiniOS 13 | * Geode 14 | 15 | 请留意我们在Discord服务器的公告频道以及[idevice服务器](https://discord.gg/mACqxMxP3X)的公告和兼容性频道以获取未来的进展。 16 | 17 | 启用JIT的方法有很多,如AltJIT、SideJITServer等。本教程将介绍StikDebug(旧称StikJIT)的使用,因为它是我们目前推荐的方法。有关更多信息,请参阅[官方StikDebug配对指南](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md)。 18 | 19 | 作为替代方案,SideStore 0.6.2更新了minimuxer,允许了类似于StikDebug的内置JIT功能。要使用此功能,只需确保您已连接到StosVPN,并启用了Wi-Fi或飞行模式,然后点击“我的应用程序”,长按您要启用JIT的应用程序,点击“启用JIT”。 20 | ::: 21 | 22 | ## 使用前提 23 | * 一台运行了iOS/iPadOS 17.4-18.x的苹果设备(包括18.4b1)。如果您正在使用iOS/iPadOS17.0-17.3, 您必须使用诸如[SideJITServer](https://github.com/nythepegasus/SideJITServer)之类的替代方案。如果您的设备已经发布4年以上(且不支持TXM)的话,SideStore的JIT启用工具仅在iOS26可用。 24 | 25 | ## 使用App Store安装StikDebug 26 | 27 | 1. **安装StikDebug** 28 | 从[App Store](https://apps.apple.com/us/app/stikdebug/id6744045754)安装StikDebug。 29 | :::note 不错的是,目前StikDebug中使用的VPN与SideStore中使用的VPN类似,这意味着您也可以使用它在SideStore中安装和刷新应用程序,类似于StosVPN。 30 | ::: 31 | 32 | 2. **安装步骤:** 33 | 遵循下面的标准安装步骤以安装程序。 34 | 35 | 36 | ### 标准安装步骤: 37 | 38 | 1. **上传配对用文件:** 39 | 打开并关闭StikDebug以在文件中构建应用程序需求的文件夹,然后导入您使用idevice pair生成的,导入到SideStore的**同一个配对文件**。有关此过程的更多信息,请参阅[此处](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md)。 40 | 41 | 2. **挂载DDI:** 42 | 请确保您已经连接了Wi-Fi和VPN,并且导入了配对文件后,打开StikDebug,关闭并重新打开。这会挂载DDI,每次重新启动设备时都必须执行。 43 | 44 | ## 启用JIT: 45 | 46 | 1. **启用VPN:** 47 | 首先,在Wi-Fi上打开StikDebug或启用蜂窝数据以激活内置的VPN。现在,如果您正在使用蜂窝数据,请启用飞行模式,并在VPN启用的情况下重新打开应用程序。 48 | 49 | 2. **激活JIT:** 50 | 选择“按应用程序连接”按钮,然后从列表中选择一个应用程序(必须带有正确的权限侧载的应用才能显示在列表中)以附加调试器并激活JIT功能。 51 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: JITの有効化 3 | description: JIT(Just-in-Time)コンパイルを必要とするアプリ向けの有効化手順。 4 | --- 5 | 6 | :::note 7 | 8 | JITを有効にする方法はAltJITやSideJITServerなど複数ありますが、ここでは現在推奨している **StikJIT / StikDebug**を使用した方法を紹介します。 9 | 代替として、SideStore v0.6.2-nightly.2025.04.15以降では minimuxerにJIT機能が統合されており、StikDebugと同様の仕組みでJITを有効にできます。使用するには、StosVPNに接続した状態でWi-Fiを有効にするか、モバイルデータとWi-Fiの両方を無効にしてください。 10 | 11 | ::: 12 | 13 | ## 前提条件 14 | 15 | * iOS/iPadOS 17.4 以降の iDevice(ただし 18.4b1 を除く) 16 | - 17.0〜17.3 の場合は、[SideJITServer](https://github.com/nythepegasus/SideJITServer) など代替手段を使用してください。 17 | * StikJIT用に空きアプリスロットが **1つ以上** 必要です。 18 | 19 | ## SideStoreでのStikJITのインストール方法 20 | 21 | 1. **StikJITの取得** 22 | SideStoreに以下のAltSourceを追加してください: 23 | [StikJIT ソースを追加](sidestore://source?url=https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) 24 | ※ SideStoreをインストールしていない場合、このリンクは機能しません。 25 | 26 | 2. **インストール** 27 | SideStoreを使用してStikJITをインストールします。 28 | 29 | 3. **インストール手順** 30 | 下記の「標準インストール手順」を参考に進めてください。 31 | 32 | ## App StoreのStikDebugのインストール(スロット不要) 33 | 34 | 1. **StikDebugをインストール** 35 | App Store より [こちら](https://apps.apple.com/us/app/stikdebug/id6744045754) からインストールしてください。 36 | StikDebugに内蔵されたVPNはSideStoreのStosVPNと似た構造のため、**アプリのインストールや更新にも使用できます**。 37 | 38 | 2. **インストール手順** 39 | 下記の「標準インストール手順」を参考に進めてください。 40 | 41 | ### 標準インストール手順 42 | 43 | 1. **VPNの有効化** 44 | StikJITの場合はStosVPNを、StikDebugの場合は内蔵VPNを有効にしてください。 45 | 46 | 2. **ペアリングファイルのアップロード** 47 | プロンプトが表示されたら、SideStore用にJitterbugPairで取得した **解凍済みのペアリングファイル** を読み込んでください。取得手順は[こちら](/docs/installation/pairing-file)を参照してください。 48 | 49 | ## JITを有効にするには 50 | 51 | 1. **VPNの有効化** 52 | StikJITはStosVPNを、StikDebugは内蔵 VPNを有効にしてください。 53 | 54 | 2. **JITの起動** 55 | 「JIT を有効化」ボタンをタップし、JITを有効にしたいアプリを選択します。 56 | 57 | ### オフラインでのJITの有効化 58 | 59 | JITをオフラインで有効化するには、StosVPNまたは StikDebugを有効にした状態で、 60 | **Wi-Fiとモバイルデータを両方オフ(機内モード推奨**)にした後、StikJITを起動してください。その後は通常通りJITを有効化できます。 61 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/installation/install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Install 3 | description: Installer Sidestore dans votre iDevice 4 | sidebar_position: 2 5 | --- 6 | ## Installer SideStore 7 | 1. Connectez votre iDevice à votre ordinateur avec un cable. Si demander, se fier de l'ordinateur et entre votre code. 8 | 2. Ouvrer iloader. 9 | 3. Connectez-vous à un identifiant Apple (elle n'est pas obligé d'être le même que votre appareil) 10 | 4. Selectionnez votre iDevice 11 | 5. Selectionnez "Install SideStore". 12 | 13 | ### Dans votre iDevice 14 | Faisez ceci: 15 | 1. Ouvrez l'application de Réglages. 16 | 2. Navigatez à 'Général' et puis 'VPN et gestion de l'appareil'. 17 | 3. Approvez le "App du développeur" sous l'email de identifiant Apple. 18 | 4. Navigatez-vous à 'Confidentialité et sécurité'. 19 | 5. défilez jusqu'en bas et activer le 'Mode développeur'. Votre telephone vas se redémarrer. 20 | 6. Ouvrez StosVPN et appuiez sur 'Connect'. 21 | 7. Ouvrez SideStore. 22 | 9. Connectez-vous avec votre identifiant Apple que vous avez utilisez pour iloader. 23 | 10. Allez dans "My Apps". 24 | 11. Sélectionnez le bouton "x DAYS" (x représente le nombre de jours avant l'expiration). 25 | 12. Une invite concernant votre certificat de signature devrait apparaître, appuyez sur "Refresh Now". 26 | 27 | Si ce processus est réussi, Sidestore émmene votre appareil à l'écran d'accueil, accompanier avec une notification et Sidestore sera disponible dans quelques secondes. 28 | 29 | Avertissement, si vous mettez à jour où réinitialiser votre iDevice, votre ficher d'appairage s'expira et vous devrez le réimporter en utilisant [ce guide](/docs/advanced/pairing-file). Cela peut s'arrivez at random times à cause des logiciels Apple. 30 | 31 | Si vous voulez réinstaller SideStore en utilisant iloader, votre certificat pourriez être révoqué, te forcant de le rafraîchir. 32 | 33 | Si vous souhaite installé SideStore dans un autre appareil en using le même identifiant Apple, suivez [ses étapes](https://github.com/SideStore/SideStore/pull/1008#issue-3138680291). 34 | -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Appkällor 3 | description: En guide om anpassade appkällor. 4 | --- 5 | 6 | # Skapa en källa 7 | 8 | SideStore är fullt kompatibel med AltStore Sources (AltSources). Den officiella AltSource-[dokumentationen](https://faq.altstore.io/developers/make-a-source) innehåller allt du behöver för att skapa en egen AltSource. AltSources gör det lätt för din publik att se, installera och uppdatera alla appar du tillhandahåller. 9 | 10 | Här är några rekommenderade tredjepartsverktyg som hjälper dig att skapa eller granska AltSources: 11 | - Du kan använda communityverktyget [AltStudio](https://altstudio.app/) (pågår) för att automatiskt generera en AltSource från en IPA. (Obs! Efter att du skapat källan måste du ta bort fälten marketplaceID och Build som genereras som standard, annars tror SideStore att källan är notariserad och hindrar den från att läggas till.) 12 | - Du kan använda communityverktyget [AltSource Browser](https://altsource.by.lao.sb/browse/) för att förhandsgranska ändringar i en AltSource innan du publicerar dem, vilket gör det enklare att rätta fel i tid. 13 | 14 | # Distribuera din källa 15 | 16 | Du kan skapa en länk som automatiskt lägger till din AltSource med den här mallen: 17 | ``` 18 | sidestore://source?url=[source url] 19 | ``` 20 | Mer information finns under [URL-schema](/docs/advanced/url-schema). Det är ofta praktiskt att skapa länken till din AltSource i det här formatet och sedan korta den via exempelvis `tinyurl.com`. Observera att om en användare försöker öppna en `sidestore://`-länk utan att SideStore är installerat kraschar appen, så komplettera gärna med dokumentation. 21 | 22 | ## Klart! 23 | 24 | Här är några bra befintliga AltSources att klistra in i SideStore: [SideStore Community Source](https://github.com/SideStore/Community-Source), [officiella AltStore Source](https://apps.altstore.io), [LiveContainer Source](https://raw.githubusercontent.com/LiveContainer/LiveContainer/refs/heads/main/apps.json) och [DolphiniOS Source](https://altstore.oatmealdome.me). 25 | -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Vanliga problem 3 | description: Vanliga SideStore-problem utan felkoder. 4 | --- 5 | 6 | :::warning 7 | 8 | Den här sidan är under arbete. Informationen ska stämma, men kontakta gärna vår [Discord-server](https://discord.gg/sidestore-949183273383395328) om du behöver hjälp. 9 | 10 | ::: 11 | 12 | ## Vanliga SideStore-problem 13 | 14 | ### AFC Connection Failure 15 | #### Orsak 16 | Anslutningsproblem eller ogiltig pairing-fil. 17 | #### Åtgärd 18 | 1. Försök ansluta igen. Kontrollera att Wi-Fi och StosVPN är aktiva. 19 | 2. Ladda in och importera en ny pairing-fil via iloader. 20 | 21 | ### No Wi-Fi or VPN Connection 22 | #### Orsak 23 | Anslutningsproblem mot minimuxer. 24 | #### Åtgärd 25 | 1. Om du använder WireGuard, byt till StosVPN. 26 | 2. Stäng av eventuella DNS-blockerare. 27 | 3. Försök igen (upprepade försök kan hjälpa). 28 | 4. Starta om SideStore. 29 | 5. Starta om StosVPN. 30 | 6. Ladda in och importera en ny pairing-fil via iloader. 31 | 32 | ### SideStore fastnar mitt i installationen 33 | #### Orsak 34 | Cache- eller protokollproblem. 35 | #### Åtgärd 36 | 1. Uppdatera SideStore om möjligt, annars starta om. 37 | 2. Töm cache. 38 | 3. Byt anisette-server. 39 | 4. I Settings > Servers: återställ adi.pb, logga ut och in igen i SideStore. 40 | 5. Starta om enheten. 41 | 6. Skapa pairing-filen på nytt. 42 | 7. Installera SideStore igen via AltServer. 43 | 44 | ### Går inte att starta SideStore 45 | #### Orsak 46 | Flera möjliga orsaker. 47 | #### Åtgärd 48 | 1. Kontrollera att du installerat via iloader. 49 | 2. Installera om SideStore. 50 | 51 | Om det inte hjälper, gör så här: 52 | 53 | 1. Ta bort SideStore och alla appar du installerat via SideStore. 54 | 2. Installera SideStore igen. 55 | 3. Importera pairing-filen och logga in (när du får frågan om att uppdatera SideStore väljer du nej). 56 | 4. Installera `sidestore.ipa` på enheten. 57 | 5. Importera `sidestore.ipa` i SideStore som vilken IPA som helst. 58 | 6. Detta gör en ren uppdatering och bör lösa problemet. 59 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sorgenti delle app 3 | description: Guida sulle sorgenti delle app personalizzate 4 | --- 5 | 6 | # Creare una Sorgente 7 | 8 | SideStore è completamente compatibile con le Sorgenti di AltStore (o AltSources). La [documentazione](https://faq.altstore.io/developers/make-a-source) ufficiale di AltSource fornisce tutti i dettagli per creare la tua AltSource. Le AltSource permettono di visualizzare, installare e aggiornare facilmente tutte le tue app. 9 | 10 | Ecco alcuni tool di terze parti consigliati che possono aiutare nella creazione di AltSource: 11 | - Puoi usare [AltStudio](https://altstudio.app/) (WIP) per generare automaticamente un'AltSource utilizzando un'IPA! (Attenzione- Dopo aver usato AltStudio devi rimuovere i campi autogenerati marketplaceID e Build, altrimenti SideStore crederà che sia una sorgente affidabile e impedirà la sua aggiunta) 12 | - Puoi usare [AltSource Browser](https://altsource.by.lao.sb/browse/) per visualizzare i tuoi aggiornamenti di AltSource in bozza prima di applicare i cambiamenti, permettendoti di correggere eventuali errori prima di pubblicarli. 13 | 14 | # Distribuire la Sorgente 15 | 16 | Puoi creare un link per aggiungere automaticamente la tua AltSource tramite questa sintassi: 17 | ``` 18 | sidestore://source?url=[url della sorgente] 19 | ``` 20 | Per più info, vedi [URL Schema](/docs/advanced/url-schema). Spesso è utile creare link all'AltSource in questo formato, per poi usare un link shortener come `tinyurl.com`. Comunque, se un utente prova a usare un link `sidestore://` senza avere SideStore installato, crasherà, quindi un po' di documentazione aiuta. 21 | 22 | ## Finito! 23 | 24 | Ecco alcune AltSource consigliate che puoi aggiungere a SideStore: La [SideStore Community Source](https://github.com/SideStore/Community-Source), la [Source ufficiale di AltStore](https://apps.altstore.io), la [LiveContainer Source](https://raw.githubusercontent.com/LiveContainer/LiveContainer/refs/heads/main/apps.json) e la [DolphiniOS Source](https://altstore.oatmealdome.me). 25 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/installation/install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Installation 3 | description: SideStore auf Ihrem Gerät installieren 4 | sidebar_position: 2 5 | --- 6 | ## SideStore installieren 7 | 1. Verbinden Sie Ihr Apple-Gerät per Kabel an einen Computer. Falls aufgefordert, vertrauen Sie dem Computer und geben Sie Ihren Passcode ein. 8 | 2. Öffnen Sie iloader. 9 | 3. Melden Sie sich bei Ihrem Apple-Konto an 10 | 4. Wählen Sie Ihr Gerät aus 11 | 3. Wählen Sie "Install SideStore". 12 | 13 | ### Auf Ihrem Apple-Gerät 14 | Machen Sie Folgendes: 15 | 1. Öffnen Sie die App "Einstellungen". 16 | 2. Navigieren Sie zu "Allgemein" und dann "VPN und Geräteverwaltung". 17 | 3. Genehmigen Sie die Entwickler-App unter Ihrer E-Mail-Adresse. 18 | 4. Navigieren Sie zu "Datenschutz & Sicherheit". 19 | 5. Scrollen Sie nach unten und aktivieren Sie den Entwicklermodus. Ihr Gerät wird neu gestartet. 20 | 6. Öffnen Sie StosVPN und wählen Sie "Connect". 21 | 7. Öffnen Sie SideStore. 22 | 9. Melden Sie sich mit Ihrem Apple-Konto an. 23 | 10. Navigieren Sie zu "My Apps". 24 | 11. Tippen Sie auf den "x DAYS"-Knopf rechts von SideStore (x ist die Anzahl der Tage bis eine App abläuft). 25 | 12. Es wird ein Fenster angezeigt, welches anfragt, ein neues Zertifikat zu erstellen. Tippen Sie auf "Refresh Now". 26 | 27 | Falls der Prozess erfolgreich war, wird SideStore Sie zum Homescreen schicken und eine Nachricht anzeigen. In ein paar Sekunden wird SideStore wieder verfügbar sein. 28 | 29 | Achtung: Wenn Sie Ihr Apple-Gerät aktualisieren oder zurücksetzen, wird Ihre Pairing-Datei ungültig und Sie müssen mithilfe von [dieser Anleitung](/docs/advanced/pairing-file) sie wieder importieren. Dies kann auch wegen Apples Software zufällig geschehen. 30 | 31 | Wenn Sie SideStore erneut mithilfe von iloader installieren, könnte Ihr Zertifikat ungültig werden, was dazu führt, dass Sie erneut refreshen müssen. 32 | 33 | Falls Sie SideStore auf einem anderen Gerät mit demselben Apple-Konto installieren möchten, folgen Sie [diesen Schritten](https://github.com/SideStore/SideStore/pull/1008#issue-3138680291). 34 | -------------------------------------------------------------------------------- /docs/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: App Sources 3 | description: A guide on custom app sources. 4 | --- 5 | 6 | # Make a Source 7 | 8 | SideStore is fully compatible with AltStore Sources (or AltSources). The official AltSource [documentation](https://faq.altstore.io/developers/make-a-source) provides all the details you need to make your own AltSource. AltSources allow your audience to view, install, and update all your available apps easily. 9 | 10 | Here are some recommended third-party tools that can assist in creating viewing your AltSources: 11 | - You can use the community-built [AltStudio](https://altstudio.app/) (WIP) to generate you an AltSource automatically using an IPA! (Caution- After using AltStudio to create a source, you must remove the autogenerated-by-default marketplaceID and Build fields, otherwise SideStore will believe it to be a notarized source and prevent your source being added) 12 | - You can use the community-built [AltSource Browser](https://altsource.by.lao.sb/browse/) to view a visual display of your updates to an AltSource draft before finalizing your changes, allowing you to correct any errors before publishing them! 13 | 14 | # Distributing your Source 15 | 16 | You can create a link to automatically add your AltSource by using this template: 17 | ``` 18 | sidestore://source?url=[source url] 19 | ``` 20 | For more info, see [URL Schema](/docs/advanced/url-schema). It is often helpful to create the link to your AltSource in this format, then put it into a link shortener such as `tinyurl.com`. However, if a user tries to use a `sidestore://` link without SideStore already installed, it will crash, so some documentation may be helpful. 21 | 22 | ## That's it! 23 | 24 | Here are some good existing AltSources you can copy-and-paste into SideStore: The [SideStore Community Source](https://github.com/SideStore/Community-Source), the [official AltStore Source](https://apps.altstore.io), the [LiveContainer Source](https://raw.githubusercontent.com/LiveContainer/LiveContainer/refs/heads/main/apps.json), and the [DolphiniOS Source](https://altstore.oatmealdome.me). 25 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/advanced/sparserestore.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 3アプリ制限の回避 3 | description: SparseRestoreエクスプロイトを使用してSideStoreで3つ以上のアプリをインストールする方法のチュートリアル。 4 | --- 5 | 6 | :::note 7 | 8 | SparseRestore の「Bypass 3 App Limit」エクスプロイトは、**iOS/iPadOS 15.2 - 17.7, 18.0 - 18.1B4**のバージョンでのみ機能します。これ以外のバージョンで動作しない場合、**サポートを求めないでください**。 9 | 10 | ::: 11 | 12 | ## 必要条件 13 | * 上記のSparseRestoreエクスプロイト対応バージョンを搭載したiDevice 14 | * 少なくとも1つの空きアプリスロット 15 | * SideStore バージョン0.5.9以降(最新版は[こちら](https://github.com/SideStore/SideStore/releases)) 16 | * このエクスプロイトを実行するには、**「探す(Find My)」をオフにする必要があります**。オフでないと機能しません。手順は以下の通りです: 17 | - 設定アプリを開く 18 | - 上部の自分の名前をタップ 19 | - 「探す」をタップ 20 | - 「iPhone/iPadを探す」をタップ 21 | - 「iPhone/iPadを探す」をオフにする 22 | - Apple IDパスワードの入力が求められる場合があります 23 | 24 | > **注意:** 「盗難デバイス保護(Stolen Device Protection)」が有効になっていると、「探す」をオフにできないことがあります。その場合は、先に「盗難デバイス保護」を無効にしてください。 25 | 26 | ## 手順 27 | 1. SparseBox をインストールします。方法はいくつかありますが、ここでは SideStore を使ってインストールします。最新バージョンは[こちら](https://nightly.link/khanhduytran0/SparseBox/workflows/build/main/artifact.zip)から取得できます(artifact.zip を解凍して .ipa ファイルを取り出してください)。 28 | 29 | 2. SideStoreで「Bypass 3 App Limit」にチェックを入れ、**SideStoreを完全に終了**させた上でSparseBoxを開きます。 30 | 31 | 3. StosVPNを有効化し、ペアリングファイルを選択後、「Bypass 3 app limit」をタップします。ログ出力が表示され、`idevicebackup2 exited with code -18` または `code 2` と出たら、アプリを閉じてください。Applyを押す必要はありません。 32 | 33 | 4. SideStoreを再起動し、設定画面で「Clear Cache」を実行してください。これでSideStoreがエクスプロイトを検知できるようになります。 34 | 35 | 5. エクスプロイトが成功しているかを確認します(空きスロット数によっては複数のアプリをインストールして確認が必要)。制限エラーが出たら、SideStoreを再起動するかエクスプロイトを再実行してください。問題なくインストールできたら、成功です!これで同時に3つ以上のアプリをインストール可能になります。 36 | 37 | ## 補足 38 | このエクスプロイトは、**追加で3つのアプリをサイドロードするごとに毎回実行する必要があります**。 39 | 40 | 別の目的で「探す」を使用する場合は、再びオンにしても問題ありません。ただし、アプリのインストールや更新を行う際は、再度オフにする必要があります。 41 | 42 | ## 代替手段 43 | もしこのエクスプロイトが機能しない場合や、iDeviceが非対応バージョンである場合は、**LiveContainer**という別の方法があります。これは、SparseBoxの開発者である Duy Tran Khanh([khanhduytran0](https://github.com/khanhduytran0))が開発したもので、アプリを個別にインストールするのではなく、アプリをアプリ内のコンテナで実行します。状況によってはSparseRestoreよりも使いやすい場合もあります。[GitHubページはこちら](https://github.com/khanhduytran0/LiveContainer)。 44 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | titulo: Fuentes de Apps 3 | descripción: Una guía sobre fuentes de apps personalizadas. 4 | --- 5 | 6 | # Crea una fuente 7 | 8 | SideStore es completamente compatible con AltSources. La [documentación fuente](https://faq.altstore.io/developers/make-a-source) de AltStore oficial contiene todos los detalles que necesitas para crear tu propio AltSource. AltSources permiten a tu audiencia a ver, instalar, y actualizar todas tus apps disponibles facilmente atraves de Altstore y SideStore. 9 | 10 | Cuando editas tu fuente, se recomienda encarecidamente que creen y visualizen u nboceto de tus cambios usando el [Buscador de AltSource](https://altsource.by.lao.sb/browse) para ver una demostración visual de tu fuente y asi corregir cualquier error antes de finalizar y publicar cambios a tu fuente. 11 | 12 | # Distribuir tu fuente 13 | 14 | Puedes crear un link para así aladir automaticamente tu AltSource usando esta plantilla: 15 | ``` 16 | sidestore://source?url=[URL de tu fuente] 17 | ``` 18 | For more info, see [URL Schema](/docs/advanced/url-schema). It is often helpful to create the link to your AltSource in this format, then put it into a link shortener such as ```tinyurl.com```. However, if a user tries to use a sidestore:// link without SideStore already installed, it will crash, so some documentation may be helpful. 19 | Para mas información, dirigete a [URL Schema](/docs/advanced/url-schema). A menudo es de ayuda crear el link de tu AltSource en este formato, para despues ponerlo en un acortador de links como ```tinyurl.com```. Sin embargo, si un usuario intenta usar un link sidestore:// sin tener SideStore instalado, crasheará, asíque la documentación sera de ayuda. 20 | 21 | ## Ya esta! 22 | 23 | Aqui unos buenos AltSources ya existentes: The [official AltStore](https://apps.altstore.io) source, the [SideStore community](https://github.com/SideStore/Community-Source) source, the [StikJIT](https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) source, and the [DolphiniOS](https://altstore.oatmealdome.me) source. 24 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: JIT 활성화하기 3 | description: Just-in-Time (JIT) 컴파일이 필요한 앱을 위한 JIT 활성화 가이드이에요. 4 | --- 5 | 6 | :::note 7 | iOS 26에서 JIT가 작동하지 않게 되었어요. StikDebug에 수정 사항이 포함된 업데이트가 출시되었으나 지원 범위는 제한적이에요. 작성 시점(12월 18일) 기준으로 지원되는 앱은 다음과 같아요: 8 | * UTM 9 | * Amethyst 10 | * MeloNX 11 | * maciOS 12 | * DolphiniOS (베타) 13 | * Geode 14 | * Manic EMU 15 | 16 | 추가 업데이트를 위해 저희 디스코드 서버의 공지 채널과 [idevice 서버](https://discord.gg/mACqxMxP3X)의 공지 및 호환성 채널을 확인해 주세요. 17 | 18 | JIT를 활성화하는 방법은 AltJIT, SideJITServer 등 여러 가지가 있어요. 이 가이드에서는 현재 추천하는 방법인 StikDebug(이전 명칭: StikJIT)의 사용 방법을 다룰 거에요. 자세한 내용은 [공식 StikDebug 페어링 가이드](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md)를 참고헤 주세요. 19 | 20 | 대안으로, SideStore 0.6.2에는 minimuxer에 대한 업데이트가 포함되어 있어 StikDebug와 유사한 내장형 JIT 기능을 사용할 수 있습니다. 이를 사용하려면 Wi-Fi 연결 또는 비행기 모드가 활성화된 상태로 StosVPN에 연결된 후 “내 앱”으로 이동하여 JIT를 활성화하려는 앱을 길게 눌러 “JIT 활성화”를 터치하시면 됩니다. 21 | ::: 22 | 23 | ## 사전 요구사항 24 | * iOS/iPadOS 17.4-18.6를 실행하는 iDevice(18.4b1 제외). 17.0-모든 iOS 18 버전을 사용 중인 경우 (18.4b1 제외) [SideJITServer](https://github.com/nythepegasus/SideJITServer)와 같은 대안을 사용해야 해요. SideStore의 JIT 활성화 기능은 기기가 약 4년 이상 된(TXM 미지원) 기기에서만 iOS 26에서 작동해요. 25 | 26 | ## StikDebug 설치 27 | 28 | 1. **StikDebug 설치** 29 | StikDebug를 [AltStore 공식 소스](https://intradeus.github.io/http-protocol-redirector?r=sidestore://https://stikdebug.xyz/index.json)에서 설치해 주세요. 30 | 31 | 32 | 2. **페어링 파일 넣기:** 33 | iloader를 사용하여 SideStore와 동일한 **페어링 파일**을 iloader로 가져옵니다. 이 과정에 대한 자세한 내용은 [여기](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md)를 참조하십시오. 34 | 35 | ### 표준 설치 절차 (장치를 재시작할 때마다 반드시 먼저 수행해야 함): 36 | 37 | 1. **DDI 마운트:** 38 | Wi-Fi와 VPN을 연결하고 페어링 파일을 배치한 상태에서 StikDebug를 실행한 후 강제 종료하고 다시 실행하세요. 이렇게 하면 DDI가 마운트됩니다. 이제 StikDebug에 모든 녹색 표시등이 표시되어야 합니다. 39 | 40 | ## JIT를 활성화하려면 41 | 42 | 1. **VPN 활성화:** 43 | Wi-Fi 또는 셀룰러 데이터가 활성화된 상태에서 LocalDevVPN을 열고 내장 VPN을 활성화하세요. 셀룰러 데이터를 사용하는 경우, 비행기 모드를 켠 후 VPN이 활성화된 상태로 앱을 다시 실행하세요. 44 | 45 | 2. **JIT 활성화:** 46 | “Connect by App” 버튼을 선택하고 목록에서 앱을 선택합니다(목록에 표시되려면 적절한 권한으로 사이드로드되어야 합니다). 이를 통해 디버거를 연결하고 JIT 기능을 활성화할 수 있습니다. -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/release-notes.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release Notes 3 | description: A collection of SideStore release notes. 4 | sidebar_position: 2 5 | --- 6 | 7 | # Stable Notes 8 | 9 | ## 0.6.1 10 | 11 | ### Changelog 12 | It's spring already? Here's a new update that should fix migration issues from 0.5.9/0.5.10 and an expiration bug. Happy sideloading! 13 | 14 | ### What's Changed: 15 | - fix: typo in hasUpdate comparison by @l2dy in [#900](https://github.com/SideStore/SideStore/pull/900) 16 | - Update SettingsViewController.swift by @neoarz in [#915](https://github.com/SideStore/SideStore/pull/915) 17 | - Fixes for migration issues when migrating from 0.5.9 to 0.6.0 by @mahee96 in [#920](https://github.com/SideStore/SideStore/pull/920) 18 | - Fix typo "levaraging" -> "leveraging" by @lafrenierejm in [#926](https://github.com/SideStore/SideStore/pull/926) 19 | - Added StosVPN to the EM Proxy part. by @Br0des in [#940](https://github.com/SideStore/SideStore/pull/940) 20 | 21 | 22 | ## 0.6.0 23 | 24 | ### Changelog 25 | It's March and we have some big changes. We've finally included AltStore 2.0 changes into SideStore. So you will get all the benefits of that and also some fixes in SideStore. Enjoy! 26 | 27 | ### What's Changed: 28 | - AltStore 2.0 changes in [#794](https://github.com/SideStore/SideStore/pull/794) 29 | - [Refresh]: Remove install stuffs from refresh since in refresh should only renew provisioning profiles by @mahee96 in [#846](https://github.com/SideStore/SideStore/pull/846) 30 | - [Settings]: Fix: DisableAppLimit switch reverting back to off state even if on iOS where sparseRestore is not patched yet by @mahee96 in [#850](https://github.com/SideStore/SideStore/pull/850) 31 | - [Backup]: Fix: update logic during install missed since override keyword was missing by @mahee96 in [#857](https://github.com/SideStore/SideStore/pull/857) 32 | - Feature: Bulk sources-add in sources screen with capability to stage them before persisting into database by @mahee96 in [#888](https://github.com/SideStore/SideStore/pull/888) 33 | - Feature: Render in-app update description as (full) markdown by @mahee96 in [#897](https://github.com/SideStore/SideStore/pull/897) -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/release-notes.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release Notes 3 | description: A collection of SideStore release notes. 4 | sidebar_position: 2 5 | --- 6 | 7 | # Stable Notes 8 | 9 | ## 0.6.1 10 | 11 | ### Changelog 12 | It's spring already? Here's a new update that should fix migration issues from 0.5.9/0.5.10 and an expiration bug. Happy sideloading! 13 | 14 | ### What's Changed: 15 | - fix: typo in hasUpdate comparison by @l2dy in [#900](https://github.com/SideStore/SideStore/pull/900) 16 | - Update SettingsViewController.swift by @neoarz in [#915](https://github.com/SideStore/SideStore/pull/915) 17 | - Fixes for migration issues when migrating from 0.5.9 to 0.6.0 by @mahee96 in [#920](https://github.com/SideStore/SideStore/pull/920) 18 | - Fix typo "levaraging" -> "leveraging" by @lafrenierejm in [#926](https://github.com/SideStore/SideStore/pull/926) 19 | - Added StosVPN to the EM Proxy part. by @Br0des in [#940](https://github.com/SideStore/SideStore/pull/940) 20 | 21 | 22 | ## 0.6.0 23 | 24 | ### Changelog 25 | It's March and we have some big changes. We've finally included AltStore 2.0 changes into SideStore. So you will get all the benefits of that and also some fixes in SideStore. Enjoy! 26 | 27 | ### What's Changed: 28 | - AltStore 2.0 changes in [#794](https://github.com/SideStore/SideStore/pull/794) 29 | - [Refresh]: Remove install stuffs from refresh since in refresh should only renew provisioning profiles by @mahee96 in [#846](https://github.com/SideStore/SideStore/pull/846) 30 | - [Settings]: Fix: DisableAppLimit switch reverting back to off state even if on iOS where sparseRestore is not patched yet by @mahee96 in [#850](https://github.com/SideStore/SideStore/pull/850) 31 | - [Backup]: Fix: update logic during install missed since override keyword was missing by @mahee96 in [#857](https://github.com/SideStore/SideStore/pull/857) 32 | - Feature: Bulk sources-add in sources screen with capability to stage them before persisting into database by @mahee96 in [#888](https://github.com/SideStore/SideStore/pull/888) 33 | - Feature: Render in-app update description as (full) markdown by @mahee96 in [#897](https://github.com/SideStore/SideStore/pull/897) 34 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Common Issues 3 | description: Common issues found in SideStore. 4 | --- 5 | 6 | :::warning 7 | 8 | This page is currently a work in progress. The information provided should be accurate, but please refer to our [Discord server](https://discord.com/invite/sidestore) for assistance if needed. 9 | 10 | ::: 11 | 12 | ## Common Issues with SideStore 13 | 14 | ### AFC Connection Failure 15 | #### Cause 16 | Connection issues or an invalid pairing file. 17 | #### Resolution 18 | 1. Attempt to reconnect 19 | 2. Generate a new pairing file using JitterbugPair and import it via the settings menu. See our [Pairing File instructions](/docs/advanced/pairing-file) for details. 20 | 21 | ### No WiFi or VPN Connection 22 | #### Cause 23 | Connection issues with the minimuxer service. 24 | #### Resolution 25 | 1. If using WireGuard, switch to StosVPN 26 | 2. Try again (spamming the button usually helps) 27 | 3. Restart SideStore 28 | 4. Restart StosVPN 29 | 5. Generate a new pairing file using JitterbugPair and import it via the settings menu. See our [Pairing File instructions](/docs/advanced/pairing-file) for details. 30 | 31 | ### Sidestore Hangs Halfway Through Installation 32 | #### Cause 33 | Cache issues. 34 | #### Resolution 35 | 1. Restart SideStore 36 | 2. Clear Cache 37 | 3. Change Anisette Server 38 | 4. Reset adi.pb 39 | 5. Sign out from SideStore and sign back in 40 | 6. Use WireGuard 41 | 7. Restart device 42 | 8. Regenerate pairing file 43 | 9. Reinstall SideStore 44 | 45 | ### Unable to Launch SideStore 46 | #### Cause 47 | Multiple possible causes. 48 | #### Resolution 49 | 1. Make sure you installed SideStore through Altserver. 50 | 2. Reinstall SideStore 51 | 52 | If the above doesnt work, do the following: 53 | 54 | 1. Delete SideStore and all apps that you have installed from SideStore. 55 | 2. Reinstall SideStore. 56 | 3. Select pairing file and login. (It will give you a promt to refresh SideStore, select no) 57 | 4. Install the Sidestore.ipa file to your device. 58 | 5. Import the Sidestore.ipa file into Sidestore like how you would install any other app. 59 | 6. This will allow Sidestore to do a clean refresh, and hopefully fix the issue. 60 | 61 | 62 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Common Issues 3 | description: Common issues found in SideStore. 4 | --- 5 | 6 | :::warning 7 | 8 | This page is currently a work in progress. The information provided should be accurate, but please refer to our [Discord server](https://discord.com/invite/sidestore) for assistance if needed. 9 | 10 | ::: 11 | 12 | ## Common Issues with SideStore 13 | 14 | ### AFC Connection Failure 15 | #### Cause 16 | Connection issues or an invalid pairing file. 17 | #### Resolution 18 | 1. Attempt to reconnect 19 | 2. Generate a new pairing file using JitterbugPair and import it via the settings menu. See our [Pairing File instructions](/docs/installation/pairing-file) for details. 20 | 21 | ### No WiFi or VPN Connection 22 | #### Cause 23 | Connection issues with the minimuxer service. 24 | #### Resolution 25 | 1. If using WireGuard, switch to StosVPN 26 | 2. Try again (spamming the button usually helps) 27 | 3. Restart SideStore 28 | 4. Restart StosVPN 29 | 5. Generate a new pairing file using JitterbugPair and import it via the settings menu. See our [Pairing File instructions](/docs/installation/pairing-file) for details. 30 | 31 | ### Sidestore Hangs Halfway Through Installation 32 | #### Cause 33 | Cache issues. 34 | #### Resolution 35 | 1. Restart SideStore 36 | 2. Clear Cache 37 | 3. Change Anisette Server 38 | 4. Reset adi.pb 39 | 5. Sign out from SideStore and sign back in 40 | 6. Use WireGuard 41 | 7. Restart device 42 | 8. Regenerate pairing file 43 | 9. Reinstall SideStore 44 | 45 | ### Unable to Launch SideStore 46 | #### Cause 47 | Multiple possible causes. 48 | #### Resolution 49 | 1. Make sure you installed SideStore through Altserver. 50 | 2. Reinstall SideStore 51 | 52 | If the above doesnt work, do the following: 53 | 54 | 1. Delete SideStore and all apps that you have installed from SideStore. 55 | 2. Reinstall SideStore. 56 | 3. Select pairing file and login. (It will give you a promt to refresh SideStore, select no) 57 | 4. Install the Sidestore.ipa file to your device. 58 | 5. Import the Sidestore.ipa file into Sidestore like how you would install any other app. 59 | 6. This will allow Sidestore to do a clean refresh, and hopefully fix the issue. 60 | 61 | 62 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/advanced/app-sources.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sources d'applications 3 | description: Un guide sur les sources d'applications personnalisées. 4 | --- 5 | 6 | # Créer une source 7 | 8 | SideStore est entièrement compatible avec les AltSources. La [documentation](https://faq.altstore.io/developers/make-a-source) officielle d'AltStore fournit toutes les informations nécessaires pour créer votre propre AltSource. Les AltSources permettent à votre public de consulter, d'installer et de mettre à jour facilement toutes vos applications disponibles, aussi bien via AltStore que SideStore. 9 | 10 | Voici quelques outils tiers recommandés qui peuvent vous aider à créer et à consulter vos AltSources: 11 | - Vous pouvez utiliser [AltStudio](https://altstudio.app/) (en cours de développement), un outil développé par la communauté, pour générer automatiquement un AltSource à partir d'un fichier IPA! 12 | - Vous pouvez utiliser [AltSource Browser](https://altsource.by.lao.sb/browse/), un outil développé par la communauté, pour afficher un aperçu visuel de vos modifications sur un brouillon d'AltSource avant de finaliser vos changements, ce qui vous permet de corriger d'éventuelles erreurs avant la publication! 13 | 14 | # Distribution de votre source 15 | 16 | Vous pouvez créer un lien pour ajouter automatiquement votre AltSource en utilisant ce modèle: 17 | ``` 18 | sidestore://source?url=[URL source] 19 | ``` 20 | Pour plus d'informations, consultez le [Schéma d'URL](/docs/advanced/url-schema). Il est souvent utile de créer le lien vers votre AltSource dans ce format, puis de le raccourcir avec un service comme ```tinyurl.com```. Cependant, si un utilisateur essaie d'ouvrir un lien `sidestore://` sans avoir installé SideStore, cela provoquera un plantage, il peut donc être judicieux de fournir une documentation explicative. 21 | 22 | ## C'est tout! 23 | 24 | Voici quelques AltSources existants que vous pouvez copier-coller dans SideStore: La [Source Communautaire SideStore](https://github.com/SideStore/Community-Source), la [Source officielle AltStore](https://apps.altstore.io), la [Source StikDebug](https://raw.githubusercontent.com/StephenDev0/StikDebug/refs/heads/main/repo.json), la [Source LiveContainer](https://raw.githubusercontent.com/LiveContainer/LiveContainer/refs/heads/main/apps.json) et la [Source DolphiniOS](https://altstore.oatmealdome.me). 25 | -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/release-notes.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Uitgaveopmerkingen 3 | description: Uitgaveopmerkingen van de SideStore app. 4 | sidebar_position: 2 5 | --- 6 | 7 | # Stable Notes 8 | 9 | ## 0.6.1 10 | 11 | ### Changelog 12 | Is het nu al lente? Hier is een nieuwe update die migratieproblemen van 0.5.9/0.5.10 oplost én een bug met vervaldatums verhelpt. Veel plezier met sideloaden! 13 | 14 | ### Wat is er gewijzigd: 15 | - fix: typefout in hasUpdate-vergelijking door @l2dy in [#900](https://github.com/SideStore/SideStore/pull/900) 16 | - Update SettingsViewController.swift door @neoarz in [#915](https://github.com/SideStore/SideStore/pull/915) 17 | - Oplossingen voor migratieproblemen bij migratie van 0.5.9 naar 0.6.0 door @mahee96 in [#920](https://github.com/SideStore/SideStore/pull/920) 18 | - Fix typefout "levaraging" -> "leveraging" door @lafrenierejm in [#926](https://github.com/SideStore/SideStore/pull/926) 19 | - StosVPN toegevoegd aan het EM Proxy-gedeelte door @Br0des in [#940](https://github.com/SideStore/SideStore/pull/940) 20 | 21 | 22 | ## 0.6.0 23 | 24 | ### Changelog 25 | Het is maart en we hebben een paar grote veranderingen. We hebben eindelijk de AltStore 2.0-wijzigingen opgenomen in SideStore. Je krijgt dus alle voordelen daarvan, plus enkele extra verbeteringen binnen SideStore. Veel plezier! 26 | 27 | ### Wat is er gewijzigd: 28 | - AltStore 2.0-wijzigingen in [#794](https://github.com/SideStore/SideStore/pull/794) 29 | - [Refresh]: Installatiegerelateerde onderdelen verwijderd uit refresh, aangezien refresh alleen provisioning-profielen hoort te vernieuwen door @mahee96 in [#846](https://github.com/SideStore/SideStore/pull/846) 30 | - [Settings]: Fix: DisableAppLimit-switch sprong terug naar uit-stand, zelfs op iOS waar sparseRestore nog niet gepatcht is door @mahee96 in [#850](https://github.com/SideStore/SideStore/pull/850) 31 | - [Backup]: Fix: update-logica tijdens installatie werd gemist omdat het override-keyword ontbrak door @mahee96 in [#857](https://github.com/SideStore/SideStore/pull/857) 32 | - Feature: Meerdere bronnen tegelijk toevoegen op het sources-scherm, met de mogelijkheid om ze eerst te beoordelen voordat ze in de database worden opgeslagen door @mahee96 in [#888](https://github.com/SideStore/SideStore/pull/888) 33 | - Feature: De in-app updatebeschrijving renderen als (volledige) markdown door @mahee96 in [#897](https://github.com/SideStore/SideStore/pull/897) 34 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/release-notes.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | titulo: Notas de parches 3 | descripción: Una colección de las notas de parche de SideStore. 4 | --- 5 | 6 | # Notas de parches estables 7 | 8 | ## 0.6.1 9 | 10 | ### Registro de cambios 11 | ¿Ya es primavera? aquí una nueva actualización que debería arreglar los problemas con la migración desde las actualizaciones 0.5.9/0.5.10 y un bug de expiración. ¡Felíz sideloading! 12 | 13 | ### Qué ha cambiado: 14 | - Arreglo: Errata en hasUpdate comparación por @l2dy en [#900](https://github.com/SideStore/SideStore/pull/900) 15 | - Actualización de SettingsViewController.swift por @neoarz en [#915](https://github.com/SideStore/SideStore/pull/915) 16 | - Arreglos para problemas de migración desde las actualizaciones 0.5.9/0.5.10 a 0.6.0 por @mahee96 en [#920](https://github.com/SideStore/SideStore/pull/920) 17 | - Arreglado errata "levaraging" -> "leveraging" por @lafrenierejm en [#926](https://github.com/SideStore/SideStore/pull/926) 18 | - Añadido StosVPN a la EM Proxy part. por @Br0des en [#940](https://github.com/SideStore/SideStore/pull/940) 19 | 20 | 21 | ## 0.6.0 22 | 23 | ### Registro de cambios 24 | Es Marzo y tenemos unos grandes cambios. Finalmente hemos añadido los cambios de AltStore 2.0 a SideStore. Por lo cual tendras todos los beneficios de la 2.0 y algunos arreglos en SideStore. ¡Disfruta! 25 | 26 | ### Qué ha cambiado: 27 | - Cambios de AltStore 2.0 [#794](https://github.com/SideStore/SideStore/pull/794) 28 | - [Refrescar]: Quitado cosas de instalacion del refrescamiento ya que al refrescar solo debería renovar los perfiles provisionales, por @mahee96 en [#846](https://github.com/SideStore/SideStore/pull/846) 29 | - [Ajustes]: Arreglo: Revertir el botón de desactivar limite de apps a desactivado incluso en iOS donde SparseRestore no ha sido parcheado todavia, por @mahee96 en [#850](https://github.com/SideStore/SideStore/pull/850) 30 | - [Respaldo]: Arreglo: Actualizar la logica durante la instalación perdida debido a que faltaba una palabra clave de override por @mahee96 en [#857](https://github.com/SideStore/SideStore/pull/857) 31 | - Característica: Fuentes: agregadas fuentes en la pantalla con la capacidad de prepararlas antes de persistirlas en la base de datos, por @mahee96 en [#888](https://github.com/SideStore/SideStore/pull/888) 32 | - Feature: Renderizar descripción de actualización dentro de la app como reducción (completa), por @mahee96 en [#897](https://github.com/SideStore/SideStore/pull/897) 33 | -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-docs/current/installation/prerequisites.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Förberedelser 3 | description: 'De första stegen i installationen.' 4 | sidebar_position: 1 5 | --- 6 | 7 | SideStores installationsprocess kan verka knepig, men med ***engångs***hjälp av en dator och lite tid har du SideStore på din enhet! 8 | 9 | ## Krav 10 | 11 | För att installera SideStore behöver du: 12 | 13 | - En iPhone/iPad [med lösenkod](https://support.apple.com/en-us/119586) som kör iOS/iPadOS 14 eller senare 14 | - En dator (engångsbruk) 15 | - Ett Apple-konto 16 | - En Wi-Fi-anslutning 17 | - Lite tid (processen går snabbt, men [avsätt tid för felsökning](/docs/troubleshooting/)) 18 | 19 | ## Förbered dina enheter 20 | 21 | ### På din iPhone/iPad 22 | 23 | SideStore använder ett VPN på enheten som gör att SideStore kan prata med interna tjänster. 24 | 25 | 1. Ladda ner appen StosVPN från [Apple App Store](https://apps.apple.com/us/app/stosvpn/id6744003051). 26 | 2. Aktivera VPN:t. 27 | 28 | VPN:t måste vara på varje gång du vill installera, uppdatera eller uppfräscha appar i SideStore. 29 | 30 | ### På din Mac 31 | 1. Ladda ner och installera iloader för Mac ([M-Series](https://github.com/nab138/iloader/releases/latest/download/iloader-darwin-aarch64.dmg) eller [Intel](https://github.com/nab138/iloader/releases/latest/download/iloader-darwin-x64.dmg)). 32 | 2. Öppna Terminal, kör `sudo xattr -c ./Applications/iloader.app` och ange ditt lösenord om du blir ombedd. 33 | 34 | 35 | ## På din Windows-dator 36 | 1. Ladda ner och installera [iTunes](https://apple.co/ms). 37 | 2. Ladda ner iloader-installationsprogrammet ([exe](https://github.com/nab138/iloader/releases/latest/download/iloader-windows-x64.exe) eller [msi](https://github.com/nab138/iloader/releases/latest/download/iloader-windows-x64.msi)). 38 | 3. Kör installationsprogrammet. 39 | 40 | ## På din Linux-dator 41 | 1. Ladda ner och installera `usbmuxd` (kan redan vara installerat i din distribution, annars installerar du via pakethanteraren). 42 | 2. Ladda ner och installera iloader för din distribution ([Debian/Ubuntu](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.deb), [Fedora/openSUSE](https://github.com/nab138/iloader/releases/download/v0.1.3/iloader-linux-x86_64.rpm), [övriga](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.AppImage)). 43 | 44 | 45 | ## Nästa steg 46 | 47 | Följ sedan installationsinstruktionerna för att lägga in SideStore! 48 | - [Installera](install) 49 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/release-notes.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Журнал изменений 3 | description: Последние обновления и улучшения. 4 | sidebar_position: 2 5 | --- 6 | 7 | # Журнал изменений 8 | 9 | ## 0.6.1 10 | 11 | ### Изменения 12 | Ого, уже весна? Вот новое обновление которое должно исправить ошибки с миграцией с версий 0.5.9/0.5.10 и один экспериментальный баг. Счастливых загрузок! 13 | 14 | ### Что изменилось: 15 | - Исправление: исправили опечатку в hasUpdate comparison благодаря @l2dy в [#900](https://github.com/SideStore/SideStore/pull/900) 16 | - Обновили SettingsViewController.swift благодаря @neoarz в [#915](https://github.com/SideStore/SideStore/pull/915) 17 | - Исправили проблемы с миграцией при переходе с версии 0.5.9 на версию 0.6.0 благодаря @mahee96 в [#920](https://github.com/SideStore/SideStore/pull/920) 18 | - Исправили опечатку "levaraging" -> "leveraging" благодаря @lafrenierejm в [#926](https://github.com/SideStore/SideStore/pull/926) 19 | - Добавили StosVPN в часть с прокси. Благодаря @Br0des в [#940](https://github.com/SideStore/SideStore/pull/940) 20 | 21 | 22 | ## 0.6.0 23 | 24 | ### Изменения 25 | Уже Март и у нас есть несколько больших изменений. Мы наконец-то внесли изменения AltStore 2.0 в SideStore. Поэтому теперь вы получите все его преимущества, и также исправили несколько ошибок в SideStore. Наслождайтесь! 26 | 27 | ### Что изменилось: 28 | - Изменения AltStore 2.0 в [#794](https://github.com/SideStore/SideStore/pull/794) 29 | - [Обновление]: Убрали скаченные вещи из освежения приложения так как "в обновлении" должно только обновлять профили подготовки благодаря @mahee96 в [#846](https://github.com/SideStore/SideStore/pull/846) 30 | - [Настройки]: Исправлено: Переключатель DisableAppLimit возвращался обратно в выключенное состояние даже если на iOS, где находится sparseRestore, ещё не исправлен благодаря @mahee96 в [#850](https://github.com/SideStore/SideStore/pull/850) 31 | - [Резервные копии]: Исправлено: логика обновления в течении загрузки пропадала так как определенное ключевое слово отсутствовало благодаря @mahee96 в [#857](https://github.com/SideStore/SideStore/pull/857) 32 | - Функция: Массовое добавление источников на экране источников с возможностью предварительной подготовки (стадирования) перед сохранением в базу данных благодаря @mahee96 in [#888](https://github.com/SideStore/SideStore/pull/888) 33 | - Функция: отображение описания обновлений в приложении с поддержкой полного Markdown благодаря @mahee96 в [#897](https://github.com/SideStore/SideStore/pull/897) 34 | -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Veelvoorkomende Problemen 3 | description: Veelvoorkomende problemen in SideStore. 4 | --- 5 | 6 | :::warning 7 | 8 | Deze pagina is momenteel een work in progress. De informatie zou correct moeten zijn, maar raadpleeg onze [Discord-server](https://discord.com/invite/sidestore) voor hulp indien nodig. 9 | 10 | ::: 11 | 12 | ## Veelvoorkomende problemen met SideStore 13 | 14 | ### AFC Connection Failure 15 | #### Oorzaak 16 | Verbindingsproblemen of een ongeldig pairing-bestand. 17 | #### Oplossing 18 | 1. Probeer opnieuw verbinding te maken 19 | 2. Genereer een nieuw pairing-bestand met JitterbugPair en importeer dit via het instellingenmenu. Zie onze [Pairing File-instructies](/docs/installation/pairing-file) voor meer details. 20 | 21 | ### No WiFi or VPN Connection 22 | #### Oorzaak 23 | Verbindingsproblemen met de minimuxer-service. 24 | #### Oplossing 25 | 1. Als je WireGuard gebruikt, schakel dan over naar StosVPN 26 | 2. Probeer het opnieuw (knop meerdere keren indrukken helpt vaak) 27 | 3. Start SideStore opnieuw 28 | 4. Start StosVPN opnieuw 29 | 5. Genereer een nieuw pairing-bestand met JitterbugPair en importeer dit via het instellingenmenu. Zie onze [Pairing File-instructies](/docs/installation/pairing-file) voor meer details. 30 | 31 | ### Sidestore blijft halverwege de installatie hangen 32 | #### Oorzaak 33 | Cacheproblemen. 34 | #### Oplossing 35 | 1. Start SideStore opnieuw 36 | 2. Leeg de cache (Clear Cache) 37 | 3. Wijzig de Anisette-server 38 | 4. Reset adi.pb 39 | 5. Log uit in SideStore en log opnieuw in 40 | 6. Gebruik WireGuard 41 | 7. Start het apparaat opnieuw 42 | 8. Genereer een nieuw pairing-bestand 43 | 9. Installeer SideStore opnieuw 44 | 45 | ### SideStore kan niet worden gestart 46 | #### Oorzaak 47 | Meerdere mogelijke oorzaken. 48 | #### Oplossing 49 | 1. Zorg dat je SideStore via AltServer hebt geïnstalleerd. 50 | 2. Installeer SideStore opnieuw. 51 | 52 | Als het bovenstaande niet werkt, doe dan het volgende: 53 | 54 | 1. Verwijder SideStore en alle apps die je via SideStore hebt geïnstalleerd. 55 | 2. Installeer SideStore opnieuw. 56 | 3. Selecteer het pairing-bestand en log in. (Je krijgt een prompt om SideStore te verversen, kies “nee”.) 57 | 4. Installeer het Sidestore.ipa-bestand op je apparaat. 58 | 5. Importeer het Sidestore.ipa-bestand in Sidestore zoals je dat bij elke andere app zou doen. 59 | 6. Dit zorgt ervoor dat Sidestore een schone refresh kan doen en hopelijk het probleem oplost. 60 | -------------------------------------------------------------------------------- /static/img/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /i18n/ja/docusaurus-plugin-content-docs/current/installation/pairing-file.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: ペアリングファイル 3 | description: ペアリングファイルはSideStoreの動作に不可欠です。 4 | sidebar_position: 2 5 | --- 6 | 7 | JitterbugPair(※Jitterbugアプリではありません)を使用することで、SideStoreのようなプログラムがデバイスと通信できるペアリングファイルを作成できます。これはSideStoreを使用するために必須であり、これがないと動作しません。 8 | 9 | [JitterbugPairをダウンロード](https://github.com/osy/Jitterbug/releases): 10 | - [Windows (64-bit)](https://github.com/osy/Jitterbug/releases/download/v1.3.1/jitterbugpair-win64.zip) 11 | - [macOS](https://github.com/SideStore/SideStore-Docs/releases/download/need-a-place-to-put-jittterbug/jitterbugpair) 12 | - [Linux](https://github.com/osy/Jitterbug/releases/download/v1.3.1/jitterbugpair-linux.zip) 13 | 14 | ## ペアリング手順 15 | 16 | :::tip 17 | 18 | クラウドストレージを使用するとファイル拡張子が(.txtなどに)変更されることがあります。転送前にペアリングファイルをZIP圧縮することを推奨します。SideStoreは `.mobiledevicepairing` ファイルのみを受け付けます。 19 | 20 | ::: 21 | 22 | ### Windows 23 | 24 | 1. JitterbugPairのZIPファイルを解凍します。 25 | 2. デバイスをPCに接続し、ホーム画面を開いた状態にします。次にプログラムを実行してください。 26 | * 「このコンピュータを信頼しますか?」と表示された場合は「信頼」を選択してください。 27 | 3. `.mobiledevicepairing` で終わるファイルが生成されます。 28 | 4. iTunesなどを使ってこのファイルをデバイスに転送します。送信前にZIP圧縮するのが安全です。 29 | * クラウドストレージを使用するとファイルが `.txt` に変わることがあるので注意。古いSideStore(例: 0.1.1)では `.plist` に変更して使うことも可能です。 30 | 31 | .exeファイルをダブルクリックしても開かない場合、コマンドプロンプトまたはPowerShellを使用してください。 32 | 33 | 5. エクスプローラーでjitterbugpairがあるフォルダを開きます。 34 | 6. パスバーの空白部分をクリックし `powershell` と入力してEnter。 35 | 7. PowerShellで `./jitterbugpair.exe` を入力してEnterキーを押します(デバイスは接続された状態にしておく)。 36 | 37 | ### macOS 38 | 39 | 1. `Jitterbugpair-macos.zip` を解凍します。 40 | 2. パスコードを設定し、デバイスをケーブルで接続してロックを解除。「信頼しますか?」が出たら「信頼」。 41 | 3. ホーム画面を開いておきます。 42 | 4. 解凍した `jitterbugpair` ファイル(黒と緑のアイコン)を探します。 43 | 5. Launchpadの「ユーティリティ」からターミナルを開きます。 44 | 6. `jitterbugpair` ファイルをターミナルにドラッグして、Enterキー。 45 | 7. 「このアプリはマルウェアがないことを確認できません」と表示された場合: 46 | - システム設定 > プライバシーとセキュリティ に移動 47 | - 警告文をスクロールして「このアプリを開く」を選択 48 | - 再度プログラムを実行 49 | 8. `.mobiledevicepairing` 拡張子のファイルが生成されます。 50 | 9. 見つからない場合: 51 | - ファイル名をコピーしFinderで検索 52 | - 複数作成した場合も同名で一覧表示されるはずです 53 | 10. ファイルをAirDrop、iCloud、Google Drive、メールなどでデバイスへ転送します。ZIP圧縮がおすすめです。 54 | 55 | ### Linux 56 | 57 | Linuxのコマンドラインに慣れている方向けの手順です。 58 | 59 | 1. ZIPファイルを解凍し、ターミナルでそのディレクトリを開きます。 60 | 2. `chmod +x ./jitterbugpair` を実行して実行権限を付与。 61 | 3. デバイスを接続してホーム画面を開いた状態にし、 `./jitterbugpair` を実行。 62 | * 「このコンピュータを信頼しますか?」が出たら「信頼」し、必要であれば再実行。 63 | 4. `.mobiledevicepairing` で終わるファイルが生成されます。 64 | 5. ZIPで圧縮してからクラウドや他の方法で転送してください。 65 | * 拡張子が `.txt` に変わることがあるので注意。古いバージョンでは `.plist` に変更して使うこともできます。 66 | 67 | ファイルマネージャーから直接実行できる場合もありますが、ターミナルでの実行を推奨します。 68 | 69 | -------------------------------------------------------------------------------- /docs/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Common Issues 3 | description: Common issues encountered using SideStore. 4 | --- 5 | 6 | :::warning 7 | 8 | This page is currently a work in progress. The information provided should be accurate, but please refer to our [Discord server](https://dis.sidestore.io/) for assistance if needed. 9 | 10 | ::: 11 | 12 | 13 | ## Common Issues with SideStore 14 | 15 | ### I have an issue with the latest nightly 16 | #### Cause 17 | Our nightly builds include bleeding-edge features and improvements, some of which may cause instability. 18 | #### Resolution 19 | Switch to the latest stable build. Please do not request support for bugs encountered in nightly builds. 20 | 21 | ### I am receiving error code: "X" 22 | #### Cause 23 | An error occurred. 24 | #### Resolution 25 | Check our helpful [list of error codes](error-codes)! 26 | 27 | ### AFC Connection Failure / No Wi-Fi or VPN Connection 28 | #### Cause 29 | Connection issues with the minimuxer service. 30 | #### Resolution 31 | 1. If using WireGuard or StosVPN, switch to LocalDevVPN 32 | 2. Turn off any DNS-blockers 33 | 3. Ensure your VPN app (LocalDevVPNg) and Wi-Fi are both connected 34 | 4. Try again (spamming the button sometimes helps) 35 | 5. Restart SideStore 36 | 6. Restart LocalDevVPN 37 | 7. [Replace your pairing file](/docs/advanced/pairing-file) using iloader. 38 | 39 | ### SideStore Hangs Partway Through Installation 40 | #### Cause 41 | Cache or protocol issues. 42 | #### Resolution 43 | 1. Update SideStore, if applicable. Otherwise, just restart 44 | 2. Clear Cache 45 | 3. Change Anisette Server 46 | 4. In servers- reset adi.pb, then sign out of SideStore and sign back in 47 | 5. Restart device 48 | 6. Recreate pairing file 49 | 7. Reinstall SideStore using iloader 50 | 51 | ### Unable to Launch SideStore 52 | #### Cause 53 | Multiple possible causes. 54 | #### Resolution 55 | 1. Make sure you installed SideStore through iloader 56 | 2. Reinstall SideStore 57 | 58 | If the above doesn't work, do the following: 59 | 60 | 1. Delete SideStore and all apps that you have installed from SideStore 61 | 2. Reinstall SideStore 62 | 3. Import your pairing file and login. (It will give you a prompt to refresh SideStore, select no) 63 | 4. Install the `SideStore.ipa` file to your device 64 | 5. Import the `SideStore.ipa` file into SideStore like how you would install any other IPA 65 | 6. This will allow SideStore to do a clean refresh, and hopefully fix the issue 66 | 67 | ### I couldn't find my issue here 68 | #### Resolution 69 | Please check our [comprehensive troubleshooting guide](/docs/troubleshooting). 70 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Problèmes courants 3 | description: Problèmes courants rencontrés dans SideStore. 4 | --- 5 | 6 | :::warning 7 | 8 | Cette page est actuellement en cours de développement. Les informations fournies devraient être exactes, mais veuillez consulter notre [serveur Discord](https://discord.com/invite/sidestore) pour toute assistance si nécessaire. 9 | 10 | ::: 11 | 12 | ## Problèmes courants avec SideStore 13 | 14 | ### Échec de la connexion AFC 15 | #### Cause 16 | Problèmes de connexion ou fichier d'appairage invalide. 17 | #### Résolution 18 | 1. Essayez de vous reconnecter 19 | 2. Générez un nouveau fichier d'appairage en utilisant JitterbugPair et importez-le via le menu des paramètres. Consultez nos [instructions pour le fichier d'appairage](/docs/installation/pairing-file) pour plus de détails. 20 | 21 | ### Pas de connexion Wi-Fi ou VPN 22 | #### Cause 23 | Problèmes de connexion avec le service minimuxer. 24 | #### Résolution 25 | 1. Si vous utilisez WireGuard, passez à StosVPN 26 | 2. Essayez à nouveau (spammer le bouton aide généralement) 27 | 3. Redémarrez SideStore 28 | 4. Redémarrez StosVPN 29 | 5. Générez un nouveau fichier d'appairage en utilisant JitterbugPair et importez-le via le menu des paramètres. Consultez nos [instructions pour le fichier d'appairage](/docs/installation/pairing-file) pour plus de détails. 30 | 31 | ### SideStore se bloque à mi-chemin de l'installation 32 | #### Cause 33 | Problèmes de cache. 34 | #### Résolution 35 | 1. Redémarrez SideStore 36 | 2. Videz le cache 37 | 3. Changez de serveur Anisette 38 | 4. Réinitialisez adi.pb 39 | 5. Déconnectez-vous de SideStore puis reconnectez-vous 40 | 6. Utilisez WireGuard 41 | 7. Redémarrez l'appareil 42 | 8. Régénérez le fichier d'appairage 43 | 9. Réinstallez SideStore 44 | 45 | ### Impossible de lancer SideStore 46 | #### Cause 47 | Plusieurs causes possibles. 48 | #### Résolution 49 | 1. Assurez-vous d'avoir installé SideStore via AltServer. 50 | 2. Réinstallez SideStore 51 | 52 | Si les étapes ci-dessus ne fonctionnent pas, faites ce qui suit: 53 | 54 | 1. Supprimez SideStore et toutes les applications que vous avez installées depuis SideStore. 55 | 2. Réinstallez SideStore. 56 | 3. Sélectionnez le fichier d'appairage et connectez-vous. (Un message apparaîtra pour actualiser SideStore, sélectionnez non) 57 | 4. Installez le fichier Sidestore.ipa sur votre appareil. 58 | 5. Importez le fichier Sidestore.ipa dans SideStore comme vous le feriez pour installer n'importe quelle autre application. 59 | 6. Cela permettra à SideStore de faire une actualisation propre, et espérons-le de résoudre le problème. 60 | 61 | 62 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Частые ошибки 3 | description: Частые ошибки найденные в SideStore. 4 | --- 5 | 6 | :::warning 7 | 8 | Это страница в настоящее время все еще находится в разработке. Данная ниже информация должна быть правильной, но лучше ссылаться на наш [Дискорд сервер](https://discord.com/invite/sidestore) для помощи если нужно. 9 | 10 | ::: 11 | 12 | ## Частые ошибки с SideStore 13 | 14 | ### AFC Connection Failure 15 | #### Причина возникновения 16 | Проблемы с подключением или неправильный файл сопряжения (pairing file). 17 | #### Решение 18 | 1. Попытайтесь переподключиться. 19 | 2. Сгенирируйте новый файл сопряжения (pairing file), используя JitterbugPair и импортируйте его через меню настроек. Для большей информации посмотрите нашу [Инструкцию для файла сопряжения](/docs/installation/pairing-file) 20 | 21 | ### No WiFi or VPN Connection (Отсутствует подключение к Wifi/VPN) 22 | #### Причина возникновения 23 | Проблемы подключения с сервисом minimuxer. 24 | #### Решение 25 | 1. Если вы используете WireGuard, то перейдите на StosVPN 26 | 2. Попробуйте снова (спамить на кнопку обычно помогает) 27 | 3. Перезапустите SideStore 28 | 4. Перезапустите StosVPN 29 | 5. Сгенирируйте новый файл сопряжения (pairing file), используя JitterbugPair и импортируйте его через меню настроек. Для большей информации посмотрите нашу [Инструкцию для файла сопряжения](/docs/installation/pairing-file) 30 | 31 | ### Sidestore сбрасывается на половине скачивания 32 | #### Причина возникновения 33 | Проблемы с кешом. 34 | #### Решение 35 | 1. Перезапустите SideStore 36 | 2. Очистите кеш 37 | 3. Поменяйте Anisette сервер 38 | 4. Сбросьте adi.pb 39 | 5. Выйдите из SideStore и зайдите снова 40 | 6. Попробуйте использовать WireGuard 41 | 7. Перезагрузите ваше устройство 42 | 8. Сгенерируйте другой файл сопряжения (pairing file) 43 | 9. Переустановите SideStore 44 | 45 | ### Не получается открыть SideStore 46 | #### Причины возникновения 47 | Несколько. 48 | #### Решение 49 | 1. Убедитесь что вы установили SideStore через Altserver. 50 | 2. Переустановите SideStore 51 | 52 | Если рекомендации сверху не помогли, попробуйте слежующие: 53 | 54 | 1. Удалите SideStore и все приложения, котооые вы скачали с помощью него. 55 | 2. Переустановите SideStore (да, опять). 56 | 3. Выберите файл сопряжения (pairing file) и войдиье. (Вылезет промт предлогая обновить SideStore, выберите "нет"). 57 | 4. Установите файл Sidestore.ipa на ваше устройство. 58 | 5. Импортируйте файл Sidestore.ipa в Sidestore также, как вы бы установили любое другое приложение через него. 59 | 6. Это позволит Sidestore сделать чистую очистку и обновление, и, надеюсь, исправит проблему. 60 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/installation/prerequisites.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Prérequis 3 | description: Les premières étapes de l'installation. 4 | sidebar_position: 1 5 | --- 6 | 7 | Le processus d'installation de SideStore peut sembler compliqué, mais avec l'utilisation ***ponctuelle*** d'un ordinateur et un peu de temps, vous aurez SideStore sur votre appareil! 8 | 9 | ## Prérequis 10 | 11 | Pour installer SideStore, vous aurez besoin de: 12 | 13 | - Un iPhone ou iPad [avec un code d'accès](https://support.apple.com/fr-fr/119586) fonctionnant sous iOS/iPadOS 14 ou supérieur 14 | - Un ordinateur (une seule fois) 15 | - Un identifiant Apple 16 | - Une connexion Wi-Fi 17 | - Un peu de temps (C'est un processus rapide, mais il vaut mieux [prévoir du temps pour le dépannage](/docs/troubleshooting/)) 18 | 19 | ## Préparez votre appareil 20 | 21 | ### Dans votre iPhone/iPad: 22 | 23 | SideStore utilise un VPN intégré qui permet à SideStore de communiquer avec les services internes. 24 | 25 | 1. Téléchargez l'application StosVPN dans l'[App Store officiel](https://apps.apple.com/fr/app/stosvpn/id6744003051). 26 | 2. Activez le VPN. 27 | 28 | Ce VPN doit être activé à chaque fois que vous souhaitez installer, mettre à jour, ou rafraîchir des applications dans SideStore. 29 | 30 | ### Dans votre Mac 31 | 1. Télechargez et installez iloader pour Mac ([Séries M](https://github.com/nab138/iloader/releases/latest/download/iloader-darwin-aarch64.dmg) ou [Intel](https://github.com/nab138/iloader/releases/latest/download/iloader-darwin-x64.dmg)). 32 | 2. Ouvrez le Terminal, éxecuter `sudo xattr -c ./Applications/iloader.app` et entrez votre mot de passe si demandé. 33 | 34 | ### Dans votre Ordinateur Windows 35 | 1. Télechargez et installez [iTunes](https://apple.co/ms). 36 | 2. Télegarchez l'installateur iloader ([exe](https://github.com/nab138/iloader/releases/latest/download/iloader-windows-x64.exe) ou [msi](https://github.com/nab138/iloader/releases/latest/download/iloader-windows-x64.msi)). 37 | 3. Éxecutez le programme d'installation. 38 | 39 | ### Dans votre Machine Linux 40 | 1. Télechargez et installez `usbmuxd` (peut être près-installer dans votre distro, sinon l'installe avec votre package manager). 41 | 2. Télecharger et installez iloader pour votre distro ([Debian/Ubuntu](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.deb), [Fedora/openSUSE](https://github.com/nab138/iloader/releases/download/v0.1.3/iloader-linux-x86_64.rpm), [other](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.AppImage)). 42 | 43 | 44 | ## Prochaines étapes 45 | 46 | Maintenenant, suivez les processus d'installation pour installer SideStore! 47 | - [Installer](install.mdx) 48 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/installation/prerequisites.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Voraussetzungen 3 | description: 'Die ersten Schritte der Installation' 4 | sidebar_position: 1 5 | --- 6 | 7 | Die Installation von SideStore könnte erst schwierig erscheinen, aber mit der ***einmaligen*** Nutzung eines Computers haben Sie schon SideStore auf Ihrem Gerät! 8 | 9 | ## Erforderungen 10 | 11 | Um SideStore zu installieren, benötigen Sie: 12 | 13 | - Ein iPhone/iPad [mit einem Passcode](https://support.apple.com/en-us/119586), welches iOS/iPadOS 14 oder höher ausführt 14 | - Einen Computer (einmalig) 15 | - Ein Apple-Konto 16 | - Eine WLAN-Verbindung 17 | - Einige Zeit (Dies ist ein kurzer Prozess, aber Sie sollten sich [Zeit für Problembehandlung](/docs/troubleshooting/) lassen) 18 | 19 | ## Vorbereitung Ihrer Geräte 20 | 21 | ### Auf Ihrem iPhone/iPad: 22 | 23 | SideStore verwendet ein on-device VPN, welches es SideStore ermöglicht, mit internen Diensten zu kommunizieren. 24 | 25 | 1. Laden Sie die StosVPN App vom [Apple App Store](https://apps.apple.com/us/app/stosvpn/id6744003051) herunter. 26 | 2. Aktivieren Sie das VPN. 27 | 28 | Dieses VPN muss immer aktiviert sein, wenn sie es wünschen, Apps zu installieren, aktualisieren oder zu refreshen. 29 | 30 | ### Auf Ihrem Mac 31 | 1. Laden Sie iloader für einen Mac der ([M-Serie](https://github.com/nab138/iloader/releases/latest/download/iloader-darwin-aarch64.dmg) oder [Intel](https://github.com/nab138/iloader/releases/latest/download/iloader-darwin-x64.dmg)) herunter. 32 | 2. Öffnen Sie das Terminal, führen Sie `sudo xattr -c ./Applications/iloader.app` aus und geben Sie falls nötig Ihr Passwort ein. 33 | 34 | 35 | ## Auf Ihrem Windows-PC 36 | 1. Installieren Sie [iTunes](https://apple.co/ms) (nicht vom Microsoft Store!) 37 | 2. Laden Sie das iloader-Installationsprogramm (als [.exe](https://github.com/nab138/iloader/releases/latest/download/iloader-windows-x64.exe) oder [.msi](https://github.com/nab138/iloader/releases/latest/download/iloader-windows-x64.msi)) herunter. 38 | 3. Führen Sie das Installationsprogramm aus. 39 | 40 | ## Auf Ihrem Linux-Rechner 41 | 1. Installieren Sie `usbmuxd` (könnte bei ihrer Distribution bereits vorhanden sein, andererseits installieren Sie es mit Ihrem Package-Manager). 42 | 2. Installieren Sie iloader für Ihre Distribution: ([Debian/Ubuntu](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.deb), [Fedora/openSUSE](https://github.com/nab138/iloader/releases/download/v0.1.3/iloader-linux-x86_64.rpm), [andere](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.AppImage)). 43 | 44 | 45 | ## Nächste Schritte 46 | 47 | Befolgen Sie zunächst die Installationsanweisung! 48 | - [Installation](install) 49 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Problemi Comuni 3 | description: Problemi comuni di SideStore non associati a codici di errore. 4 | --- 5 | 6 | :::warning 7 | 8 | Questa pagina è in costruzione. Le informazioni dovrebbero essere accurate, ma affidati al nostro [Server Discord](https://dis.sidestore.io/) per assistenza. 9 | 10 | ::: 11 | 12 | 13 | ## Problemi comuni di SideStore 14 | 15 | ### Ho un problema con l'ultima nightly 16 | #### Causa 17 | Le nostre build nightly includono funzionalità e miglioramenti bleeding-edge, alcuni dei quali possono causare instabilità. 18 | #### Soluzione 19 | Passa all'ultima build stabile. Non richiedere supporto riguardo a bug delle versioni nightly. 20 | 21 | ### Mi esce l'errore con il codice "X" 22 | #### Causa 23 | Si è presentato un errore. 24 | #### Soluzione 25 | Controlla la nostra [lista di codici di errore](error-codes)! 26 | 27 | ### AFC Connection Failure / No Wi-Fi o Connessione VPN 28 | #### Causa 29 | Problema di connessione con il servizio minimuxer. 30 | #### Soluzione 31 | 1. Se stai usando WireGuard o StosVPN, passa a LocalDevVPN 32 | 2. Spegni ogni eventuale DNS-blocker 33 | 3. Assicurati che la tua VPN (LocalDevVPN) e Wi-Fi siano connessi 34 | 4. Riprova (spammare il bottone a volte aiuta) 35 | 5. Riavvia SideStore 36 | 6. Riavvia LocalDevVPN 37 | 7. [Piazza un nuovo pairing file](/docs/advanced/pairing-file) usando iloader. 38 | 39 | ### SideStore si blocca a metà durante l'installazione 40 | #### Causa 41 | Problemi di cache o protocollo. 42 | #### Soluzione 43 | 1. Aggiorna SideStore, se possibile. Altrimenti riavvialo 44 | 2. Cancella la cache 45 | 3. Cambia server anisette 46 | 4. In server- resetta adi.pb, poi esegui il logout da SideStore e rifai il login 47 | 5. Riavvia il dispositivo 48 | 6. Ricrea il pairing file 49 | 7. Reinstalla SideStore con iloader 50 | 51 | ### Impossibile eseguire SideStore 52 | #### Causa 53 | Diverse cause possibili. 54 | #### Soluzione 55 | 1. Assicurati di aver installato SideStore tramite iloader 56 | 2. Reinstalla SideStore 57 | 58 | Se continua a non funzionare, procedi come segue: 59 | 60 | 1. Cancella SideStore e tutte le app che hai installato con SideStore 61 | 2. Reinstalla SideStore 62 | 3. Importa il pairing file e accedi. (Se ti chiede se vuoi refreshare SideStore, scegli "no") 63 | 4. Installa `sidestore.ipa` sul tuo device 64 | 5. Importa il file `sidestore.ipa` in SideStore come se stessi installando un qualsiasi IPA 65 | 6. Questo permette a SideStore di fare un avvio pulito, sperando risolva il problema 66 | 67 | ### Non sono riuscito a trovare il mio problema qui 68 | #### Soluzione 69 | Controlla la nostra [guida per la risoluzione di problemi](/docs/troubleshooting). 70 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Enabling JIT 3 | description: A tutorial on how to enable Just-in-Time (JIT) Compilation for apps that require it. 4 | --- 5 | 6 | :::note 7 | 8 | There are many methods to enabling JIT, such as AltJIT, SideJITServer, and more. This tutorial will cover the use of StikJIT/StikDebug, as it is the method we currently recommend. As an alternative, SideStore 0.6.2-nightly.2025.04.15 also includes updates to minimuxer, allowing built-in JIT functionality similar to StikDebug. To use this, simply ensure you are connected to StosVPN and Wi-Fi or with mobile data and Wi-Fi disabled. 9 | ::: 10 | 11 | ## Prerequisites 12 | * An iDevice on iOS/iPadOS 17.4 or above, excluding 18.4b1. If you are on 17.0-17.3, you must use an alternative such as [SideJITServer](https://github.com/nythepegasus/SideJITServer) 13 | * At least 1 free app slot for StikJIT 14 | 15 | ## StikJIT installation with SideStore 16 | 17 | 1. **Obtain StikJIT:** 18 | Add the StikJIT AltSource to SideStore [here](sidestore://source?url=https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) (You must have SideStore installed or this link will not function). 19 | 20 | 2. **Install:** 21 | Use SideStore to install StikJIT. 22 | 23 | 3. **Installation procedures:** 24 | Follow the standard installation procedures in the usage guide below. 25 | 26 | ## StikDebug installation with App Store (Doesn't require an app slot) 27 | 28 | 1. **Install StikDebug** 29 | Install StikDebug from the App Store [here](https://apps.apple.com/us/app/stikdebug/id6744045754). Something nice- the VPN present in StikDebug is similar to the one used in SideStore, meaning you use it to install and refresh apps as well. 30 | 31 | 2. **Installation procedures:** 32 | Follow the standard installation procedures in the usage guide below. 33 | 34 | ### Standard installation procedures: 35 | 36 | 1. **Enable VPN:** 37 | Start by activating StosVPN for StikJIT or the built-in VPN in StikDebug. 38 | 39 | 2. **Upload the Pairing File:** 40 | When prompted, import the same **unzipped pairing file** obtained via JitterbugPair you use for SideStore. For more information on obtaining this pairing file, see [here](/docs/installation/pairing-file). 41 | 42 | ## To enable JIT: 43 | 44 | 1. **Enable VPN:** 45 | Start by activating StosVPN for StikJIT or the built-in VPN in StikDebug. 46 | 47 | 2. **Activate JIT:** 48 | Click the “Enable JIT” button and select an app from the list to activate the JIT functionality. 49 | 50 | ### Offline JIT Enabling 51 | To enable JIT offline, enable the StosVPN VPN or StikDebug. Then, turn both Wi-Fi and Mobile Data OFF when you launch StikJIT (use Airplane Mode). You can then enable JIT as normal. 52 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/release-notes.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Notes de version 3 | description: Une collection de notes de version de SideStore. 4 | sidebar_position: 6 5 | --- 6 | 7 | # Notes de version stables 8 | 9 | ## 0.6.1 10 | 11 | ### Journal des modifications 12 | C'est déjà le printemps? Voici une nouvelle mise à jour qui devrait corriger les problèmes de migration depuis les versions 0.5.9/0.5.10 ainsi qu'un bug lié à l'expiration. Bon sideloading! 13 | 14 | ### Modifications apportées: 15 | - correctif: faute de frappe dans la comparaison hasUpdate par @l2dy dans [#900](https://github.com/SideStore/SideStore/pull/900) 16 | - Mise à jour de SettingsViewController.swift par @neoarz dans [#915](https://github.com/SideStore/SideStore/pull/915) 17 | - Correctifs pour les problèmes de migration lors du passage de la version 0.5.9 à 0.6.0 par @mahee96 dans [#920](https://github.com/SideStore/SideStore/pull/920) 18 | - Correction de la faute de frappe "levaraging" -> "leveraging" par @lafrenierejm dans [#926](https://github.com/SideStore/SideStore/pull/926) 19 | - Ajout de StosVPN à la section proxy EM. par @Br0des dans [#940](https://github.com/SideStore/SideStore/pull/940) 20 | 21 | 22 | ## 0.6.0 - N'UTILISEZ PAS cette version, utilisez plutôt la 0.6.1 ou la 0.5.10. 23 | 24 | ### Journal des modifications 25 | Nous sommes en mars et de grands changements arrivent. Nous avons enfin intégré les modifications d'AltStore 2.0 dans SideStore. Vous bénéficierez donc de toutes les améliorations d'AltStore, ainsi que de quelques correctifs propres à SideStore. Profitez-en bien! 26 | 27 | ### Modifications apportées: 28 | - Modifications d'AltStore 2.0 intégrés dans [#794](https://github.com/SideStore/SideStore/pull/794) 29 | - [Actualisation]: Suppression des éléments liés à l'installation dans l'actualisation, puisque celle-ci ne devrait servir qu'à renouveler les profils de provisionnement. par @mahee96 dans [#846](https://github.com/SideStore/SideStore/pull/846) 30 | - [Paramètres]: Correctif: le bouton DisableAppLimit repassait en position désactivée, même sur les versions d'iOS où sparseRestore n'est pas encore patché. par @mahee96 dans [#850](https://github.com/SideStore/SideStore/pull/850) 31 | - [Sauvegarde]: Correctif: la logique de mise à jour lors de l'installation était ignorée car le mot-clé override manquait. par @mahee96 dans [#857](https://github.com/SideStore/SideStore/pull/857) 32 | - Fonctionnalité: Ajout en masse de sources dans l'écran des sources, avec la possibilité de les préparer avant de les enregistrer dans la base de données. par @mahee96 dans [#888](https://github.com/SideStore/SideStore/pull/888) 33 | - Fonctionnalité: Affichage de la description des mises à jour intégrées à l'app au format Markdown (complet) par @mahee96 dans [#897](https://github.com/SideStore/SideStore/pull/897) -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Chạy JIT 3 | description: Hướng dẫn cách bật Just-in-Time (JIT) cho các ứng dụng yêu cầu tính năng này. 4 | --- 5 | 6 | :::note 7 | 8 | Có nhiều phương pháp để bật JIT, chẳng hạn như AltJIT, SideJITServer, v.v. Hướng dẫn này sẽ đề cập đến việc sử dụng StikJIT/StikDebug, vì đây là phương pháp chúng tôi hiện đang khuyến nghị. Ngoài ra, SideStore 0.6.2-nightly.2025.04.15 cũng bao gồm các bản cập nhật cho minimuxer, cho phép chức năng JIT tích hợp tương tự như StikDebug. Để sử dụng chức năng này, chỉ cần đảm bảo bạn đã kết nối với StosVPN và Wi-Fi hoặc đã tắt dữ liệu di động và Wi-Fi. 9 | ::: 10 | 11 | ## Điều kiện 12 | * Một iDevice trên iOS/iPadOS 17.4 trở lên, ngoại trừ 18.4b1. Nếu bạn đang sử dụng 17.0-17.3, bạn phải sử dụng một giải pháp thay thế như [SideJITServer](https://github.com/nythepegasus/SideJITServer) 13 | * Ít nhất 1 khe cắm ứng dụng miễn phí cho StikJIT 14 | 15 | ## Cài đặt StikJIT với SideStore 16 | 17 | 1. **Tải StikJIT:** 18 | Thêm StikJIT AltSource vào SideStore [tại đây](sidestore://source?url=https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) (Bạn phải cài đặt SideStore, nếu không liên kết này sẽ không hoạt động). 19 | 20 | 2. **Cài đặt:** 21 | Sử dụng SideStore để cài đặt StikJIT. 22 | 23 | 3. **Quy trình cài đặt:** 24 | Thực hiện theo các quy trình cài đặt tiêu chuẩn trong hướng dẫn sử dụng bên dưới. 25 | 26 | ## Cài đặt StikDebug với App Store (Không yêu cầu khe cắm ứng dụng) 27 | 28 | 1. **Cài đặt StikDebug** 29 | Cài đặt StikDebug từ App Store [tại đây](https://apps.apple.com/us/app/stikdebug/id6744045754). Một điều tuyệt vời là VPN có trong StikDebug tương tự như VPN được sử dụng trong SideStore, nghĩa là bạn cũng có thể sử dụng VPN để cài đặt và làm mới ứng dụng. 30 | 31 | 2. **Quy trình cài đặt:** 32 | Thực hiện theo các quy trình cài đặt tiêu chuẩn trong hướng dẫn sử dụng bên dưới. 33 | 34 | ### Quy trình cài đặt chuẩn: 35 | 36 | 1. **Bật VPN:** 37 | Bắt đầu bằng cách kích hoạt StosVPN cho StikJIT hoặc VPN tích hợp trong StikDebug. 38 | 39 | 2. **Tải lên tệp kết nối:** 40 | Khi được nhắc, hãy nhập cùng **tệp kết nối đã giải nén** lấy được qua JitterbugPair mà bạn sử dụng cho SideStore. Để biết thêm thông tin về cách lấy tệp ghép nối này, hãy xem [tại đây](/docs/installation/pairing-file). 41 | 42 | ## Để bật JIT: 43 | 44 | 1. **Chạy VPN:** 45 | Bắt đầu bằng cách kích hoạt StosVPN cho StikJIT hoặc VPN tích hợp trong StikDebug. 46 | 47 | 2. **Khởi động JIT:** 48 | Nhấp vào nút “Enable JIT” và chọn một ứng dụng từ danh sách để kích hoạt chức năng JIT. 49 | 50 | ### Bật JIT ngoại tuyến 51 | Để bật JIT ngoại tuyến, hãy bật StosVPN VPN hoặc StikDebug. Sau đó, tắt cả Wi-Fi và Dữ liệu di động khi bạn khởi chạy StikJIT (sử dụng Chế độ máy bay). Sau đó, bạn có thể bật JIT như bình thường. 52 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Включение JIT 3 | description: Инструкция по включению Just-in-Time (JIT) компиляции для приложений, использующих её. 4 | --- 5 | 6 | :::note 7 | 8 | Есть много способов для включения JIT, таких как AltJIT, SideJITServer и других. В этой инструкции мы будем использовать StikJIT/StikDebug, мы рекомендуем использовать этот метод. Или как альтернативу, SideStore 0.6.2-nightly.2025.04.15 имеет обновления в minimuxer, в которых имеется встроенное включение JIT, схожим принципом на StikDebug. Для его использования, подключитесь к StosVPN и Wi-Fi или выключите сотовые данные с Wi-Fi. 9 | ::: 10 | 11 | ## Требования 12 | * Устройство на iOS/iPadOS 17.4 или выше, исключая 18.4b1. Если Вы на 17.0-17.3, используйте другие методы, по типу [SideJITServer](https://github.com/nythepegasus/SideJITServer) 13 | * 1 бесплатный слот приложения для StikJIT 14 | 15 | ## Установка StikJIT через SideStore 16 | 17 | 1. **Загрузите StikJIT:** 18 | Добавьте источник приложений в SideStore [здесь](sidestore://source?url=https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) (Нужно чтобы SideStore был установлен, иначе ссылка не будет работать). 19 | 20 | 2. **Установите:** 21 | Используйте SideStore для установки StikJIT. 22 | 23 | 3. **Процедура установки:** 24 | Следуйте стандартной процедуре установки по инструкции ниже. 25 | 26 | ## Установка StikDebug через App Store (Не требует слот приложения) 27 | 28 | 1. **Установите StikDebug** 29 | Установите StikDebug с App Store [здесь](https://apps.apple.com/us/app/stikdebug/id6744045754). Приятный бонус - VPN, используемый в StikDebug схожий на тот, который используется в SideStore. Это означает, что Вы можете использовать его также для установки и освежение приложений. 30 | 31 | 2. **Процедура установки:** 32 | Следуйте стандартной процедуре установки по инструкции ниже. 33 | 34 | ### Стандартная процедура установки: 35 | 36 | 1. **Включите VPN:** 37 | Начните с включения StosVPN для StikJIT или встроенного VPN в StikDebug. 38 | 39 | 2. **Выгрузите файл сопряжения:** 40 | При появлении запроса, импортируйте тот-же самый **разархивированный файл сопряжения** получаемый через JitterbugPair, что используется в SideStore. Для более детальной информации по получению файла сопряжения, смотрите [здесь](/docs/installation/pairing-file). 41 | 42 | ## Чтобы включить JIT: 43 | 44 | 1. **Включите VPN:** 45 | Начните с включения StosVPN для StikJIT или встроенного VPN в StikDebug. 46 | 47 | 2. **Включите JIT:** 48 | Нажмите на кнопку “Enable JIT” и выберите приложения из списка для включения JIT 49 | 50 | ### Офлайн включения JIT 51 | Для использования JIT без сети, включите либо StosVPN, либо StikDebug. Далее, выключите и Wi-Fi, и сотовые данные когда будете включать StikJIT (используйте Авиарежим). Теперь Вы можете включить JIT как делаете это обычно. 52 | -------------------------------------------------------------------------------- /i18n/it/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Abilitare JIT 3 | description: Tutorial su come abilitare la compilazione Just-In-Time (JIT) per app che la richiedono. 4 | --- 5 | 6 | :::note 7 | iOS 26 ha rotto di nuovo JIT. È stato rilasciato un fix in StikDebug, ma il supporto è **molto** limitato. Ad oggi (18 Dic), le uniche app supportate sono: 8 | * UTM 9 | * Amethyst 10 | * MeloNX 11 | * maciOS 12 | * DolphiniOS (beta) 13 | * Geode 14 | * Manic EMU 15 | 16 | Tieni d'occhio il nostro canale di annunci nel server Discord e sul [server di idevice](https://discord.gg/mACqxMxP3X) per ulteriori aggiornamenti. 17 | 18 | Ci sono diversi metodi per abilitare JIT in base alla tua versione iOS. Questo tutorial copre l'uso di StikDebug (prima StikJIT), in quanto è il metodo raccomandato. Per più info, vedi la [guida ufficiale per il pairing StikDebug](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md). 19 | 20 | Come alternativa, SideStore 0.6.2 include aggiornamenti a minimuxer, permettendo la funzionalità JIT built-in, in modo simile a StikDebug. Per usarlo, assicurati di essere connesso a LocalDevVPN con il Wi-Fi connesso o la Modalità Aereo attiva, poi naviga in "Le mie app", tieni premuto l'app in cui vuoi abilitare JIT e tocca "abilita JIT". 21 | ::: 22 | 23 | ## Prerequisiti 24 | * Un iPhone o iPad con iOS/iPadOS 17.4-tutte le versioni di iOS 18, esclusa 18.4b1. Se sei su 17.0-17.3 devi usare un metodo alternativo come [SideJITServer](https://github.com/nythepegasus/SideJITServer). Il JIT-enabler di SideStore funziona su iOS 26 solo se il tuo dispositivo ha più di 4 anni (non-TMX capable). 25 | 26 | ## Installazione di StikDebug: 27 | 28 | 1. **Installa StikDebug** 29 | Installa StikDebug dalla [Repo Ufficiale di AltStore](https://intradeus.github.io/http-protocol-redirector?r=sidestore://https://stikdebug.xyz/index.json). 30 | 31 | 32 | 2. **Aggiungi il pairing file:** 33 | Usa iloader per importare lo stesso **pairing file** che hai usato per SideStore. Per più info su questo procedimento, guarda [qui](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md). 34 | 35 | 36 | ### Procedura di setup standard (va fatta subito, ad ogni riavvio del device) 37 | 38 | 1. **Monta il DDI:** 39 | Apri StikDebug con il Wi-Fi, la VPN connessa e anche il pairing file importato, poi chiudila e riaprila. Questo monta il DDI. StikDebug dovrebbe avere tutti gli indicatori verdi. 40 | 41 | ## Per abilitare JIT: 42 | 43 | 1. **Abilita la VPN:** 44 | Inizia aprendo LocalDevVPN in Wi-FI o sotto Rete Dati e attiva la VPN integrata. Ora, se sei sotto Rete Dati, attiva la modalità aereo e riapri l'app con la VPN ancora attiva. 45 | 46 | 2. **Attiva JIT:** 47 | Seleziona il bottone "Connect by App" e scegli un'app dalla lista (deve essere sideloadata con gli entitlements giusti per apparire nella lista) per attaccare un debugger e attivare la funzionalità JIT. 48 | -------------------------------------------------------------------------------- /docs/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Enabling JIT 3 | description: A tutorial on how to enable Just-in-Time (JIT) Compilation for apps that require it. 4 | --- 5 | 6 | :::note 7 | iOS 26 has broken JIT once again. An update has been released to StikDebug with a fix, but support is limited. As of writing (Dec 18), the only supported apps are: 8 | * UTM 9 | * Amethyst 10 | * MeloNX 11 | * maciOS 12 | * DolphiniOS (beta) 13 | * Geode 14 | * Manic EMU 15 | 16 | Please keep an eye on our announcements channel in our Discord server and on the [idevice server](https://discord.gg/mACqxMxP3X)'s announcements and compatibility channels for further updates. 17 | 18 | There are many methods to enabling JIT, depending on your iOS version. This tutorial will cover the use of StikDebug (formerly StikJIT), as it is the method we currently recommend. For more information, consult the [official StikDebug pairing guide](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md). 19 | 20 | As an alternative, SideStore 0.6.2 includes updates to minimuxer, allowing built-in JIT functionality similar to StikDebug. To use this, simply ensure you are connected to LocalDevVPN with either Wi-Fi connected or Airplane Mode enabled, then navigate to "My Apps," longpress the app you wish to enable JIT for, and tap "enable JIT". 21 | ::: 22 | 23 | ## Prerequisites 24 | * An iPhone or iPad running iOS/iPadOS 17.4-all iOS 18 versions, excluding 18.4b1. If you are on 17.0-17.3, you must use an alternative such as [SideJITServer](https://github.com/nythepegasus/SideJITServer). SideStore's JIT enabler will only work on iOS 26 if your device is about 4+ years old (non-TXM capable). 25 | 26 | ## StikDebug installation procedures: 27 | 28 | 1. **Install StikDebug** 29 | Install StikDebug from the [Official AltStore Source](https://intradeus.github.io/http-protocol-redirector?r=sidestore://https://stikdebug.xyz/index.json). 30 | 31 | 32 | 2. **Place the Pairing File:** 33 | Use iloader to import the same **pairing file** you use for SideStore with iloader. For more information on this process, see [here](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md). 34 | 35 | 36 | ### Standard setup procedure (must be done first, every time you restart your device) 37 | 38 | 1. **Mount the DDI:** 39 | Open StikDebug with Wi-Fi and the VPN connected as well as the pairing file placed, then force close it and reopen it. This mounts the DDI. StikDebug should now show all green indicators. 40 | 41 | ## To enable JIT: 42 | 43 | 1. **Enable VPN:** 44 | Start by opening LocalDevVPN on Wi-Fi or with cellular data enabled and activating the built-in VPN. Now, if using cellular data, enable Airplane Mode and reopen the app with the VPN still enabled. 45 | 46 | 2. **Activate JIT:** 47 | Select the “Connect by App” button and select an app from the list (must be sideloaded with proper entitlements to appear in the list) to attach a debugger and activate JIT functionality. 48 | -------------------------------------------------------------------------------- /i18n/vi/docusaurus-plugin-content-docs/current/troubleshooting/common-issues.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Các vấn đề hay xảy ra 3 | description: Các vấn đề hay xảy ra trên SideStore. 4 | --- 5 | 6 | :::warning 7 | 8 | Trang này hiện đang trong quá trình hoàn thiện. Thông tin được cung cấp phải chính xác, nhưng vui lòng tham khảo [Discord server của chúng tôi](https://discord.com/invite/sidestore) để được hỗ trợ nếu cần. 9 | 10 | ::: 11 | 12 | ## Các vấn đề hay xảy ra SideStore 13 | 14 | ### AFC Connection Failure 15 | #### Nguyên nhân 16 | Sự cố kết nối hoặc tệp ghép nối không hợp lệ. 17 | #### Cách giải quyết 18 | 1. Hãy thử kết nối lại 19 | 2. Tạo một tệp ghép nối mới bằng JitterbugPair và nhập tệp đó thông qua phần settings trong SideStore. Xem phần [Hướng dẫn ghép nối tập tin](/docs/installation/pairing-file) để tham khảo. 20 | 21 | ### Không có kết nối WiFi hoặc VPN 22 | #### Nguyên nhân 23 | Sự cố kết nối với dịch vụ. 24 | #### Cách giải quyết 25 | 1. Nếu đang sử dụng WireGuard, hãy xóa và tải [StosVPN trên appstore](https://apps.apple.com/us/app/stosvpn/id6744003051) 26 | 2. Thử lại (nhấn nút thường xuyên hay có tác dụng) 27 | 3. Khởi động lại SideStore 28 | 4. Khởi động lại StosVPN 29 | 5. Tạo một tệp ghép nối mới bằng JitterbugPair và nhập tệp đó thông qua phần settings trong SideStore. Xem phần [Hướng dẫn ghép nối tập tin](/docs/installation/pairing-file) để tham khảo. 30 | 31 | ### Sidestore treo giữa chừng khi cài đặt 32 | #### Nguyên nhân 33 | Sự cố về bộ đệm. 34 | #### Cách giải quyết 35 | 1. Khởi động lại SideStore 36 | 2. Xóa bộ đệm 37 | 3. Thay đổi Anisette Server 38 | 4. Khởi đông lại như ban đầu (reset) adi.pb 39 | 5. Đăng xuất ra SideStore và đăng nhập lại 40 | 6. Thử cài lại Wireguard Sidestore và thử sử dụng 41 | 7. Khởi động lại thiết bị 42 | 8. Tạo một tệp ghép nối mới bằng JitterbugPair và nhập tệp đó thông qua phần settings trong SideStore. Xem phần [Hướng dẫn ghép nối tập tin](/docs/installation/pairing-file) để tham khảo. 43 | 9. Tải lại SideStore 44 | 45 | ### Không thể mở được SideStore 46 | #### Nguyên nhân 47 | Rất nhiều nghuyên nhân. 48 | #### Cách giải quyết 49 | 1. Cài đặt lại SideStore từ Altserver theo hướng dẫn cài đặt cho hệ điều hành [Linux](/docs/installation/linux) ,[Mac](/docs/installation/mac), hoặc [Window](/docs/installation/windows) 50 | 2. Tải lại SideStore 51 | 52 | Nếu cách trên không hiệu quả, hãy làm như sau: 53 | 54 | 1. Xóa SideStore và tất cả các ứng dụng bạn đã tải về từ SideStore. 55 | 2. Tải lại SideStore. 56 | 3. Tạo một tệp ghép nối mới bằng JitterbugPair và nhập tệp đó thông qua phần settings trong SideStore. Xem phần [Hướng dẫn ghép nối tập tin](/docs/installation/pairing-file) để tham khảo. 57 | 4. Cài đặt tệp Sidestore.ipa vào thiết bị của bạn. 58 | 5. Chọn tệp ghép nối và đăng nhập. (Nó sẽ nhắc bạn làm mới SideStore, chọn NO) 59 | 6. Cài đặt tệp Sidestore.ipa vào thiết bị của bạn trực tiếp vào SideStore giống như tải về những ứng dụng khác 60 | 7. Điều này sẽ cho phép Sidestore làm mới hoàn toàn và hy vọng có thể khắc phục được sự cố. 61 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | titulo: Activar JIT 3 | descripción: Un tutorial sobre como activar la compilación Just-In-Time (JIT) para las apps que lo necesitan. 4 | --- 5 | 6 | :::note 7 | 8 | Hay muchos metodos para activar JIT, como AltJIT, SideJITServer, y mas. Este tutorial hablara sobre como usar StikJIT/StikDebug, porque es el metodo que actulmente recomendamos. Como alternativa, Sidestore 0.6.2-nightly.2025.04.15 tambien incluye actualizaciones para minimuxer, permitiendo una JIT ya incorporado que funciona de forma similar a StikDebug. Para usar esto, simplemente asegurate de que estas conectado a StosVPN y al Wi-FI o también a los datos móviles. 9 | ::: 10 | 11 | ## Prerequisitos 12 | * Un iDevice en iOS/iPadOS 17.4 o mayor, excluyendo 18.4b1. Si estas en las actualizaciónes 17.0-17.3, debes usar una alternativa como [SideJITServer](https://github.com/nythepegasus/SideJITServer) 13 | * Al menos 1 espacio de app libre para StikJIT 14 | 15 | ## Instalación de StikJIT con SideStore 16 | 17 | 1. **Obtén StikJIT:** 18 | Añande el AltSource de StikJIT a SideStore [aquí](sidestore://source?url=https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) (Debes tener SideStore instalado o este link no funcionará). 19 | 20 | 2. **Instalación:** 21 | Usa SideStore para instalar StikJIT. 22 | 23 | 3. **Procedimientos de instalación:** 24 | Sigue los procedimientos de instalación estándar en la guía de uso de debajo. 25 | 26 | ## Intalación de StikDebig con la App Store (No requiere un espacio de app libre) 27 | 28 | 1. **Instalar StikDebug** 29 | Instala StikDebug desde la App Store [aquí](https://apps.apple.com/us/app/stikdebug/id6744045754). Algo bueno- la VPN presente en StikDebug es similar a la usada en SideStore, significando que la puedes usar para instalar y refrescar aplicaciones. 30 | 31 | 2. **Procedimientos de instalación:** 32 | Usa el procedimiento de instalación estándar en la guía de uso de debajo. 33 | 34 | ### Procedimientos de instalación estándar: 35 | 36 | 1. **Habilita la VPN:** 37 | Emmpieza activando StosVPN para StikJIT o la VPN ya incorporada en StikDebug. 38 | 39 | 2. **Sube el archivo de emparejamiento:** 40 | Cuando te lo pregunte, importa el mismo **archivo de emparejamiento descomprimido** obtenido atraves de JitterBugPait que usaste para SideStore. Para más información en obtener este archivo de emparejamiento, visita [este sitio](/docs/advanced/pairing-file). 41 | 42 | ## Para activar JIT: 43 | 44 | 1. **Activa la VPN:** 45 | Empieza activando StosVPN para StikJIT o la VPN ya incorporada en StikDebug. 46 | 47 | 2. **Activa JIT:** 48 | Haz click en el botón “Enable JIT” y selecciona una app de la lista para activar la funcionalidad de JIT. 49 | 50 | ### Activar JIT Offline 51 | Para activar JIT mientras estes offline, activa StosVPN o StikDebug. Después, desactiva el Wi-fi y los datos móviles cuando abras StikJIT (usa el Modo Avión preferiblemente). Ahora podrás activar jit normalmente. 52 | -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aktivera JIT 3 | description: En guide för att slå på Just-in-Time-kompilering (JIT) för appar som kräver det. 4 | --- 5 | 6 | :::note 7 | iOS 26 har återigen brutit JIT. En uppdatering av StikDebug med en fix är släppt men stödet är begränsat. Vid skrivande stund (10 nov) stöds bara: 8 | * UTM 9 | * Amethyst 10 | * MeloNX 11 | * maciOS 12 | * DolphiniOS 13 | * Geode 14 | 15 | Håll koll på våra announcements-kanaler i Discord och på [idevice-serverns](https://discord.gg/mACqxMxP3X) announcements- och compatibility-kanaler för uppdateringar. 16 | 17 | Det finns flera sätt att aktivera JIT beroende på iOS-version. Den här guiden täcker StikDebug (tidigare StikJIT), som är metoden vi rekommenderar just nu. Mer information finns i [StikDebugs officiella pairing-guide](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md). 18 | 19 | Som alternativ innehåller SideStore 0.6.2 uppdateringar i minimuxer som ger inbyggd JIT-funktionalitet liknande StikDebug. För att använda den behöver du bara ansluta till StosVPN med Wi-Fi aktiverat eller i flygplansläge, gå till "My Apps", långtrycka på appen du vill aktivera JIT för och trycka på "Enable JIT". 20 | ::: 21 | 22 | ## Förkrav 23 | * En iDevice med iOS/iPadOS 17.4-alla iOS 18-versioner, med undantag för 18.4b1. Om du kör 17.0-17.3 måste du använda ett alternativ som [SideJITServer](https://github.com/nythepegasus/SideJITServer). SideStores JIT-funktion fungerar bara på iOS 26 om din enhet är ungefär fyra år eller äldre (utan TXM-stöd). 24 | 25 | ## Installera StikDebug via App Store 26 | 27 | 1. **Installera StikDebug** 28 | Installera StikDebug från [Apple App Store](https://apps.apple.com/us/app/stikdebug/id6744045754). 29 | :::note Kul bonus: VPN:t i StikDebug liknar det i SideStore, så du kan använda det för att installera och uppdatera appar i SideStore på samma sätt som med StosVPN. 30 | ::: 31 | 32 | 2. **Installationsprocedur:** 33 | Följ standardproceduren i användarguiden nedan. 34 | 35 | 36 | ### Standardprocedur 37 | 38 | 1. **Ladda upp pairing-filen:** 39 | Öppna och stäng StikDebug för att skapa appens katalog i Filer, importera sedan samma **pairing-fil** som du använder för SideStore via idevice pair. Mer info finns [här](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md). 40 | 41 | 2. **Montera DDI:** 42 | Öppna StikDebug med Wi-Fi och VPN anslutna och pairing-filen importerad, stäng sedan appen och öppna den igen. Det monterar DDI och måste göras varje gång du startar om din iDevice. 43 | 44 | ## Så aktiverar du JIT 45 | 46 | 1. **Slå på VPN:** 47 | Starta StikDebug med Wi-Fi eller mobildata för att aktivera det inbyggda VPN:t. Om du använder mobildata, slå på flygplansläge och öppna appen igen medan VPN:t fortfarande är aktivt. 48 | 49 | 2. **Aktivera JIT:** 50 | Välj knappen "Connect by App" och välj en app i listan (den måste vara sideloadad med korrekta entitlements för att synas) för att koppla en debugger och slå på JIT-funktionalitet. 51 | -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Gebruiken JIT 3 | description: Instructie hoe je Just-In-time (JIT) kan gebruiken voor apps die dit nodig hebben. 4 | --- 5 | 6 | :::note 7 | 8 | Er zijn veel methoden om JIT in te schakelen, zoals AltJIT, SideJITServer en meer. In deze handleiding behandelen we het gebruik van StikJIT/StikDebug, omdat dit momenteel de methode is die wij aanbevelen. Als alternatief bevat SideStore 0.6.2-nightly.2025.04.15 ook updates voor minimuxer, waarmee ingebouwde JIT-functionaliteit mogelijk is, vergelijkbaar met StikDebug. Om dit te gebruiken hoef je alleen maar verbonden te zijn met StosVPN en Wi-Fi, of met mobiele data en Wi-Fi uitgeschakeld. 9 | ::: 10 | 11 | ## Vereisten 12 | * Een iDevice op iOS/iPadOS 17.4 of hoger, met uitzondering van 18.4b1. Als je op 17.0–17.3 zit, moet je een alternatief gebruiken zoals [SideJITServer](https://github.com/nythepegasus/SideJITServer) 13 | * Minstens 1 vrij appslot voor StikJIT 14 | 15 | ## StikJIT-installatie met SideStore 16 | 17 | 1. **Verkrijg StikJIT:** 18 | Voeg de StikJIT AltSource toe aan SideStore via [deze link](sidestore://source?url=https://raw.githubusercontent.com/StephenDev0/StikJIT/refs/heads/main/repo.json) (SideStore moet geïnstalleerd zijn, anders werkt deze link niet). 19 | 20 | 2. **Installeren:** 21 | Gebruik SideStore om StikJIT te installeren. 22 | 23 | 3. **Installatieprocedure:** 24 | Volg de standaard installatieprocedure in de gebruikshandleiding hieronder. 25 | 26 | ## StikDebug-installatie via de App Store (vereist geen appslot) 27 | 28 | 1. **Installeer StikDebug** 29 | Installeer StikDebug uit de App Store via [deze link](https://apps.apple.com/us/app/stikdebug/id6744045754). Leuk detail: de VPN in StikDebug lijkt op degene die SideStore gebruikt, wat betekent dat je hem ook kunt gebruiken om apps te installeren en te verversen. 30 | 31 | 2. **Installatieprocedure:** 32 | Volg de standaard installatieprocedure in de gebruikshandleiding hieronder. 33 | 34 | ### Standaard installatieprocedure: 35 | 36 | 1. **VPN inschakelen:** 37 | Begin met het activeren van StosVPN voor StikJIT of de ingebouwde VPN in StikDebug. 38 | 39 | 2. **Pairing-bestand uploaden:** 40 | Wanneer hierom wordt gevraagd, importeer je hetzelfde **uitgepakte pairing-bestand** dat je met JitterbugPair voor SideStore hebt verkregen. Voor meer informatie over het verkrijgen van dit pairing-bestand, zie [hier](/docs/installation/pairing-file). 41 | 42 | ## JIT inschakelen: 43 | 44 | 1. **VPN inschakelen:** 45 | Begin met het activeren van StosVPN voor StikJIT of de ingebouwde VPN in StikDebug. 46 | 47 | 2. **JIT activeren:** 48 | Tik op de knop “Enable JIT” en selecteer een app uit de lijst om JIT-functionaliteit voor die app te activeren. 49 | 50 | ### JIT offline inschakelen 51 | 52 | Om JIT offline in te schakelen, zet je StosVPN of StikDebug aan. Schakel vervolgens zowel Wi-Fi als mobiele data UIT wanneer je StikJIT start (gebruik Vliegtuigmodus). Je kunt daarna JIT op de normale manier inschakelen. 53 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/advanced/jit.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Activation de JIT 3 | description: Un tutoriel sur la manière d'activer la compilation Just-in-Time (JIT) pour les applications qui en ont besoin. 4 | --- 5 | 6 | :::note 7 | 8 | Il existe plusieurs méthodes pour activer le JIT, comme AltJIT, SideJITServer, et d'autres. Ce tutoriel couvrira l'utilisation de StikDebug (anciennement StikJIT), car c'est la méthode que nous recommandons actuellement. Pour plus d'informations, consultez le [guide officiel d'appairage StikDebug](https://github.com/StephenDev0/StikDebug-Guide/blob/main/pairing_file.md). 9 | 10 | En alternative, SideStore 0.6.2-nightly.2025.04.15 inclut également des mises à jour de minimuxer, permettant une fonctionnalité JIT intégrée similaire à StikDebug. Pour utiliser cette méthode, il vous suffit d'être connecté à StosVPN, soit avec le Wi-Fi activé/connecté, soit en ayant les données mobiles et le Wi-Fi désactivés (mode Avion). 11 | ::: 12 | 13 | ## Prérequis 14 | * Un appareil iOS sous iOS/iPadOS 17.4 jusqu'à iOS/iPadOS 18.5, à l'exception de la 18.4b1. Si vous êtes sous 17.0-17.3, vous devez utiliser une alternative comme [SideJITServer](https://github.com/nythepegasus/SideJITServer). Les versions supérieures à 18.5 ne sont actuellement pas prises en charge. 15 | * Au moins 1 emplacement d'application libre (si vous utilisez le sideload) 16 | 17 | ## Installation de StikDebug avec l'App Store d'Apple (Ne nécessite pas d'emplacement d'application) 18 | 19 | 1. **Installez StikDebug** 20 | Installez StikDebug depuis l'[App Store d'Apple](https://apps.apple.com/fr/app/stikdebug/id6744045754). Petite astuce- le VPN présent dans StikDebug est similaire à celui utilisé dans SideStore, ce qui signifie que vous pouvez aussi l'utiliser pour installer et rafraîchir des applications. 21 | 22 | 2. **Procédures d'installation:** 23 | Suivez les procédures d'installation standard dans le guide d'utilisation ci-dessous. 24 | 25 | 26 | ### Procédures d'installation standard: 27 | 28 | 1. **Activer le VPN:** 29 | Commencez par activer StosVPN (si vous installez StikDebug en sideload) ou le VPN intégré dans la version officielle de StikDebug. 30 | 31 | 2. **Upload le Fichier D'appairage:** 32 | Importez le même **fichier d'appairage** que celui que vous utilisez pour SideStore via iDevicePair. Pour plus d'informations sur l'obtention de ce fichier d'appairage, consultez [ici](/docs/installation/pairing-file). 33 | 34 | ## Pour activer JIT: 35 | 36 | 1. **Activer le VPN:** 37 | Commencez par activer StosVPN (si vous utilisez le sideload) ou le VPN intégré dans StikDebug. 38 | 39 | 2. **Activer JIT:** 40 | Sélectionnez le bouton "Activer JIT" puis choisissez une application dans la liste pour y attacher un débogueur/activer la fonctionnalité JIT. 41 | 42 | ### Activation de JIT hors ligne 43 | Pour activer le JIT hors ligne, activez StosVPN (si vous utilisez le sideload) ou le VPN de StikDebug. Ensuite, désactivez à la fois le Wi-Fi et les données mobiles lorsque vous lancez StikDebug (utilisez le mode Avion). Vous pourrez ensuite activer le JIT normalement. 44 | -------------------------------------------------------------------------------- /i18n/sv/docusaurus-plugin-content-docs/current/advanced/alternative.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Bypass av 3-appsgränsen 3 | description: En guide för att installera fler än tre appar i SideStore med SparseRestore-exploiten. 4 | --- 5 | 6 | :::note 7 | 8 | SparseRestore-exploiten "Bypass 3 app limit" **fungerar bara på iOS/iPadOS-versioner mellan 17.0 och 18.1 beta 4 (exklusive 17.7.1)**. Om du inte kör någon av dessa versioner och det inte fungerar, **be inte om support för det**. 9 | 10 | ::: 11 | 12 | ## Förkrav 13 | * En iDevice som kör en version som stöds av SparseRestore-exploiten (se notisen ovan). 14 | * Minst en ledig app-plats. 15 | * SideStore version 0.5.9 eller senare. Senaste versionerna finns [här](https://github.com/SideStore/SideStore/releases). 16 | * För att köra exploiten måste **Hitta min** vara avstängt på iDevice under hela processen. Annars fungerar det inte. Så här stänger du av funktionen: 17 | - Öppna Inställningar. 18 | - Tryck på ditt namn överst. 19 | - Tryck på Hitta min. 20 | - Tryck på Hitta min iPhone/iPad. 21 | - Stäng av Hitta min iPhone/iPad. 22 | - Du kan behöva ange ditt Apple-ID-lösenord för att bekräfta. 23 | 24 | > **Obs:** Det kan ändå vara omöjligt att stänga av Hitta min om Stolen Device Protection är aktiv. Stäng av Stolen Device Protection innan du försöker stänga av Hitta min. 25 | 26 | ## Steg 27 | 1. Installera SparseBox. Det kan göras på flera sätt men i denna guide använder vi SideStore. Senaste versionen finns [här](https://nightly.link/khanhduytran0/SparseBox/workflows/build/main/artifact.zip) (packa upp artifact.zip för att få .ipa-filen). 28 | 29 | 2. Markera "Disable App Limit" i SideStore och stäng SideStore helt (inte bara i bakgrunden), öppna sedan SparseBox. 30 | 31 | 3. Slå på StosVPN, välj din pairing-fil och tryck på "Bypass 3-app limit". En logg visas. Vänta tills den säger `idevicebackup2 exited with code -18` eller `idevicebackup2 exited with code 2` och stäng appen. Du behöver inte trycka Apply. 32 | 33 | 4. Öppna SideStore igen och scrolla ner i inställningarna. Tryck på "clear cache" så att SideStore kan upptäcka exploiten. 34 | 35 | 5. Testa att exploiten fungerar (du kan behöva installera fler än en app beroende på hur många lediga platser du hade). Om du får ett fel om gränsen, öppna SideStore igen eller kör exploiten på nytt. Om installationen fungerar kan du nu ha fler än tre appar installerade samtidigt. 36 | 37 | ## Övrigt 38 | På grund av vissa begränsningar måste du köra exploiten varje gång du vill lägga till tre extra appar. 39 | 40 | Om du behöver Hitta min för andra syften kan du slå på den igen nu. Men om du vill installera eller uppdatera fler appar måste du stänga av funktionen igen. 41 | 42 | ## Alternativ 43 | Om exploiten inte fungerar eller om din iDevice kör en version som inte stöds finns ett alternativ för att använda fler än tre appar: [LiveContainer](https://livecontainer.github.io/), utvecklat av Duy Tran Khanh ([khanhduytran0](https://github.com/khanhduytran0)) som även gjort SparseBox. LiveContainer kör iOS-appar i containers i appen i stället för att installera dem separat och kan i vissa fall vara enklare än SparseRestore. GitHub-sidan finns [här](https://github.com/khanhduytran0/LiveContainer). 44 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/installation/prerequisites.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 필수 요구 사항 3 | description: '설치의 첫 단계입니다.' 4 | sidebar_position: 1 5 | --- 6 | 7 | ```mdx-code-block 8 | import Tabs from '@theme/Tabs'; 9 | import TabItem from '@theme/TabItem'; 10 | ``` 11 | 12 | ## 요구 사항 13 | SideStore를 설치하기 위해서는 아래의 요구사항을 충족해야 해요: 14 | - [비밀번호가 설정된](https://support.apple.com/ko-kr/119586) iOS 또는 iPadOS 14 이상을 사용하는 iPhone 또는 iPad 15 | - Windows 7 또는 그 이상, 또는 macOS High Sierra 또는 그 이상, 또는 최신 Linux 배포판을 사용하는 컴퓨터 (한번만) 16 | - Apple 계정 (Apple ID) 17 | - Wi-Fi 연결 18 | - 시간 (이 과정은 빠르게 진행되지만, [문제 해결](/docs/troubleshooting/)을 위해 시간을 남겨두어야 해요) 19 | 20 | ## 기기 준비하기 21 | SideStore는 기기 내 VPN을 활용하여 내부 서비스와 통신해요. 22 | 23 | 1. LocalDevVPN을 [공식 App Store](https://apps.apple.com/kr/app/localdevvpn/id6755608044)에서 다운로드해 주세요. 24 | 2. VPN에 연결해 주세요. "VPN 구성을 추가하려고 합니다"라는 메시지가 뜨면 '허용'을 누르고 기기 암호를 입력해 주세요. 25 | 26 | SideStore에서 앱을 설치, 업데이트, 새로고침하려면 이 VPN을 항상 켜두어야 해요. 27 | 28 | 이제 사용하는 컴퓨터 OS에 맞는 안내를 따라가주세요. 29 | 30 | 31 | 32 | [iloader](https://github.com/nab138/iloader/releases/latest/download/iloader-darwin-universal.dmg)를 다운로드 하고 설치해 주세요. 33 | 34 | 35 | :::warning 36 | 32비트 버전의 Windows 또는 Arm 기반 Windows 10은 지원되지 않습니다. 37 | 38 |
39 | **대부분의 Windows 버전은 64비트입니다.** 그러나 지원되지 않는 Windows 버전을 사용 중인지 확인하려면 다음 지침을 따라주세요. 40 | 1. Windows+R(또는 Command+R 또는 Super+R)을 눌러 실행 창을 열어 주세요. 41 | 2. `control /name microsoft.system`을 입력해 주세요. 42 | 3. "장치 사양" 탭에서 "시스템 종류"을 찾으세요. 43 | 44 | * "32비트 운영 체제"로 표시되면 해당 Windows 버전이 지원되지 않습니다. 45 | * "ARM64 프로세서"를 사용 중이며 Windows 10을 실행 중인 경우 해당 Windows 버전이 지원되지 않습니다. 46 |
47 | ::: 48 | 49 | 1. [Microsoft Store](https://apple.co/ms) 또는 [Apple 웹사이트](https://www.apple.com/itunes/download/win64)에서 iTunes를 다운로드하고 설치해 주세요. 50 | 2. iloader 인스톨러를 다운로드해 주세요. [msi](https://github.com/nab138/iloader/releases/latest/download/iloader-windows-x64.msi) (추천) 또는 [exe](https://github.com/nab138/iloader/releases/latest/download/iloader-windows-x64.exe) 51 | 3. 설치프로그램을 실행해 주세요. 52 |
53 | 54 | :::warning 55 | 64비트 배포판만 지원됩니다. 56 | 57 | **대부분의 리눅스 배포판은 64비트입니다.** 64비트 배포판을 사용 중인지 확인하려면 터미널을 열고 `uname -m`을 실행하세요. 예상 출력은 `x86_64`입니다. 58 | ::: 59 | 60 | 1. `usbmuxd`를 다운로드 하고 설치해 주세요. (당신이 쓰는 Linux 배포판에는 기본으로 깔려 있을 수도 있어요. 아니면 패키지 관리자로 설치하면 돼요 구글에 install usbmuxd [배포판 이름] 라고 검색해보는 것도 도움이 될수도 있어요.) 61 | 2. 당신의 Linux 배포판에 맞는 iloader를 다운로드하고 설치해 주세요. Debian/Ubuntu용 [DEB](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.deb), Fedora/openSUSE용 [RPM](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-x86_64.rpm)로 제공되며, 기타 배포판용으로는 [AppImage](https://github.com/nab138/iloader/releases/latest/download/iloader-linux-amd64.AppImage)로 제공됩니다. (커뮤니티에서 관리하는 패키지도 존재합니다. 예를 들어 [Arch Linux AUR의 이 패키지](https://aur.archlinux.org/packages/iloader-bin)가 있지만, 해당 패키지의 안전성이나 보안성을 보장할 수 없음을 유의하시기 바랍니다. 시스템에 알 수 없는 패키지를 설치하기 전에는 항상 충분한 검토를 거치셔야 합니다.) 62 | 63 |
-------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/installation/install.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 설치 3 | description: 당신의 iPhone, iPad 또는 iPod touch에 SideStore을 설치하기 4 | sidebar_position: 2 5 | --- 6 | 7 | ```mdx-code-block 8 | import Tabs from '@theme/Tabs'; 9 | import TabItem from '@theme/TabItem'; 10 | ``` 11 | 12 | 시작하기 전에, [필수 요구 사항](prerequisites)에 있는 모든 소프트웨어를 다운로드하고 설정을 완료하세요! 13 | 14 | ## SideStore 설치하기 15 | ### 컴퓨터에서 16 | 1. 당신의 iPhone, iPad 또는 iPod touch를 케이블을 통해 컴퓨터에 연결해 주세요. 만약 신뢰 여부를 묻는 창이 뜬다면, 신뢰 버튼을 누르고 기기 비밀번호를 입력해 주세요. 17 | 2. iloader를 열어주세요. 18 | 3. 애플 계정으로 로그인을 해주세요. (연결된 당신의 기기와 계정이 똑같을 필요는 없어요) 19 | 4. 당신의 iPhone, iPad 또는 iPod touch를 선택해 주세요. 20 | 5. 'Install SideStore (Stable)'를 선택해 주세요. 21 | 22 | ### iPhone, iPad 또는 iPod touch에서 23 | 24 | 25 | 1. 설정 앱을 실행해주세요. 26 | 2. '일반'으로 이동한 다음 'VPN 및 기기 관리'를 선택해주세요. 27 | 3. '개발자 앱' 섹션에서 본인의 Apple 계정 이름으로 된 항목을 선택해주세요. 28 | 4. '[Apple 계정 이름]을(를) 신뢰함'을 선택한 뒤, 확인 화면에서 '신뢰'를 눌러주세요. 29 | 5. LocalDevVPN을 실행하고 '연결'을 눌러주세요. 30 | 6. SideStore를 실행해주세요. 31 | 7. iloader에서 사용한 Apple 계정으로 로그인해주세요. 32 | 8. 'My Apps'로 이동해주세요. 33 | 9. SideStore 오른쪽에 표시된 '7 DAYS'를 눌러 수동으로 새로고침하여 SideStore 설정을 완료해주세요. (7은 앱 만료까지 남은 일수를 의미하며, 남은 기간에 따라 자동으로 변경됩니다. 해당 표시를 누르면 연결된 앱이 새로고침됩니다.) 34 | 10. 서명 인증서를 취소하거나 새로 생성하라는 안내가 표시되면 'Yes' 또는 'Refresh Now'를 선택해주세요. 35 | 36 | 37 | 1. 설정 앱을 실행해주세요. 38 | 2. '일반'으로 이동한 다음 'VPN 및 기기 관리'를 선택해주세요. 39 | 3. '개발자 앱' 섹션에서 본인의 Apple 계정 이름으로 된 항목을 선택해주세요. 40 | 4. '[Apple 계정 이름]을(를) 신뢰함'을 선택한 뒤, 확인 화면에서 '신뢰'를 눌러주세요. 41 | 5. '개인정보 보호 및 보안'으로 이동해주세요. 42 | 6. 화면을 맨 아래로 스크롤한 후 '개발자 모드'를 켜주세요. 기기가 재시작됩니다. 43 | 7. LocalDevVPN을 실행하고 '연결'을 눌러주세요. 44 | 8. SideStore를 실행해주세요. 45 | 9. iloader에서 사용한 Apple 계정으로 로그인해주세요. 46 | 10. 'My Apps'로 이동해주세요. 47 | 11. SideStore 오른쪽에 표시된 '7 DAYS'를 눌러 수동으로 새로고침하여 SideStore 설정을 완료해주세요. (7은 앱 만료까지 남은 일수를 의미하며, 남은 기간에 따라 자동으로 변경됩니다. 해당 표시를 누르면 연결된 앱이 새로고침됩니다.) 48 | 12. 서명 인증서를 취소하거나 새로 생성하라는 안내가 표시되면 'Yes' 또는 'Refresh Now'를 선택해주세요. 49 | 50 | 51 | 1. 설정 앱을 실행해주세요. 52 | 2. '일반'에 들어간 다음, 'VPN 및 기기 관리'에 들어가세요. 53 | 3. 개발자 앱 섹션에서 사용 중인 Apple 계정을 선택합니다. 54 | 4. '[Apple 계정 이름]을(를) 신뢰함'을 선택한 뒤, 확인 화면에서 '신뢰'를 눌러주세요. 55 | 5. 앱을 신뢰할지 확인하라는 메시지가 뜨면 암호를 입력해주세요. 56 | 6. '개인정보 보호 및 보안'으로 이동해주세요. 57 | 7. 화면을 아래로 스크롤한 후 '개발자 모드'를 켜주세요. 기기가 재시작됩니다. 58 | 8. LocalDevVPN을 실행한 뒤 '연결'을 눌러주세요. 59 | 9. SideStore를 실행해주세요. 60 | 10. iloader에서 사용한 Apple 계정으로 로그인해주세요. 61 | 11. 'My Apps'로 이동해주세요. 62 | 12. SideStore 오른쪽에 표시된 '7 DAYS'를 눌러 수동으로 새로고침하여 SideStore 설정을 완료해주세요. (7은 앱 만료까지 남은 일수를 의미하며, 남은 기간에 따라 자동으로 변경됩니다. 해당 표시를 누르면 연결된 앱이 새로고침됩니다.) 63 | 13. 서명 인증서를 취소하거나 새로 생성하라는 안내가 표시되면 'Yes' 또는 'Refresh Now'를 선택해주세요. 64 | 65 | 66 | 67 | 이 과정이 성공하면, SideStore가 당신의 기기를 홈 화면으로 보내주고 알림도 뜰 겁니다. 몇 초 안에 SideStore를 다시 사용할 수 있어요. 68 | 69 | 주의: iPhone, iPad 또는 iPod touch를 업데이트하거나 초기화하면 페어링 파일이 만료돼서, 다시 가져와야 해요. 이 방법은 [이 가이드](/docs/advanced/pairing-file)를 보면 됩니다. 이건 애플 소프트웨어 때문에 가끔 무작위로 만료될 수 있어요. 70 | -------------------------------------------------------------------------------- /i18n/zh/docusaurus-plugin-content-docs/current/troubleshooting/troubleshooting.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 故障排除指南 3 | description: 一个在没提供错误代码的情况下的故障排除指南 4 | --- 5 | 6 | ## 安装 7 | 8 | ### 我按照教程进行但是我还是无法安装SideStore。 9 | 10 | #### Mac 操作指南 11 | 1. **信任设备**:将 iOS 设备连接至 Mac 后,请确保在 Mac 和 iOS 设备上均选择“信任”。验证步骤如下: 12 | - 打开 Finder(macOS 10.15 Catalina 或更高版本)或 iTunes(macOS 10.14 Mojave 或更早版本) 13 | - 断开并重新连接手机与 Mac,检查是否弹出信任设备确认对话框 14 | 2. **使用其他 Apple ID**:尝试使用其他 Apple ID。如有需要,可免费[创建专用于 SideStore 的新 Apple ID](https://appleid.apple.com/account#!\&page=create) 15 | 16 | #### Windows 操作指南 17 | 1. **信任设备**:将 iOS 设备连接至 Windows 电脑后,请确保在电脑和 iOS 设备两端均选择“信任”。验证方式如下: 18 | - 打开 iTunes 检查是否出现信任设备确认对话框 19 | 2. **使用其他Apple ID**:尝试使用其他Apple ID。如有需要,可免费[创建专用于SideStore的新Apple ID](https://appleid.apple.com/account#!\&page=create) 20 | 21 | 22 | ## 登录问题 23 | 24 | ### SideStore 登录时出现卡顿或显示错误代码 25 | 26 | 若您在尝试登录 SideStore 时遇到卡顿或错误代码,可能存在多种潜在原因。请按以下步骤解决问题: 27 | 28 | 1. **更换Anisette服务器:** 29 | 最常见的解决方案是切换到其他Anisette服务器。Anisette服务器偶尔会出现停机情况,切换到备用服务器通常能解决问题。操作步骤如下: 30 | - 打开SideStore设置 31 | - 向下滚动至“Anisette服务器”选项 32 | - 从列表中选择其他服务器 33 | - 您可能需要尝试列表中的多个服务器,找出最适合您的选项 34 | 35 | 2. **自行托管 Anisette 服务器:** 36 | 若您有意愿,您可以自行搭建 Anisette 服务器。官方文档中提供了详细的托管指南,请参阅[此处](/docs/advanced/anisette) 37 | 38 | ### 使用Apple ID登录时未收到验证码 39 | 40 | 登录过程中另一个常见问题是使用Apple ID登录SideStore时未收到验证码。可通过以下步骤解决: 41 | 42 | **适用于iOS 18.1以下版本:** 43 | 44 | 1. 打开“设置”应用 45 | 2. 点击屏幕顶部的姓名 46 | 3. 进入“登录与安全”选项 47 | 4. 选择“双重认证” 48 | 5. 点击“获取验证码” 49 | 50 | **适用于 iOS 18.1 及以上版本:** 51 | 52 | 1. 在网页浏览器中访问 [iCloud](https://www.icloud.com) 53 | 2. 点击“登录” 54 | 3. 系统可能提示两个选项:“登录”和“使用其他 Apple 账户” 55 | - 选择底部选项“使用其他 Apple 账户” 56 | 4. 输入您的 Apple ID 和密码(请勿使用密钥登录) 57 | 5. Apple 将向您发送验证码 58 | - 在 SideStore 中使用此验证码完成登录流程 59 | 60 | 61 | ## 无法刷新或安装应用 62 | 63 | ### 解决无Wi-Fi或VPN错误 64 | 65 | 1. 启用飞行模式并连接稳定的Wi-Fi网络 66 | 2. 确保Apple域名及您的anisette服务器域名未被限制。请检查以下事项: 67 | - 关闭任何阻断`ocsp.apple.com`等域名的DNS服务器 68 | - 断开学校/工作Wi-Fi连接,改用无限制的网络 69 | 3. 确认StosVPN中VPN已连接 70 | 4. 关闭StosVPN后重新开启,在SideStore等待数秒再尝试刷新 71 | 5. [使用iloader重新导入配对文件](/docs/advanced/pairing-file) 72 | 73 | ## AltServer 74 | 75 | ### 如果我需要使用Windows应用商店版本的iCloud怎么办? 76 | 77 | AltServer要求您直接从Apple安装iCloud以验证Apple ID。若您希望或需要同时使用Windows应用商店版本,可参照[此Reddit帖子](https://www.reddit.com/r/jailbreak/comments/rp5buz/tutorial\_how\_to\_use\_altserver\_if\_you\_have\_to\_use/?utm\_source=share\&utm\_medium=ios\_app\&utm\_name=iossmf) 并更新的替代方案: 78 | 79 | 1. 从苹果官网下载并安装[iTunes](https://www.apple.com/itunes/),具体地址为:([64位](https://secure-appldnld.apple.com/itunes12/001-80053-20210422-E8A3B28C-A3B2-11EB-BE07-CE1B67FC6302/iTunes64Setup.exe) 或 [32位](https://secure-appldnld.apple.com/itunes12/001-80042-20210422-E8A351F2-A3B2-11EB-9A8F-CF1B67FC6302/iTunesSetup.exe)) 80 | 2. 从苹果官网[此处](https://updates.cdn-apple.com/2020/windows/001-39935-20200911-1A70AA56-F448-11EA-8CC0-99D41950005E/iCloudSetup.exe)下载并安装iCloud。 81 | 3. 定位“C:\Program Files (x86)\Common Files\Apple”文件夹。复制其中的“Apple Application Support”和“Internet Services”文件夹,在任意安全的位置新建任意名称的文件夹,将这两个文件夹粘贴至该新文件夹。 82 | 4. 从计算机中卸载iCloud。**切勿**卸载iTunes!(同时,**永远不要**卸载与iTunes及iCloud一同安装的“Apple Mobile Device Support”或“Apple Application Support”文件夹。) 83 | 5. 从 Windows 应用商店安装 [iCloud](https://www.microsoft.com/store/productId/9PKTQ5699M62) 84 | 6. 下载并安装[AltServer](https://cdn.altstore.io/file/altstore/altinstaller.zip)。首次以管理员权限打开时,点击“选择文件夹...”并选定第三步创建的文件夹。 85 | 86 | -------------------------------------------------------------------------------- /i18n/de/docusaurus-plugin-content-docs/current/advanced/sparserestore.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 3-App Limit Bypass 3 | description: A tutorial on how to install more than 3 apps via SideStore using the SparseRestore exploit. 4 | --- 5 | 6 | :::note 7 | 8 | The SparseRestore "Bypass 3 app limit" exploit **only works on iOS/iPadOS versions between 17.0 and 18.1 beta 4 (not including 17.7.1)**. If you are not on these versions and it doesn't work, **please do not ask for support on this**. 9 | 10 | ::: 11 | 12 | ## Prerequisites 13 | * An iDevice running versions supported by the SparseRestore exploit (see note above). 14 | * At least 1 free app slot. 15 | * SideStore version 0.5.9 or later. You can find the latest versions [here](https://github.com/SideStore/SideStore/releases). 16 | * To perform this exploit, you MUST have **Find My** turned off on your iDevice during the process. It will not work otherwise. Here is how you can turn it off: 17 | - Open the Settings app. 18 | - Tap on your name at the top. 19 | - Tap on Find My. 20 | - Tap on Find My iPhone/iPad. 21 | - Turn off Find My iPhone/iPad. 22 | - You may be required to enter your Apple ID password to confirm. 23 | 24 | > **Note:** You may still not be able to turn off Find My since having Stolen Device Protection on might prevent you from turning it off. Turn off Stolen Device Protection before trying to turn off Find My. 25 | 26 | ## Steps 27 | 1. Install SparseBox. This can be done with a variety of methods, but for the purposes of this, install it with SideStore. The latest version can be found [here](https://nightly.link/khanhduytran0/SparseBox/workflows/build/main/artifact.zip) (unzip artifact.zip for the .ipa file). 28 | 29 | 2. Tick on "Disable App Limit" in SideStore, and make sure SideStore is **closed** (not in background), then open SparseBox. 30 | 31 | 3. Enable StosVPN, select your pairing file and tap 'Bypass 3-app limit'. This should bring up a log output. Wait for it to say `idevicebackup2 exited with code -18` or `idevicebackup2 exited with code 2`, then close the app. No need to hit apply. 32 | 33 | 4. Re-open SideStore, and scroll down in SideStore settings. Press "clear cache", this will allow the exploit to be seen by SideStore. 34 | 35 | 5. Test that the exploit has worked (you may need to install more than one app to test, depending on how many free slots you have). If it throws an error about the limit, reopen SideStore or retry the exploit. If it installs the app, congratulations! You can now have more than 3 apps installed at one time. 36 | 37 | ## Notes 38 | Due to certain limitations, this exploit must be done for every 3 additional apps you sideload. 39 | 40 | If you want/need Find My for other purposes, you can now turn it back on. However, if you want to install or refresh more apps, you will need to turn it off again. 41 | 42 | ## Alternatives 43 | If either the exploit doesn't work for you, or your iDevice is on an unsupported version, there is an alternative to be able to use more than 3 apps at once. LiveContainer, developed by Duy Tran Khanh ([khanhduytran0](https://github.com/khanhduytran0)) (the person who also made SparseBox), allows for iOS apps to be run in containers in-app rather than installing them separately. This may also be easier to use over SparseRestore in some cases. The GitHub page can be found [here](https://github.com/khanhduytran0/LiveContainer). 44 | -------------------------------------------------------------------------------- /i18n/ru/docusaurus-plugin-content-docs/current/advanced/sparserestore.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Обход лимита на 3 приложения 3 | description: Инструкция по установке больше чем трёх приложений через SideStore, используя эксплойт SparseRestore. 4 | --- 5 | 6 | :::note 7 | 8 | Эксплойт SparseRestore "Обход лимита на 3 приложения" **работает только на iOS/iPadOS, версия которых между 17.0 and 18.1 beta 4 (исключая 17.7.1)**. Если Вы не на этих версиях и эксплойт не сработал, **пожалуйста, не обращайтесь за поддержкой по этому вопросу**. 9 | 10 | ::: 11 | 12 | ## Требования 13 | * Устройство, поддерживающее эксплойт SparseRestore (смотрите примечание выше). 14 | * Хотя-бы один свободен слот приложения. 15 | * Версия SideStore 0.5.9 или выше. Вы можете найти последнюю версию [здесь](https://github.com/SideStore/SideStore/releases). 16 | * Для того чтобы использовать этот эксплойт, Вы ДОЛЖНЫ выключить **локатор** на Вашем устройстве во время процеса, иначе он не сработает. Вот как его выключить: 17 | - Откройте настройки. 18 | - Нажмите на Ваше имя сверху. 19 | - Нажмите на "Локатор". 20 | - Нажмите на "Найти iPhone/iPad". 21 | - Выключите "Найти iPhone/iPad". 22 | - Возможно потребуется ввести Ваш пароль Apple ID. 23 | 24 | > **Примечание:** Возможно Вы не сможете выключить локатор, если у вас включена защита украденного устройства. Выключите защиту украденного устройства перед тем как выключать локатор. 25 | 26 | ## Шаги 27 | 1. Установите SparseBox. Вы можете это сделать многими методами, но для таких целей, установите SideStore. Последняя версия может быть найдена [здесь](https://nightly.link/khanhduytran0/SparseBox/workflows/build/main/artifact.zip) (разархивируйте artifact.zip для получения .ipa файла). 28 | 29 | 2. Включите опцию "Disable App Limit" в SideStore и убедитесь что SideStore **закрыт** (не в фоновом режиме) и откройте SparseBox. 30 | 31 | 3. Включите StosVPN, выберите Ваш файл сопряжения и нажмите на 'Bypass 3-app limit'. Должно появится отображение журнала. Ждите до момента, когда оно покажет `idevicebackup2 exited with code -18` или `idevicebackup2 exited with code 2` и закройте приложение. Не нужно нажимать на "Apply". 32 | 33 | 4. Заново откройте SideStore и долисайте в самый низ в настройках SideStore. Нажмите на "clear cache", это даст возможность SideStore увидеть эксплойт. 34 | 35 | 5. Проверьте работоспособность экспройла (возможно придётся установить больше одного приложения для проверки, смотря сколько у Вас осталось бесплатных слотов). Если появится ошибка про лимит, перезапустите SideStore или заново запустите эксплойт. Если приложение будет установлено, поздравляем! Теперь у Вас может быть установлено больше чем 3 приложения одновременно. 36 | 37 | ## Примечание 38 | Из-за ограничений, эксплойт нужно будет запускать заново каждые 3 дополнительных приложения Вы установите. 39 | 40 | Если Вам нужен локатор, Вы можете включить его обратно. Однако, при установке или освежения приложений, придётся его выключать снова. 41 | 42 | ## Альтернативы 43 | Если эксплойт у Вас не работает или Ваше устройство на неподдерживаемой версии, есть альтернатива. LiveContainer, создан Duy Tran Khanh ([khanhduytran0](https://github.com/khanhduytran0)) (человек также создавший SparseBox), позволяет запускать приложения iOS в контейнерах в приложении, вместо того чтобы устанавливать их отдельно. В некоторых случаях, это также может быть легче чем использование SparseBox. Страница в GitHub находится [здесь](https://github.com/khanhduytran0/LiveContainer). 44 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/advanced/sparserestore.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | titulo: sobrepasar el limite de 3 apps 3 | description: Un tutorial sobre como instalar más de 3 apps atraves de SideStore usando el exploit de SparseRestore. 4 | --- 5 | 6 | :::note 7 | 8 | El exploit de "Sobrepasar el limite de 3 apps" de SparseRestore, **solo funciona en versiones de iOS/iPadOS entre 17.0 y 18.1 beta 4 (sin incluir 17.7.1)** Si no estas en estas versiones y no funciona, **porfavor no pidas soporte sobre esto**. 9 | 10 | ::: 11 | 12 | ## Prerequisitos 13 | * Un iDevice Corriendo versiones soportadas por el exploit SparseRestore (lea la nota de arriba). 14 | * Al menos 1 espacio de app libre. 15 | * SideStore en la versión 0.5.9 o mayor. Puedes encontrar las ultimas versiónes [aquí](https://github.com/SideStore/SideStore/releases). 16 | * Para usar este exploit, DEBES tener **Buscar** desactivado en tu iDevice durante el proceso. No funcionara de otra forma. Aquí una guía de como desactivarlo: 17 | - Abre la app de Ajustes. 18 | - Haz click en tu nombre arriba del todo. 19 | - Haz click en Buscar. 20 | - Haz click en Buscar mi iPhone/iPad. 21 | - TDesactiva Buscar mi iPhone/iPad. 22 | - Se te requerira tu contraseña de Apple ID para confirmar. 23 | 24 | > **Nota:** Puede que no te sea posible desactivar Buscar al tener la Proteccion en caso de robo del dispositivo activado lo cual te previene de desactivarlo. Apaga la Proteccion en caso de robo del dispositivo antes de intentar desactivar Buscar. 25 | 26 | ## Pasos 27 | 1. Instala SparseBox. Esto se puede hacer de varias formas, pero en esta guía es mejor instalarlo con SideStore. La ultima versión disponible esta [aquí](https://nightly.link/khanhduytran0/SparseBox/workflows/build/main/artifact.zip) (descomprime artifact.zip para el archivo .ipa). 28 | 29 | 2. Marca la casilla de "Disable App Limit" en SideStore y cierra la app, asegurate de que SideStore este **cerrado** (no se este reproduciendo en el fondo), y despues abra SparseBox. 30 | 31 | 3. Activa StosVPN, selecciona tu archivo de emparejado y haz click en 'Bypass 2-app limit'. Esto deberia enseñar un registro. Espera a que diga `idevicebackup2 exited with code -18` or `idevicebackup2 exited with code 2`, despues cierra la app, no hay porque darle click a aplicar. 32 | 33 | 4. Reabre SideStore, y desplazate hasta abajo en los ajustes de SideStore. haz click en "clear cache", Esto permitira a SideStore ver el exploit. 34 | 35 | 5. Comprueba que el exploit ha funcionado (puede que necesites más de una app para comprobar, dependiendo de cuantos espacios libres tengas). Si suelta un error sobre el límite, reabre SideStore y prueba otra vez el exploit. Si se descarga la app, felicidades! Ahora puedes tener mas de 3 app instaladas a la vez. 36 | 37 | ## Notas 38 | Debido a ciertas limitaciones, este exploit debe de volver a hacerse por cada 3 apps que sideloadees. 39 | 40 | Si quieres/necesitas Buscar para otros propositos, ahora lo puedes volver a activar. Sin embargo, si quieres instalar o refrescar mas apps necesitaras desactivarlo otra vez. 41 | 42 | ## Alternativas 43 | Si el exploit no te funciona, o estass en una version que no lo soporte, hay una alternativa para usar mas de 3 apps a la vez, LiveContainer, desarrollado por Duy Tran Khanh ([khanhduytran0](https://github.com/khanhduytran0)) (the person who also made SparseBox), permite a las apps de iOS correr en contenedores dentro de la app en vez de instalalas separadas. Esto tambien puede ser mas facil de usar que SparseRestore en algunos casos.La página de Github se puede encontrar [Aquí](https://github.com/khanhduytran0/LiveContainer). 44 | -------------------------------------------------------------------------------- /i18n/ko/docusaurus-plugin-content-docs/current/release-notes.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 릴리스 노트 3 | description: SideStore의 릴리스 노트 컬렉션입니다. 4 | sidebar_position: 2 5 | --- 6 | 7 | # Stable 버전 노트 8 | 9 | ## 0.6.2 10 | 11 | ### 변경사항 12 | - WireGuard 지원을 중단하고 완전히 StosVPN으로 전환했어요. 13 | - AltStore 2.0의 변경사항을 더 많이 병합했어요. 14 | - 여러 기기에서 사용할 수 있도록 Apple ID 인증서를 가져오기/내보내기 기능을 추가했어요. 사용 방법은 관련 PR에 적혀 있어요. 15 | - URL 스킴을 추가하고 인증서 내보내기를 지원하도록 했어요 (LiveContainer용). 16 | - 앱 설치가 75% 근처에서 멈추던 문제를 고쳤어요. 17 | - 확장 기능에서 메인 App ID 프로필을 재사용할 수 있는 옵션을 추가했어요. (앱당 하나의 App ID만 사용) 18 | - 여러 타입 관련 문제를 수정하고 UI도 업데이트했어요. 19 | 20 | ### 변경된 내용: 21 | - AltStore 2.0 WIP 브랜치를 리베이스했어요. (#794) 22 | - [Refresh] 설치 관련 기능을 제거하고, 프로비저닝 프로필 갱신만 남겼어요. (#846) 23 | - iOS 환경에서 DisableAppLimit 스위치가 자동으로 꺼지던 문제를 고쳤어요. (#850) 24 | - trustedapps.json을 업데이트했어요. (#853) 25 | - 설치 중 업데이트 로직에서 override 키워드 누락 문제를 고쳤어요. (#857) 26 | - 저장소 앱 미리보기가 제대로 표시되지 않던 문제를 수정했어요. (#871) 27 | - 여러 소스를 한 번에 추가하고 저장 전에 스테이징할 수 있는 기능을 추가했어요. (#888) 28 | - CoreData 마이그레이션 관련 문제(xcdatamodel, xcmappingmodels)를 고쳤어요. (#894) 29 | - 앱 내 업데이트 설명을 전체 마크다운으로 렌더링하도록 했어요. (#897) 30 | - hasUpdate 비교 부분의 오타를 고쳤어요. (#900) 31 | - SettingsViewController.swift를 업데이트했어요. (#915) 32 | - 0.5.9 → 0.6.0 마이그레이션 중 발생하는 문제들을 수정 중이에요. (#920) 33 | - "levaraging" 오타를 "leveraging"으로 고쳤어요. (#926) 34 | - EM Proxy 부분에 StosVPN을 추가했어요. (#940) 35 | - StosVPN 통합: em_proxy와 EmotionalDamage 모듈을 제거하고 StosVPN으로 대체했어요. (#945) 36 | - StosVPN이 셀룰러에서도 동작할 수 있도록, NO WIFI/VPN 오류를 띄우던 minimuxer 체크를 비활성화했어요. (#935) 37 | - iOS 17.4+에서 JIT과 마운팅을 추가했어요. (#953) 38 | - 인증서 내보내기 기능을 추가했어요. (#959) 39 | - Pairing File Export URL 콜백을 추가하고 WireGuard를 StosVPN으로 대체했어요. (#962) 40 | - AltStore 관련 전면 문구들을 변경했어요. (#987) 41 | - idevice_pair 관련 OperationError.swift를 업데이트했어요. (#995) 42 | - 인증서 가져오기/내보내기 기능을 추가했어요. (#1008) 43 | - 페어링 파일 문서 링크를 수정했어요. (#1011) 44 | - 앱 확장 기능에서 메인 번들의 프로필을 사용할 수 있도록 옵션을 추가했고 AltSign 및 libmd를 업데이트했어요. (#1012) 45 | - 새로고침 시 메인 프로필을 사용하도록 했어요. (#1013) 46 | 47 | 48 | 49 | ## 0.6.1 50 | 51 | ### 변경사항 52 | 벌써 봄이 왔나요? 0.5.9/0.5.10 버전에서 0.6.0으로 업그레이드할 때 발생하는 문제와 만료 버그를 수정한 새로운 업데이트를 가져왔습니다. 즐거운 사이드로딩 되세요! 🎉 53 | 54 | ### 변경된 내용: 55 | - fix: @l2dy님이 [#900](https://github.com/SideStore/SideStore/pull/900)에서 hasUpdate 비교 시 오타를 수정해주셨어요 56 | - @neoarz님이 [#915](https://github.com/SideStore/SideStore/pull/915)에서 SettingsViewController.swift를 업데이트해주셨어요 57 | - @mahee96님이 [#920](https://github.com/SideStore/SideStore/pull/920)에서 0.5.9에서 0.6.0으로 업그레이드할 때 발생하는 문제를 수정해주셨어요 58 | - @lafrenierejm님이 [#926](https://github.com/SideStore/SideStore/pull/926)에서 "levaraging"을 "leveraging"으로 오타를 수정해주셨어요 59 | - @Br0des님이 [#940](https://github.com/SideStore/SideStore/pull/940)에서 EM Proxy 부분에 StosVPN을 추가해주셨어요 60 | 61 | 62 | ## 0.6.0 - 이 빌드는 사용하지 마세요. 대신 0.6.1 또는 0.5.10을 사용하세요 63 | 64 | ### 변경사항 65 | 3월이 왔고, 우리는 큰 변화를 가져왔습니다! 드디어 AltStore 2.0의 변경사항을 SideStore에 포함시켰어요. 이제 AltStore 2.0의 모든 장점과 함께 SideStore의 몇 가지 버그 수정도 받아보실 수 있습니다. 즐거운 사용 되세요! 🚀 66 | 67 | ### 변경된 내용: 68 | - [#794](https://github.com/SideStore/SideStore/pull/794)에서 AltStore 2.0 변경사항을 적용했어요 69 | - @mahee96님이 [#846](https://github.com/SideStore/SideStore/pull/846)에서 [Refresh] 기능을 개선했어요 - 새로고침은 프로비저닝 프로파일만 갱신하도록 변경했답니다 70 | - @mahee96님이 [#850](https://github.com/SideStore/SideStore/pull/850)에서 [Settings] 버그를 수정했어요 - sparseRestore가 아직 패치되지 않은 iOS에서도 DisableAppLimit 스위치가 꺼진 상태로 돌아가지 않도록 했어요 71 | - @mahee96님이 [#857](https://github.com/SideStore/SideStore/pull/857)에서 [Backup] 로직을 수정했어요 - override 키워드가 빠져있어서 설치 중 업데이트 로직이 누락되었던 문제를 해결했어요 72 | - @mahee96님이 [#888](https://github.com/SideStore/SideStore/pull/888)에서 소스 화면에 대량 소스 추가 기능을 추가했어요 - 데이터베이스에 저장하기 전에 소스를 미리 준비할 수 있답니다 73 | - @mahee96님이 [#897](https://github.com/SideStore/SideStore/pull/897)에서 앱 내 업데이트 설명을 (전체) 마크다운으로 렌더링하는 기능을 추가했어요 -------------------------------------------------------------------------------- /i18n/nl/docusaurus-plugin-content-docs/current/advanced/sparserestore.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: 3-App Limiet Overschrijden 3 | description: Een handleiding over hoe je meer dan 3 apps kunt installeren via SideStore met behulp van de SparseRestore-exploit. 4 | --- 5 | 6 | :::note 7 | 8 | De SparseRestore “Bypass 3 app limit” exploit werkt **alleen op iOS/iPadOS-versies tussen 17.0 en 18.1 beta 4 (met uitzondering van 17.7.1)**. Als je niet op één van deze versies zit en het werkt niet, **vraag dan geen ondersteuning hiervoor**. 9 | 10 | ::: 11 | 12 | ## Vereisten 13 | * Een iDevice dat draait op een versie die door de SparseRestore-exploit wordt ondersteund (zie bovenstaande opmerking). 14 | * Minstens 1 vrij appslot. 15 | * SideStore versie 0.5.9 of later. Je kunt de nieuwste versies [hier](https://github.com/SideStore/SideStore/releases) vinden. 16 | * Om deze exploit uit te voeren, MOET **Find My** (Zoek mijn) uitgeschakeld zijn op je iDevice tijdens het proces. Anders werkt het niet. Zo schakel je Find My uit: 17 | - Open de Instellingen-app. 18 | - Tik bovenaan op je naam. 19 | - Tik op Find My. 20 | - Tik op Find My iPhone/iPad. 21 | - Zet Find My iPhone/iPad uit. 22 | - Mogelijk moet je je Apple ID-wachtwoord invoeren om dit te bevestigen. 23 | 24 | > **Opmerking:** Je kunt Find My mogelijk niet uitschakelen wanneer Stolen Device Protection aanstaat. Schakel Stolen Device Protection uit voordat je opnieuw probeert Find My uit te schakelen. 25 | 26 | ## Stappen 27 | 1. Installeer SparseBox. Dit kan op meerdere manieren, maar voor deze handleiding installeren we het via SideStore. De nieuwste versie kun je [hier](https://nightly.link/khanhduytran0/SparseBox/workflows/build/main/artifact.zip) vinden (pak *artifact.zip* uit voor het .ipa-bestand). 28 | 29 | 2. Schakel de optie "Disable App Limit" in SideStore in, zorg ervoor dat SideStore volledig **gesloten** is (niet op de achtergrond), en open daarna SparseBox. 30 | 31 | 3. Schakel StosVPN in, selecteer je pairing-bestand en tik op ‘Bypass 3-app limit’. Dit zou een log-uitvoer moeten tonen. Wacht tot er staat: 32 | `idevicebackup2 exited with code -18` of 33 | `idevicebackup2 exited with code 2` 34 | Sluit daarna de app. Je hoeft niet op apply te drukken. 35 | 36 | 4. Open SideStore opnieuw en scroll omlaag in de SideStore-instellingen. Druk op "clear cache", zodat SideStore de exploit kan herkennen. 37 | 38 | 5. Test of de exploit heeft gewerkt (mogelijk moet je meer dan één app installeren, afhankelijk van hoeveel vrije slots je hebt). 39 | Als je een foutmelding krijgt over de limiet, open SideStore opnieuw of probeer de exploit opnieuw. 40 | Als de app wordt geïnstalleerd: gefeliciteerd! Je kunt nu meer dan 3 apps tegelijkertijd geïnstalleerd hebben. 41 | 42 | ## Opmerkingen 43 | Vanwege bepaalde beperkingen moet deze exploit opnieuw worden uitgevoerd voor elke 3 extra apps die je sideloadt. 44 | 45 | Als je Find My nodig hebt voor andere doeleinden, kun je het nu weer inschakelen. Let op: als je nog meer apps wilt installeren of verversen, moet je Find My opnieuw uitschakelen. 46 | 47 | ## Alternatieven 48 | Als de exploit niet werkt of je iDevice op een niet-ondersteunde versie draait, is er een alternatief om toch meer dan 3 apps tegelijk te gebruiken. 49 | **LiveContainer**, ontwikkeld door Duy Tran Khanh ([khanhduytran0](https://github.com/khanhduytran0)) — dezelfde ontwikkelaar als SparseBox — stelt je in staat iOS-apps in containers binnen een app te draaien in plaats van ze afzonderlijk te hoeven installeren. Dit kan in sommige gevallen zelfs eenvoudiger zijn dan SparseRestore. 50 | 51 | De GitHub-pagina voor LiveContainer vind je [hier](https://github.com/khanhduytran0/LiveContainer). 52 | --------------------------------------------------------------------------------