diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml new file mode 100644 index 0000000..012dfd9 --- /dev/null +++ b/.github/workflows/deploy-site.yml @@ -0,0 +1,45 @@ +name: Deploy to Github Pages + +on: + push: + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: 'pages' + cancel-in-progress: true + +jobs: + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v3 + + - name: Install and Build 🔧 + run: | + yarn + yarn global add parcel + yarn prebuild + parcel build --no-source-maps --public-url https://sidestore.io/ + yarn postbuild + sed -i 's/{gh_actions_replace_hash}/${{ github.sha }}/' dist/index.html + + - name: Setup Pages ⚙️ + uses: actions/configure-pages@v2 + + - name: Upload artifact 📁 + uses: actions/upload-pages-artifact@v1 + with: + path: 'dist' + + - name: Deploy to GitHub Pages 🚀 + id: deployment + uses: actions/deploy-pages@v1 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..00aeb85 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# build output +dist/ +# generated types +.astro/ + +# dependencies +node_modules/ + +# logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + + +# environment variables +.env +.env.production + +# macOS-specific files +.DS_Store + +apps_data +applist.json diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..d994320 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,8 @@ +{ + "printWidth": 150, + "singleQuote": true, + "plugins": [ + "prettier-plugin-tailwindcss", + "prettier-plugin-astro" + ] +} \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..22a1505 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,4 @@ +{ + "recommendations": ["astro-build.astro-vscode"], + "unwantedRecommendations": [] +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d642209 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "command": "./node_modules/.bin/astro dev", + "name": "Development server", + "request": "launch", + "type": "node-terminal" + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..7a73a41 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,2 @@ +{ +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e34a99b --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# Astro Starter Kit: Minimal + +```sh +npm create astro@latest -- --template minimal +``` + +[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal) +[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal) +[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/minimal/devcontainer.json) + +> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! + +## 🚀 Project Structure + +Inside of your Astro project, you'll see the following folders and files: + +```text +/ +├── public/ +├── src/ +│ └── pages/ +│ └── index.astro +└── package.json +``` + +Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. + +There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. + +Any static assets, like images, can be placed in the `public/` directory. + +## 🧞 Commands + +All commands are run from the root of the project, from a terminal: + +| Command | Action | +| :------------------------ | :----------------------------------------------- | +| `npm install` | Installs dependencies | +| `npm run dev` | Starts local dev server at `localhost:4321` | +| `npm run build` | Build your production site to `./dist/` | +| `npm run preview` | Preview your build locally, before deploying | +| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | +| `npm run astro -- --help` | Get help using the Astro CLI | + +## 👀 Want to learn more? + +Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat). diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..9531d1c --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,10 @@ +import { defineConfig } from 'astro/config'; +import tailwind from "@astrojs/tailwind"; +import preact from "@astrojs/preact"; + +import svelte from "@astrojs/svelte"; + +// https://astro.build/config +export default defineConfig({ + integrations: [tailwind(), preact()] +}); \ No newline at end of file diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 0000000..53b0c42 Binary files /dev/null and b/bun.lockb differ diff --git a/package.json b/package.json new file mode 100644 index 0000000..64a4530 --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "sidestore_website_rewrite", + "type": "module", + "version": "0.0.1", + "scripts": { + "dev": "astro dev", + "start": "astro dev", + "build": "astro check && astro build", + "preview": "astro preview", + "prebuild": "run-script-os", + "prebuild:nix": "rm -rf dist .parcel-cache && node tools/update_apps.mjs --no-cache", + "prebuild:windows": "rd /s /q dist & rd /s /q .parcel-cache & node tools/update_apps.mjs --no-cache", + "astro": "astro" + }, + "dependencies": { + "@astrojs/check": "^0.4.1", + "@astrojs/preact": "^3.1.0", + "@astrojs/tailwind": "^5.1.0", + "astro": "^4.1.3", + "astro-seo": "^0.8.0", + "bowser": "^2.11.0", + "preact": "^10.19.3", + "prettier-plugin-tailwindcss": "^0.5.11", + "run-script-os": "^1.1.6", + "sharp": "^0.33.2", + "tailwindcss": "^3.4.1", + "typescript": "^5.3.3" + }, + "devDependencies": { + "node-fetch": "^3.3.2", + "prettier": "^3.2.4", + "prettier-plugin-astro": "^0.12.3" + } +} \ No newline at end of file diff --git a/public/assets/apple-touch-icon.png b/public/assets/apple-touch-icon.png new file mode 100644 index 0000000..7be89ff Binary files /dev/null and b/public/assets/apple-touch-icon.png differ diff --git a/public/assets/embed_card.png b/public/assets/embed_card.png new file mode 100644 index 0000000..69d6064 Binary files /dev/null and b/public/assets/embed_card.png differ diff --git a/public/assets/favicon-32x32.png b/public/assets/favicon-32x32.png new file mode 100644 index 0000000..7398c49 Binary files /dev/null and b/public/assets/favicon-32x32.png differ diff --git a/public/assets/favicon-white.svg b/public/assets/favicon-white.svg new file mode 100644 index 0000000..faef7c0 --- /dev/null +++ b/public/assets/favicon-white.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/assets/favicon.svg b/public/assets/favicon.svg new file mode 100644 index 0000000..faef7c0 --- /dev/null +++ b/public/assets/favicon.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/assets/fonts/Satoshi-Black.woff b/public/assets/fonts/Satoshi-Black.woff new file mode 100644 index 0000000..a6bee36 Binary files /dev/null and b/public/assets/fonts/Satoshi-Black.woff differ diff --git a/public/assets/fonts/Satoshi-Black.woff2 b/public/assets/fonts/Satoshi-Black.woff2 new file mode 100644 index 0000000..64492d5 Binary files /dev/null and b/public/assets/fonts/Satoshi-Black.woff2 differ diff --git a/public/assets/fonts/Satoshi-Bold.woff b/public/assets/fonts/Satoshi-Bold.woff new file mode 100644 index 0000000..bba8257 Binary files /dev/null and b/public/assets/fonts/Satoshi-Bold.woff differ diff --git a/public/assets/fonts/Satoshi-Bold.woff2 b/public/assets/fonts/Satoshi-Bold.woff2 new file mode 100644 index 0000000..0a8db7a Binary files /dev/null and b/public/assets/fonts/Satoshi-Bold.woff2 differ diff --git a/public/assets/fonts/Satoshi-Variable.ttf b/public/assets/fonts/Satoshi-Variable.ttf new file mode 100644 index 0000000..976e85c Binary files /dev/null and b/public/assets/fonts/Satoshi-Variable.ttf differ diff --git a/public/assets/hero_render2.png b/public/assets/hero_render2.png new file mode 100644 index 0000000..4745f51 Binary files /dev/null and b/public/assets/hero_render2.png differ diff --git a/public/assets/mockevents.json b/public/assets/mockevents.json new file mode 100644 index 0000000..34599c6 --- /dev/null +++ b/public/assets/mockevents.json @@ -0,0 +1,8309 @@ +[ + { + "id": "34966859424", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16712833878, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "667f10e2022e19fc28f21cb47fbb63aa37a7cbd5", + "before": "e487ac6c8b1ef4928658b1c30d9306fad24df60d", + "commits": [ + { + "sha": "667f10e2022e19fc28f21cb47fbb63aa37a7cbd5", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/667f10e2022e19fc28f21cb47fbb63aa37a7cbd5" + } + ] + }, + "public": true, + "created_at": "2024-01-19T16:24:19Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34966521346", + "type": "PullRequestEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 609742062, + "name": "SideStore/omnisette-server", + "url": "https://api.github.com/repos/SideStore/omnisette-server" + }, + "payload": { + "action": "opened", + "number": 13, + "pull_request": { + "url": "https://api.github.com/repos/SideStore/omnisette-server/pulls/13", + "id": 1687180641, + "node_id": "PR_kwDOJFfs7s5kkFVh", + "html_url": "https://github.com/SideStore/omnisette-server/pull/13", + "diff_url": "https://github.com/SideStore/omnisette-server/pull/13.diff", + "patch_url": "https://github.com/SideStore/omnisette-server/pull/13.patch", + "issue_url": "https://api.github.com/repos/SideStore/omnisette-server/issues/13", + "number": 13, + "state": "open", + "locked": false, + "title": "Bump h2 from 0.3.17 to 0.3.24", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "body": "Bumps [h2](https://github.com/hyperium/h2) from 0.3.17 to 0.3.24.\n
\nRelease notes\n

Sourced from h2's releases.

\n
\n

v0.3.24

\n

Fixed

\n\n

v0.3.23

\n

What's Changed

\n\n

v0.3.22

\n

What's Changed

\n\n

New Contributors

\n\n

v0.3.21

\n

What's Changed

\n\n

New Contributors

\n\n

v0.3.20

\n

Bug Fixes

\n\n

New Contributors

\n\n

v0.3.19

\n

What's Changed

\n\n

New Contributors

\n\n\n
\n

... (truncated)

\n
\n
\nChangelog\n

Sourced from h2's changelog.

\n
\n

0.3.24 (January 17, 2024)

\n\n

0.3.23 (January 10, 2024)

\n\n

0.3.22 (November 15, 2023)

\n\n

0.3.21 (August 21, 2023)

\n\n

0.3.20 (June 26, 2023)

\n\n

0.3.19 (May 12, 2023)

\n\n

0.3.18 (April 17, 2023)

\n\n
\n
\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=h2&package-manager=cargo&previous-version=0.3.17&new-version=0.3.24)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/SideStore/omnisette-server/network/alerts).\n\n
", + "created_at": "2024-01-19T16:12:11Z", + "updated_at": "2024-01-19T16:12:12Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": "15d7b41941401e1c8cc47cbd83ae8c0d1dfba006", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 5649173243, + "node_id": "LA_kwDOJFfs7s8AAAABULeK-w", + "url": "https://api.github.com/repos/SideStore/omnisette-server/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/SideStore/omnisette-server/pulls/13/commits", + "review_comments_url": "https://api.github.com/repos/SideStore/omnisette-server/pulls/13/comments", + "review_comment_url": "https://api.github.com/repos/SideStore/omnisette-server/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/SideStore/omnisette-server/issues/13/comments", + "statuses_url": "https://api.github.com/repos/SideStore/omnisette-server/statuses/f82a9a4219865b04c0c843b99fec7c2a8a6e1840", + "head": { + "label": "SideStore:dependabot/cargo/h2-0.3.24", + "ref": "dependabot/cargo/h2-0.3.24", + "sha": "f82a9a4219865b04c0c843b99fec7c2a8a6e1840", + "user": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 609742062, + "node_id": "R_kgDOJFfs7g", + "name": "omnisette-server", + "full_name": "SideStore/omnisette-server", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/omnisette-server", + "description": "An HTTP server wrapper for omnisette. Supports both V1 (Provision) and V3 of anisette servers.", + "fork": false, + "url": "https://api.github.com/repos/SideStore/omnisette-server", + "forks_url": "https://api.github.com/repos/SideStore/omnisette-server/forks", + "keys_url": "https://api.github.com/repos/SideStore/omnisette-server/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/omnisette-server/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/omnisette-server/teams", + "hooks_url": "https://api.github.com/repos/SideStore/omnisette-server/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/omnisette-server/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/omnisette-server/events", + "assignees_url": "https://api.github.com/repos/SideStore/omnisette-server/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/omnisette-server/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/omnisette-server/tags", + "blobs_url": "https://api.github.com/repos/SideStore/omnisette-server/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/omnisette-server/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/omnisette-server/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/omnisette-server/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/omnisette-server/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/omnisette-server/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/omnisette-server/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/omnisette-server/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/omnisette-server/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/omnisette-server/subscription", + "commits_url": "https://api.github.com/repos/SideStore/omnisette-server/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/omnisette-server/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/omnisette-server/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/omnisette-server/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/omnisette-server/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/omnisette-server/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/omnisette-server/merges", + "archive_url": "https://api.github.com/repos/SideStore/omnisette-server/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/omnisette-server/downloads", + "issues_url": "https://api.github.com/repos/SideStore/omnisette-server/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/omnisette-server/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/omnisette-server/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/omnisette-server/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/omnisette-server/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/omnisette-server/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/omnisette-server/deployments", + "created_at": "2023-03-05T04:52:58Z", + "updated_at": "2024-01-11T08:06:05Z", + "pushed_at": "2024-01-19T16:12:12Z", + "git_url": "git://github.com/SideStore/omnisette-server.git", + "ssh_url": "git@github.com:SideStore/omnisette-server.git", + "clone_url": "https://github.com/SideStore/omnisette-server.git", + "svn_url": "https://github.com/SideStore/omnisette-server", + "homepage": null, + "size": 101, + "stargazers_count": 36, + "watchers_count": 36, + "language": "Rust", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 71, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 71, + "open_issues": 4, + "watchers": 36, + "default_branch": "main" + } + }, + "base": { + "label": "SideStore:main", + "ref": "main", + "sha": "3f3102b8705dd17fa1ba6312e8a9122638811a0a", + "user": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 609742062, + "node_id": "R_kgDOJFfs7g", + "name": "omnisette-server", + "full_name": "SideStore/omnisette-server", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/omnisette-server", + "description": "An HTTP server wrapper for omnisette. Supports both V1 (Provision) and V3 of anisette servers.", + "fork": false, + "url": "https://api.github.com/repos/SideStore/omnisette-server", + "forks_url": "https://api.github.com/repos/SideStore/omnisette-server/forks", + "keys_url": "https://api.github.com/repos/SideStore/omnisette-server/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/omnisette-server/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/omnisette-server/teams", + "hooks_url": "https://api.github.com/repos/SideStore/omnisette-server/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/omnisette-server/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/omnisette-server/events", + "assignees_url": "https://api.github.com/repos/SideStore/omnisette-server/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/omnisette-server/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/omnisette-server/tags", + "blobs_url": "https://api.github.com/repos/SideStore/omnisette-server/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/omnisette-server/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/omnisette-server/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/omnisette-server/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/omnisette-server/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/omnisette-server/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/omnisette-server/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/omnisette-server/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/omnisette-server/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/omnisette-server/subscription", + "commits_url": "https://api.github.com/repos/SideStore/omnisette-server/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/omnisette-server/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/omnisette-server/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/omnisette-server/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/omnisette-server/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/omnisette-server/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/omnisette-server/merges", + "archive_url": "https://api.github.com/repos/SideStore/omnisette-server/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/omnisette-server/downloads", + "issues_url": "https://api.github.com/repos/SideStore/omnisette-server/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/omnisette-server/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/omnisette-server/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/omnisette-server/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/omnisette-server/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/omnisette-server/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/omnisette-server/deployments", + "created_at": "2023-03-05T04:52:58Z", + "updated_at": "2024-01-11T08:06:05Z", + "pushed_at": "2024-01-19T16:12:12Z", + "git_url": "git://github.com/SideStore/omnisette-server.git", + "ssh_url": "git@github.com:SideStore/omnisette-server.git", + "clone_url": "https://github.com/SideStore/omnisette-server.git", + "svn_url": "https://github.com/SideStore/omnisette-server", + "homepage": null, + "size": 101, + "stargazers_count": 36, + "watchers_count": 36, + "language": "Rust", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 71, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 71, + "open_issues": 4, + "watchers": 36, + "default_branch": "main" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/SideStore/omnisette-server/pulls/13" + }, + "html": { + "href": "https://github.com/SideStore/omnisette-server/pull/13" + }, + "issue": { + "href": "https://api.github.com/repos/SideStore/omnisette-server/issues/13" + }, + "comments": { + "href": "https://api.github.com/repos/SideStore/omnisette-server/issues/13/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/SideStore/omnisette-server/pulls/13/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/SideStore/omnisette-server/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/SideStore/omnisette-server/pulls/13/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/SideStore/omnisette-server/statuses/f82a9a4219865b04c0c843b99fec7c2a8a6e1840" + } + }, + "author_association": "CONTRIBUTOR", + "auto_merge": null, + "active_lock_reason": null, + "merged": false, + "mergeable": true, + "rebaseable": true, + "mergeable_state": "clean", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 27, + "deletions": 5, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2024-01-19T16:12:13Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34966521054", + "type": "CreateEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 609742062, + "name": "SideStore/omnisette-server", + "url": "https://api.github.com/repos/SideStore/omnisette-server" + }, + "payload": { + "ref": "dependabot/cargo/h2-0.3.24", + "ref_type": "branch", + "master_branch": "main", + "description": "An HTTP server wrapper for omnisette. Supports both V1 (Provision) and V3 of anisette servers.", + "pusher_type": "user" + }, + "public": true, + "created_at": "2024-01-19T16:12:13Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34953841178", + "type": "WatchEvent", + "actor": { + "id": 157104824, + "login": "Janat19", + "display_login": "Janat19", + "gravatar_id": "", + "url": "https://api.github.com/users/Janat19", + "avatar_url": "https://avatars.githubusercontent.com/u/157104824?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-19T08:26:45Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34949534709", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16704094541, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "e487ac6c8b1ef4928658b1c30d9306fad24df60d", + "before": "64ed2ebf6783364a9937d10f068c8d0d7df29387", + "commits": [ + { + "sha": "e487ac6c8b1ef4928658b1c30d9306fad24df60d", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/e487ac6c8b1ef4928658b1c30d9306fad24df60d" + } + ] + }, + "public": true, + "created_at": "2024-01-19T04:23:20Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34948909104", + "type": "DeleteEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "ref": "dependabot/npm_and_yarn/semver-5.7.2", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2024-01-19T03:42:09Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34948908408", + "type": "DeleteEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "ref": "dependabot/npm_and_yarn/postcss-8.4.31", + "ref_type": "branch", + "pusher_type": "user" + }, + "public": true, + "created_at": "2024-01-19T03:42:06Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34948907562", + "type": "IssueCommentEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25", + "repository_url": "https://api.github.com/repos/SideStore/sidestore.github.io", + "labels_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25/comments", + "events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25/events", + "html_url": "https://github.com/SideStore/sidestore.github.io/pull/25", + "id": 1802856689, + "node_id": "PR_kwDOHfQuGc5VaXGz", + "number": 25, + "title": "Bump semver from 5.7.1 to 5.7.2", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 5731224930, + "node_id": "LA_kwDOHfQuGc8AAAABVZuNYg", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2023-07-13T11:52:20Z", + "updated_at": "2024-01-19T03:42:02Z", + "closed_at": "2024-01-19T03:41:59Z", + "author_association": "NONE", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/25", + "html_url": "https://github.com/SideStore/sidestore.github.io/pull/25", + "diff_url": "https://github.com/SideStore/sidestore.github.io/pull/25.diff", + "patch_url": "https://github.com/SideStore/sidestore.github.io/pull/25.patch", + "merged_at": null + }, + "body": "Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2.\n
\nRelease notes\n

Sourced from semver's releases.

\n
\n

v5.7.2

\n

5.7.2 (2023-07-10)

\n

Bug Fixes

\n\n
\n
\n
\nChangelog\n

Sourced from semver's changelog.

\n
\n

5.7.2 (2023-07-10)

\n

Bug Fixes

\n\n

5.7

\n\n

5.6

\n\n

5.5

\n\n

5.4

\n\n

5.3

\n\n

5.2

\n\n

5.1

\n\n

5.0

\n\n
\n
\n
\nCommits\n\n
\n
\nMaintainer changes\n

This version was pushed to npm by lukekarrys, a new releaser for semver since your current version.

\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=semver&package-manager=npm_and_yarn&previous-version=5.7.1&new-version=5.7.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/SideStore/sidestore.github.io/network/alerts).\n\n
", + "reactions": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/comments/1899643420", + "html_url": "https://github.com/SideStore/sidestore.github.io/pull/25#issuecomment-1899643420", + "issue_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25", + "id": 1899643420, + "node_id": "IC_kwDOHfQuGc5xOkIc", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "created_at": "2024-01-19T03:42:01Z", + "updated_at": "2024-01-19T03:42:01Z", + "author_association": "NONE", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "reactions": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/comments/1899643420/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": { + "id": 29110, + "slug": "dependabot", + "node_id": "MDM6QXBwMjkxMTA=", + "owner": { + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9919?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github", + "html_url": "https://github.com/github", + "followers_url": "https://api.github.com/users/github/followers", + "following_url": "https://api.github.com/users/github/following{/other_user}", + "gists_url": "https://api.github.com/users/github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github/subscriptions", + "organizations_url": "https://api.github.com/users/github/orgs", + "repos_url": "https://api.github.com/users/github/repos", + "events_url": "https://api.github.com/users/github/events{/privacy}", + "received_events_url": "https://api.github.com/users/github/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "Dependabot", + "description": "", + "external_url": "https://dependabot-api.githubapp.com", + "html_url": "https://github.com/apps/dependabot", + "created_at": "2019-04-16T22:34:25Z", + "updated_at": "2023-10-12T13:35:09Z", + "permissions": { + "checks": "write", + "contents": "write", + "issues": "write", + "members": "read", + "metadata": "read", + "pull_requests": "write", + "statuses": "read", + "vulnerability_alerts": "read", + "workflows": "write" + }, + "events": [ + "check_suite", + "issues", + "issue_comment", + "label", + "pull_request", + "pull_request_review", + "pull_request_review_comment", + "repository" + ] + } + } + }, + "public": true, + "created_at": "2024-01-19T03:42:02Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34948907135", + "type": "PullRequestEvent", + "actor": { + "id": 70122891, + "login": "SternXD", + "display_login": "SternXD", + "gravatar_id": "", + "url": "https://api.github.com/users/SternXD", + "avatar_url": "https://avatars.githubusercontent.com/u/70122891?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "action": "closed", + "number": 25, + "pull_request": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/25", + "id": 1432973747, + "node_id": "PR_kwDOHfQuGc5VaXGz", + "html_url": "https://github.com/SideStore/sidestore.github.io/pull/25", + "diff_url": "https://github.com/SideStore/sidestore.github.io/pull/25.diff", + "patch_url": "https://github.com/SideStore/sidestore.github.io/pull/25.patch", + "issue_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25", + "number": 25, + "state": "closed", + "locked": false, + "title": "Bump semver from 5.7.1 to 5.7.2", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "body": "Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2.\n
\nRelease notes\n

Sourced from semver's releases.

\n
\n

v5.7.2

\n

5.7.2 (2023-07-10)

\n

Bug Fixes

\n\n
\n
\n
\nChangelog\n

Sourced from semver's changelog.

\n
\n

5.7.2 (2023-07-10)

\n

Bug Fixes

\n\n

5.7

\n\n

5.6

\n\n

5.5

\n\n

5.4

\n\n

5.3

\n\n

5.2

\n\n

5.1

\n\n

5.0

\n\n
\n
\n
\nCommits\n\n
\n
\nMaintainer changes\n

This version was pushed to npm by lukekarrys, a new releaser for semver since your current version.

\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=semver&package-manager=npm_and_yarn&previous-version=5.7.1&new-version=5.7.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/SideStore/sidestore.github.io/network/alerts).\n\n
", + "created_at": "2023-07-13T11:52:20Z", + "updated_at": "2024-01-19T03:41:59Z", + "closed_at": "2024-01-19T03:41:59Z", + "merged_at": null, + "merge_commit_sha": "a04a39707be23eda83c321ba25e99e9f0047150e", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 5731224930, + "node_id": "LA_kwDOHfQuGc8AAAABVZuNYg", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/25/commits", + "review_comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/25/comments", + "review_comment_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25/comments", + "statuses_url": "https://api.github.com/repos/SideStore/sidestore.github.io/statuses/e9b118b79ba17ddc30b3e1e4bae7525ff33a9109", + "head": { + "label": "SideStore:dependabot/npm_and_yarn/semver-5.7.2", + "ref": "dependabot/npm_and_yarn/semver-5.7.2", + "sha": "e9b118b79ba17ddc30b3e1e4bae7525ff33a9109", + "user": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 502541849, + "node_id": "R_kgDOHfQuGQ", + "name": "sidestore.github.io", + "full_name": "SideStore/sidestore.github.io", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/sidestore.github.io", + "description": "https://sidestore.io", + "fork": false, + "url": "https://api.github.com/repos/SideStore/sidestore.github.io", + "forks_url": "https://api.github.com/repos/SideStore/sidestore.github.io/forks", + "keys_url": "https://api.github.com/repos/SideStore/sidestore.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/sidestore.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/sidestore.github.io/teams", + "hooks_url": "https://api.github.com/repos/SideStore/sidestore.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/events", + "assignees_url": "https://api.github.com/repos/SideStore/sidestore.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/sidestore.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/sidestore.github.io/tags", + "blobs_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/sidestore.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/sidestore.github.io/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/sidestore.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/sidestore.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/sidestore.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/sidestore.github.io/subscription", + "commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/sidestore.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/sidestore.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/sidestore.github.io/merges", + "archive_url": "https://api.github.com/repos/SideStore/sidestore.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/sidestore.github.io/downloads", + "issues_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/sidestore.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/sidestore.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/sidestore.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/sidestore.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/deployments", + "created_at": "2022-06-12T06:54:14Z", + "updated_at": "2024-01-16T10:33:50Z", + "pushed_at": "2023-10-07T10:37:53Z", + "git_url": "git://github.com/SideStore/sidestore.github.io.git", + "ssh_url": "git@github.com:SideStore/sidestore.github.io.git", + "clone_url": "https://github.com/SideStore/sidestore.github.io.git", + "svn_url": "https://github.com/SideStore/sidestore.github.io", + "homepage": null, + "size": 6859, + "stargazers_count": 85, + "watchers_count": 85, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "has_discussions": true, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 15, + "open_issues": 1, + "watchers": 85, + "default_branch": "master" + } + }, + "base": { + "label": "SideStore:master", + "ref": "master", + "sha": "5818dccc694640500a02d67f871138cd09bbc264", + "user": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 502541849, + "node_id": "R_kgDOHfQuGQ", + "name": "sidestore.github.io", + "full_name": "SideStore/sidestore.github.io", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/sidestore.github.io", + "description": "https://sidestore.io", + "fork": false, + "url": "https://api.github.com/repos/SideStore/sidestore.github.io", + "forks_url": "https://api.github.com/repos/SideStore/sidestore.github.io/forks", + "keys_url": "https://api.github.com/repos/SideStore/sidestore.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/sidestore.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/sidestore.github.io/teams", + "hooks_url": "https://api.github.com/repos/SideStore/sidestore.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/events", + "assignees_url": "https://api.github.com/repos/SideStore/sidestore.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/sidestore.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/sidestore.github.io/tags", + "blobs_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/sidestore.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/sidestore.github.io/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/sidestore.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/sidestore.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/sidestore.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/sidestore.github.io/subscription", + "commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/sidestore.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/sidestore.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/sidestore.github.io/merges", + "archive_url": "https://api.github.com/repos/SideStore/sidestore.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/sidestore.github.io/downloads", + "issues_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/sidestore.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/sidestore.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/sidestore.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/sidestore.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/deployments", + "created_at": "2022-06-12T06:54:14Z", + "updated_at": "2024-01-16T10:33:50Z", + "pushed_at": "2023-10-07T10:37:53Z", + "git_url": "git://github.com/SideStore/sidestore.github.io.git", + "ssh_url": "git@github.com:SideStore/sidestore.github.io.git", + "clone_url": "https://github.com/SideStore/sidestore.github.io.git", + "svn_url": "https://github.com/SideStore/sidestore.github.io", + "homepage": null, + "size": 6859, + "stargazers_count": 85, + "watchers_count": 85, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "has_discussions": true, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 15, + "open_issues": 1, + "watchers": 85, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/25" + }, + "html": { + "href": "https://github.com/SideStore/sidestore.github.io/pull/25" + }, + "issue": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25" + }, + "comments": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/25/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/25/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/25/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/statuses/e9b118b79ba17ddc30b3e1e4bae7525ff33a9109" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": false, + "mergeable": true, + "rebaseable": false, + "mergeable_state": "unstable", + "merged_by": null, + "comments": 2, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 6, + "deletions": 6, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2024-01-19T03:42:00Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34948906992", + "type": "IssueCommentEvent", + "actor": { + "id": 49699333, + "login": "dependabot[bot]", + "display_login": "dependabot", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/49699333?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31", + "repository_url": "https://api.github.com/repos/SideStore/sidestore.github.io", + "labels_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31/comments", + "events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31/events", + "html_url": "https://github.com/SideStore/sidestore.github.io/pull/31", + "id": 1931298641, + "node_id": "PR_kwDOHfQuGc5cKw-Y", + "number": 31, + "title": "Bump postcss from 8.4.20 to 8.4.31", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "labels": [ + { + "id": 5731224930, + "node_id": "LA_kwDOHfQuGc8AAAABVZuNYg", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2023-10-07T10:37:52Z", + "updated_at": "2024-01-19T03:41:59Z", + "closed_at": "2024-01-19T03:41:57Z", + "author_association": "NONE", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/31", + "html_url": "https://github.com/SideStore/sidestore.github.io/pull/31", + "diff_url": "https://github.com/SideStore/sidestore.github.io/pull/31.diff", + "patch_url": "https://github.com/SideStore/sidestore.github.io/pull/31.patch", + "merged_at": null + }, + "body": "Bumps [postcss](https://github.com/postcss/postcss) from 8.4.20 to 8.4.31.\n
\nRelease notes\n

Sourced from postcss's releases.

\n
\n

8.4.31

\n\n

8.4.30

\n\n

8.4.29

\n\n

8.4.28

\n\n

8.4.27

\n\n

8.4.26

\n\n

8.4.25

\n\n

8.4.24

\n\n

8.4.23

\n\n

8.4.22

\n\n

8.4.21

\n\n
\n
\n
\nChangelog\n

Sourced from postcss's changelog.

\n
\n

8.4.31

\n\n

8.4.30

\n\n

8.4.29

\n\n

8.4.28

\n\n

8.4.27

\n\n

8.4.26

\n\n

8.4.25

\n\n

8.4.24

\n\n

8.4.23

\n\n

8.4.22

\n\n

8.4.21

\n\n
\n
\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=postcss&package-manager=npm_and_yarn&previous-version=8.4.20&new-version=8.4.31)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/SideStore/sidestore.github.io/network/alerts).\n\n
", + "reactions": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/comments/1899643397", + "html_url": "https://github.com/SideStore/sidestore.github.io/pull/31#issuecomment-1899643397", + "issue_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31", + "id": 1899643397, + "node_id": "IC_kwDOHfQuGc5xOkIF", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "created_at": "2024-01-19T03:41:59Z", + "updated_at": "2024-01-19T03:41:59Z", + "author_association": "NONE", + "body": "OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`.\n\nIf you change your mind, just re-open this PR and I'll resolve any conflicts on it.", + "reactions": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/comments/1899643397/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": { + "id": 29110, + "slug": "dependabot", + "node_id": "MDM6QXBwMjkxMTA=", + "owner": { + "login": "github", + "id": 9919, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjk5MTk=", + "avatar_url": "https://avatars.githubusercontent.com/u/9919?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github", + "html_url": "https://github.com/github", + "followers_url": "https://api.github.com/users/github/followers", + "following_url": "https://api.github.com/users/github/following{/other_user}", + "gists_url": "https://api.github.com/users/github/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github/subscriptions", + "organizations_url": "https://api.github.com/users/github/orgs", + "repos_url": "https://api.github.com/users/github/repos", + "events_url": "https://api.github.com/users/github/events{/privacy}", + "received_events_url": "https://api.github.com/users/github/received_events", + "type": "Organization", + "site_admin": false + }, + "name": "Dependabot", + "description": "", + "external_url": "https://dependabot-api.githubapp.com", + "html_url": "https://github.com/apps/dependabot", + "created_at": "2019-04-16T22:34:25Z", + "updated_at": "2023-10-12T13:35:09Z", + "permissions": { + "checks": "write", + "contents": "write", + "issues": "write", + "members": "read", + "metadata": "read", + "pull_requests": "write", + "statuses": "read", + "vulnerability_alerts": "read", + "workflows": "write" + }, + "events": [ + "check_suite", + "issues", + "issue_comment", + "label", + "pull_request", + "pull_request_review", + "pull_request_review_comment", + "repository" + ] + } + } + }, + "public": true, + "created_at": "2024-01-19T03:42:00Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34948906631", + "type": "PullRequestEvent", + "actor": { + "id": 70122891, + "login": "SternXD", + "display_login": "SternXD", + "gravatar_id": "", + "url": "https://api.github.com/users/SternXD", + "avatar_url": "https://avatars.githubusercontent.com/u/70122891?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "action": "closed", + "number": 31, + "pull_request": { + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/31", + "id": 1546325912, + "node_id": "PR_kwDOHfQuGc5cKw-Y", + "html_url": "https://github.com/SideStore/sidestore.github.io/pull/31", + "diff_url": "https://github.com/SideStore/sidestore.github.io/pull/31.diff", + "patch_url": "https://github.com/SideStore/sidestore.github.io/pull/31.patch", + "issue_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31", + "number": 31, + "state": "closed", + "locked": false, + "title": "Bump postcss from 8.4.20 to 8.4.31", + "user": { + "login": "dependabot[bot]", + "id": 49699333, + "node_id": "MDM6Qm90NDk2OTkzMzM=", + "avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/dependabot%5Bbot%5D", + "html_url": "https://github.com/apps/dependabot", + "followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers", + "following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}", + "gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}", + "starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions", + "organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs", + "repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos", + "events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}", + "received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events", + "type": "Bot", + "site_admin": false + }, + "body": "Bumps [postcss](https://github.com/postcss/postcss) from 8.4.20 to 8.4.31.\n
\nRelease notes\n

Sourced from postcss's releases.

\n
\n

8.4.31

\n\n

8.4.30

\n\n

8.4.29

\n\n

8.4.28

\n\n

8.4.27

\n\n

8.4.26

\n\n

8.4.25

\n\n

8.4.24

\n\n

8.4.23

\n\n

8.4.22

\n\n

8.4.21

\n\n
\n
\n
\nChangelog\n

Sourced from postcss's changelog.

\n
\n

8.4.31

\n\n

8.4.30

\n\n

8.4.29

\n\n

8.4.28

\n\n

8.4.27

\n\n

8.4.26

\n\n

8.4.25

\n\n

8.4.24

\n\n

8.4.23

\n\n

8.4.22

\n\n

8.4.21

\n\n
\n
\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=postcss&package-manager=npm_and_yarn&previous-version=8.4.20&new-version=8.4.31)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/SideStore/sidestore.github.io/network/alerts).\n\n
", + "created_at": "2023-10-07T10:37:52Z", + "updated_at": "2024-01-19T03:41:57Z", + "closed_at": "2024-01-19T03:41:57Z", + "merged_at": null, + "merge_commit_sha": "9bcf327ada9303d0e0d9ec5e32a931e4a483b6fe", + "assignee": null, + "assignees": [], + "requested_reviewers": [], + "requested_teams": [], + "labels": [ + { + "id": 5731224930, + "node_id": "LA_kwDOHfQuGc8AAAABVZuNYg", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io/labels/dependencies", + "name": "dependencies", + "color": "0366d6", + "default": false, + "description": "Pull requests that update a dependency file" + } + ], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/31/commits", + "review_comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/31/comments", + "review_comment_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31/comments", + "statuses_url": "https://api.github.com/repos/SideStore/sidestore.github.io/statuses/8443f910c0871978311879e4b9090ca1a98da8d1", + "head": { + "label": "SideStore:dependabot/npm_and_yarn/postcss-8.4.31", + "ref": "dependabot/npm_and_yarn/postcss-8.4.31", + "sha": "8443f910c0871978311879e4b9090ca1a98da8d1", + "user": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 502541849, + "node_id": "R_kgDOHfQuGQ", + "name": "sidestore.github.io", + "full_name": "SideStore/sidestore.github.io", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/sidestore.github.io", + "description": "https://sidestore.io", + "fork": false, + "url": "https://api.github.com/repos/SideStore/sidestore.github.io", + "forks_url": "https://api.github.com/repos/SideStore/sidestore.github.io/forks", + "keys_url": "https://api.github.com/repos/SideStore/sidestore.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/sidestore.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/sidestore.github.io/teams", + "hooks_url": "https://api.github.com/repos/SideStore/sidestore.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/events", + "assignees_url": "https://api.github.com/repos/SideStore/sidestore.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/sidestore.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/sidestore.github.io/tags", + "blobs_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/sidestore.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/sidestore.github.io/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/sidestore.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/sidestore.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/sidestore.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/sidestore.github.io/subscription", + "commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/sidestore.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/sidestore.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/sidestore.github.io/merges", + "archive_url": "https://api.github.com/repos/SideStore/sidestore.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/sidestore.github.io/downloads", + "issues_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/sidestore.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/sidestore.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/sidestore.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/sidestore.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/deployments", + "created_at": "2022-06-12T06:54:14Z", + "updated_at": "2024-01-16T10:33:50Z", + "pushed_at": "2023-10-07T10:37:53Z", + "git_url": "git://github.com/SideStore/sidestore.github.io.git", + "ssh_url": "git@github.com:SideStore/sidestore.github.io.git", + "clone_url": "https://github.com/SideStore/sidestore.github.io.git", + "svn_url": "https://github.com/SideStore/sidestore.github.io", + "homepage": null, + "size": 6859, + "stargazers_count": 85, + "watchers_count": 85, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "has_discussions": true, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 15, + "open_issues": 2, + "watchers": 85, + "default_branch": "master" + } + }, + "base": { + "label": "SideStore:master", + "ref": "master", + "sha": "67bf7bbaae8b7a490e82d23a08ba3614f1698a3a", + "user": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 502541849, + "node_id": "R_kgDOHfQuGQ", + "name": "sidestore.github.io", + "full_name": "SideStore/sidestore.github.io", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/sidestore.github.io", + "description": "https://sidestore.io", + "fork": false, + "url": "https://api.github.com/repos/SideStore/sidestore.github.io", + "forks_url": "https://api.github.com/repos/SideStore/sidestore.github.io/forks", + "keys_url": "https://api.github.com/repos/SideStore/sidestore.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/sidestore.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/sidestore.github.io/teams", + "hooks_url": "https://api.github.com/repos/SideStore/sidestore.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/events", + "assignees_url": "https://api.github.com/repos/SideStore/sidestore.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/sidestore.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/sidestore.github.io/tags", + "blobs_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/sidestore.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/sidestore.github.io/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/sidestore.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/sidestore.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/sidestore.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/sidestore.github.io/subscription", + "commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/sidestore.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/sidestore.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/sidestore.github.io/merges", + "archive_url": "https://api.github.com/repos/SideStore/sidestore.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/sidestore.github.io/downloads", + "issues_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/sidestore.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/sidestore.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/sidestore.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/sidestore.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/deployments", + "created_at": "2022-06-12T06:54:14Z", + "updated_at": "2024-01-16T10:33:50Z", + "pushed_at": "2023-10-07T10:37:53Z", + "git_url": "git://github.com/SideStore/sidestore.github.io.git", + "ssh_url": "git@github.com:SideStore/sidestore.github.io.git", + "clone_url": "https://github.com/SideStore/sidestore.github.io.git", + "svn_url": "https://github.com/SideStore/sidestore.github.io", + "homepage": null, + "size": 6859, + "stargazers_count": 85, + "watchers_count": 85, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "has_discussions": true, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 15, + "open_issues": 2, + "watchers": 85, + "default_branch": "master" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/31" + }, + "html": { + "href": "https://github.com/SideStore/sidestore.github.io/pull/31" + }, + "issue": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31" + }, + "comments": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/31/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/31/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls/31/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/SideStore/sidestore.github.io/statuses/8443f910c0871978311879e4b9090ca1a98da8d1" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": false, + "mergeable": true, + "rebaseable": false, + "mergeable_state": "unstable", + "merged_by": null, + "comments": 2, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 1, + "additions": 10, + "deletions": 10, + "changed_files": 2 + } + }, + "public": true, + "created_at": "2024-01-19T03:41:58Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34944026806", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16701169856, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "64ed2ebf6783364a9937d10f068c8d0d7df29387", + "before": "96e60a99c3b97ddf517f0fae3a4de561ea026547", + "commits": [ + { + "sha": "64ed2ebf6783364a9937d10f068c8d0d7df29387", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/64ed2ebf6783364a9937d10f068c8d0d7df29387" + } + ] + }, + "public": true, + "created_at": "2024-01-18T22:18:14Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34943076638", + "type": "IssueCommentEvent", + "actor": { + "id": 70122891, + "login": "SternXD", + "display_login": "SternXD", + "gravatar_id": "", + "url": "https://api.github.com/users/SternXD", + "avatar_url": "https://avatars.githubusercontent.com/u/70122891?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/577", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/577/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/577/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/577/events", + "html_url": "https://github.com/SideStore/SideStore/pull/577", + "id": 2088004856, + "node_id": "PR_kwDOHS0Hg85kaOVP", + "number": 577, + "title": "build mdc", + "user": { + "login": "taicracker", + "id": 97887808, + "node_id": "U_kgDOBdWmQA", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "html_url": "https://github.com/taicracker", + "followers_url": "https://api.github.com/users/taicracker/followers", + "following_url": "https://api.github.com/users/taicracker/following{/other_user}", + "gists_url": "https://api.github.com/users/taicracker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/taicracker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/taicracker/subscriptions", + "organizations_url": "https://api.github.com/users/taicracker/orgs", + "repos_url": "https://api.github.com/users/taicracker/repos", + "events_url": "https://api.github.com/users/taicracker/events{/privacy}", + "received_events_url": "https://api.github.com/users/taicracker/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2024-01-18T10:40:57Z", + "updated_at": "2024-01-18T21:30:38Z", + "closed_at": "2024-01-18T21:30:38Z", + "author_association": "NONE", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/SideStore/SideStore/pulls/577", + "html_url": "https://github.com/SideStore/SideStore/pull/577", + "diff_url": "https://github.com/SideStore/SideStore/pull/577.diff", + "patch_url": "https://github.com/SideStore/SideStore/pull/577.patch", + "merged_at": null + }, + "body": null, + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/577/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/577/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1899233332", + "html_url": "https://github.com/SideStore/SideStore/pull/577#issuecomment-1899233332", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/577", + "id": 1899233332, + "node_id": "IC_kwDOHS0Hg85xNAA0", + "user": { + "login": "SternXD", + "id": 70122891, + "node_id": "MDQ6VXNlcjcwMTIyODkx", + "avatar_url": "https://avatars.githubusercontent.com/u/70122891?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SternXD", + "html_url": "https://github.com/SternXD", + "followers_url": "https://api.github.com/users/SternXD/followers", + "following_url": "https://api.github.com/users/SternXD/following{/other_user}", + "gists_url": "https://api.github.com/users/SternXD/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SternXD/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SternXD/subscriptions", + "organizations_url": "https://api.github.com/users/SternXD/orgs", + "repos_url": "https://api.github.com/users/SternXD/repos", + "events_url": "https://api.github.com/users/SternXD/events{/privacy}", + "received_events_url": "https://api.github.com/users/SternXD/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-18T21:30:38Z", + "updated_at": "2024-01-18T21:30:38Z", + "author_association": "MEMBER", + "body": "This Pull Request is closed because it only modifies a constant value that has no effect for most users. If you want to implement MDC functionality, please create a more detailed PR.", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1899233332/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-18T21:30:39Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34943076505", + "type": "PullRequestEvent", + "actor": { + "id": 70122891, + "login": "SternXD", + "display_login": "SternXD", + "gravatar_id": "", + "url": "https://api.github.com/users/SternXD", + "avatar_url": "https://avatars.githubusercontent.com/u/70122891?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "closed", + "number": 577, + "pull_request": { + "url": "https://api.github.com/repos/SideStore/SideStore/pulls/577", + "id": 1684596047, + "node_id": "PR_kwDOHS0Hg85kaOVP", + "html_url": "https://github.com/SideStore/SideStore/pull/577", + "diff_url": "https://github.com/SideStore/SideStore/pull/577.diff", + "patch_url": "https://github.com/SideStore/SideStore/pull/577.patch", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/577", + "number": 577, + "state": "closed", + "locked": false, + "title": "build mdc", + "user": { + "login": "taicracker", + "id": 97887808, + "node_id": "U_kgDOBdWmQA", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "html_url": "https://github.com/taicracker", + "followers_url": "https://api.github.com/users/taicracker/followers", + "following_url": "https://api.github.com/users/taicracker/following{/other_user}", + "gists_url": "https://api.github.com/users/taicracker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/taicracker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/taicracker/subscriptions", + "organizations_url": "https://api.github.com/users/taicracker/orgs", + "repos_url": "https://api.github.com/users/taicracker/repos", + "events_url": "https://api.github.com/users/taicracker/events{/privacy}", + "received_events_url": "https://api.github.com/users/taicracker/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2024-01-18T10:40:57Z", + "updated_at": "2024-01-18T21:30:38Z", + "closed_at": "2024-01-18T21:30:38Z", + "merged_at": null, + "merge_commit_sha": "0a6080961cddaa39e37c7d943ee6b9ed0f39aca7", + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "JoeMatt", + "id": 399864, + "node_id": "MDQ6VXNlcjM5OTg2NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/399864?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JoeMatt", + "html_url": "https://github.com/JoeMatt", + "followers_url": "https://api.github.com/users/JoeMatt/followers", + "following_url": "https://api.github.com/users/JoeMatt/following{/other_user}", + "gists_url": "https://api.github.com/users/JoeMatt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoeMatt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoeMatt/subscriptions", + "organizations_url": "https://api.github.com/users/JoeMatt/orgs", + "repos_url": "https://api.github.com/users/JoeMatt/repos", + "events_url": "https://api.github.com/users/JoeMatt/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoeMatt/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "lonkelle", + "id": 5572600, + "node_id": "MDQ6VXNlcjU1NzI2MDA=", + "avatar_url": "https://avatars.githubusercontent.com/u/5572600?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lonkelle", + "html_url": "https://github.com/lonkelle", + "followers_url": "https://api.github.com/users/lonkelle/followers", + "following_url": "https://api.github.com/users/lonkelle/following{/other_user}", + "gists_url": "https://api.github.com/users/lonkelle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lonkelle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lonkelle/subscriptions", + "organizations_url": "https://api.github.com/users/lonkelle/orgs", + "repos_url": "https://api.github.com/users/lonkelle/repos", + "events_url": "https://api.github.com/users/lonkelle/events{/privacy}", + "received_events_url": "https://api.github.com/users/lonkelle/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "nythepegasus", + "id": 17764867, + "node_id": "MDQ6VXNlcjE3NzY0ODY3", + "avatar_url": "https://avatars.githubusercontent.com/u/17764867?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nythepegasus", + "html_url": "https://github.com/nythepegasus", + "followers_url": "https://api.github.com/users/nythepegasus/followers", + "following_url": "https://api.github.com/users/nythepegasus/following{/other_user}", + "gists_url": "https://api.github.com/users/nythepegasus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nythepegasus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nythepegasus/subscriptions", + "organizations_url": "https://api.github.com/users/nythepegasus/orgs", + "repos_url": "https://api.github.com/users/nythepegasus/repos", + "events_url": "https://api.github.com/users/nythepegasus/events{/privacy}", + "received_events_url": "https://api.github.com/users/nythepegasus/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "Spidy123222", + "id": 64176728, + "node_id": "MDQ6VXNlcjY0MTc2NzI4", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "html_url": "https://github.com/Spidy123222", + "followers_url": "https://api.github.com/users/Spidy123222/followers", + "following_url": "https://api.github.com/users/Spidy123222/following{/other_user}", + "gists_url": "https://api.github.com/users/Spidy123222/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Spidy123222/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Spidy123222/subscriptions", + "organizations_url": "https://api.github.com/users/Spidy123222/orgs", + "repos_url": "https://api.github.com/users/Spidy123222/repos", + "events_url": "https://api.github.com/users/Spidy123222/events{/privacy}", + "received_events_url": "https://api.github.com/users/Spidy123222/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "SternXD", + "id": 70122891, + "node_id": "MDQ6VXNlcjcwMTIyODkx", + "avatar_url": "https://avatars.githubusercontent.com/u/70122891?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SternXD", + "html_url": "https://github.com/SternXD", + "followers_url": "https://api.github.com/users/SternXD/followers", + "following_url": "https://api.github.com/users/SternXD/following{/other_user}", + "gists_url": "https://api.github.com/users/SternXD/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SternXD/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SternXD/subscriptions", + "organizations_url": "https://api.github.com/users/SternXD/orgs", + "repos_url": "https://api.github.com/users/SternXD/repos", + "events_url": "https://api.github.com/users/SternXD/events{/privacy}", + "received_events_url": "https://api.github.com/users/SternXD/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/SideStore/SideStore/pulls/577/commits", + "review_comments_url": "https://api.github.com/repos/SideStore/SideStore/pulls/577/comments", + "review_comment_url": "https://api.github.com/repos/SideStore/SideStore/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/577/comments", + "statuses_url": "https://api.github.com/repos/SideStore/SideStore/statuses/6cd9cfbc1ee9f36983d42bd2ba408562db0efbcb", + "head": { + "label": "taicracker:taicracker-mdc", + "ref": "taicracker-mdc", + "sha": "6cd9cfbc1ee9f36983d42bd2ba408562db0efbcb", + "user": { + "login": "taicracker", + "id": 97887808, + "node_id": "U_kgDOBdWmQA", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "html_url": "https://github.com/taicracker", + "followers_url": "https://api.github.com/users/taicracker/followers", + "following_url": "https://api.github.com/users/taicracker/following{/other_user}", + "gists_url": "https://api.github.com/users/taicracker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/taicracker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/taicracker/subscriptions", + "organizations_url": "https://api.github.com/users/taicracker/orgs", + "repos_url": "https://api.github.com/users/taicracker/repos", + "events_url": "https://api.github.com/users/taicracker/events{/privacy}", + "received_events_url": "https://api.github.com/users/taicracker/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 744942089, + "node_id": "R_kgDOLGbqCQ", + "name": "SideStore-MDC", + "full_name": "taicracker/SideStore-MDC", + "private": false, + "owner": { + "login": "taicracker", + "id": 97887808, + "node_id": "U_kgDOBdWmQA", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "html_url": "https://github.com/taicracker", + "followers_url": "https://api.github.com/users/taicracker/followers", + "following_url": "https://api.github.com/users/taicracker/following{/other_user}", + "gists_url": "https://api.github.com/users/taicracker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/taicracker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/taicracker/subscriptions", + "organizations_url": "https://api.github.com/users/taicracker/orgs", + "repos_url": "https://api.github.com/users/taicracker/repos", + "events_url": "https://api.github.com/users/taicracker/events{/privacy}", + "received_events_url": "https://api.github.com/users/taicracker/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/taicracker/SideStore-MDC", + "description": "SideStore is a fork of AltStore that doesn't require an AltServer.", + "fork": true, + "url": "https://api.github.com/repos/taicracker/SideStore-MDC", + "forks_url": "https://api.github.com/repos/taicracker/SideStore-MDC/forks", + "keys_url": "https://api.github.com/repos/taicracker/SideStore-MDC/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/taicracker/SideStore-MDC/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/taicracker/SideStore-MDC/teams", + "hooks_url": "https://api.github.com/repos/taicracker/SideStore-MDC/hooks", + "issue_events_url": "https://api.github.com/repos/taicracker/SideStore-MDC/issues/events{/number}", + "events_url": "https://api.github.com/repos/taicracker/SideStore-MDC/events", + "assignees_url": "https://api.github.com/repos/taicracker/SideStore-MDC/assignees{/user}", + "branches_url": "https://api.github.com/repos/taicracker/SideStore-MDC/branches{/branch}", + "tags_url": "https://api.github.com/repos/taicracker/SideStore-MDC/tags", + "blobs_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/taicracker/SideStore-MDC/statuses/{sha}", + "languages_url": "https://api.github.com/repos/taicracker/SideStore-MDC/languages", + "stargazers_url": "https://api.github.com/repos/taicracker/SideStore-MDC/stargazers", + "contributors_url": "https://api.github.com/repos/taicracker/SideStore-MDC/contributors", + "subscribers_url": "https://api.github.com/repos/taicracker/SideStore-MDC/subscribers", + "subscription_url": "https://api.github.com/repos/taicracker/SideStore-MDC/subscription", + "commits_url": "https://api.github.com/repos/taicracker/SideStore-MDC/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/taicracker/SideStore-MDC/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/taicracker/SideStore-MDC/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/taicracker/SideStore-MDC/contents/{+path}", + "compare_url": "https://api.github.com/repos/taicracker/SideStore-MDC/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/taicracker/SideStore-MDC/merges", + "archive_url": "https://api.github.com/repos/taicracker/SideStore-MDC/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/taicracker/SideStore-MDC/downloads", + "issues_url": "https://api.github.com/repos/taicracker/SideStore-MDC/issues{/number}", + "pulls_url": "https://api.github.com/repos/taicracker/SideStore-MDC/pulls{/number}", + "milestones_url": "https://api.github.com/repos/taicracker/SideStore-MDC/milestones{/number}", + "notifications_url": "https://api.github.com/repos/taicracker/SideStore-MDC/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/taicracker/SideStore-MDC/labels{/name}", + "releases_url": "https://api.github.com/repos/taicracker/SideStore-MDC/releases{/id}", + "deployments_url": "https://api.github.com/repos/taicracker/SideStore-MDC/deployments", + "created_at": "2024-01-18T10:16:18Z", + "updated_at": "2024-01-18T10:16:19Z", + "pushed_at": "2024-01-18T10:42:42Z", + "git_url": "git://github.com/taicracker/SideStore-MDC.git", + "ssh_url": "git@github.com:taicracker/SideStore-MDC.git", + "clone_url": "https://github.com/taicracker/SideStore-MDC.git", + "svn_url": "https://github.com/taicracker/SideStore-MDC", + "homepage": "", + "size": 154278, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop" + } + }, + "base": { + "label": "SideStore:develop", + "ref": "develop", + "sha": "b78707808de0e48c5edf102be0a7b18513928380", + "user": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 489490307, + "node_id": "R_kgDOHS0Hgw", + "name": "SideStore", + "full_name": "SideStore/SideStore", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/SideStore", + "description": "SideStore is a fork of AltStore that doesn't require an AltServer.", + "fork": true, + "url": "https://api.github.com/repos/SideStore/SideStore", + "forks_url": "https://api.github.com/repos/SideStore/SideStore/forks", + "keys_url": "https://api.github.com/repos/SideStore/SideStore/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/SideStore/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/SideStore/teams", + "hooks_url": "https://api.github.com/repos/SideStore/SideStore/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/SideStore/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/SideStore/events", + "assignees_url": "https://api.github.com/repos/SideStore/SideStore/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/SideStore/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/SideStore/tags", + "blobs_url": "https://api.github.com/repos/SideStore/SideStore/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/SideStore/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/SideStore/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/SideStore/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/SideStore/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/SideStore/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/SideStore/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/SideStore/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/SideStore/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/SideStore/subscription", + "commits_url": "https://api.github.com/repos/SideStore/SideStore/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/SideStore/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/SideStore/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/SideStore/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/SideStore/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/SideStore/merges", + "archive_url": "https://api.github.com/repos/SideStore/SideStore/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/SideStore/downloads", + "issues_url": "https://api.github.com/repos/SideStore/SideStore/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/SideStore/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/SideStore/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/SideStore/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/SideStore/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/SideStore/deployments", + "created_at": "2022-05-06T20:49:30Z", + "updated_at": "2024-01-18T20:27:24Z", + "pushed_at": "2024-01-18T10:42:43Z", + "git_url": "git://github.com/SideStore/SideStore.git", + "ssh_url": "git@github.com:SideStore/SideStore.git", + "clone_url": "https://github.com/SideStore/SideStore.git", + "svn_url": "https://github.com/SideStore/SideStore", + "homepage": "", + "size": 195260, + "stargazers_count": 1714, + "watchers_count": 1714, + "language": "Swift", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 122, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 117, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [ + "altstore", + "ios", + "sideload", + "sidestore" + ], + "visibility": "public", + "forks": 122, + "open_issues": 117, + "watchers": 1714, + "default_branch": "develop" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/SideStore/SideStore/pulls/577" + }, + "html": { + "href": "https://github.com/SideStore/SideStore/pull/577" + }, + "issue": { + "href": "https://api.github.com/repos/SideStore/SideStore/issues/577" + }, + "comments": { + "href": "https://api.github.com/repos/SideStore/SideStore/issues/577/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/SideStore/SideStore/pulls/577/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/SideStore/SideStore/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/SideStore/SideStore/pulls/577/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/SideStore/SideStore/statuses/6cd9cfbc1ee9f36983d42bd2ba408562db0efbcb" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": false, + "mergeable": true, + "rebaseable": false, + "mergeable_state": "clean", + "merged_by": null, + "comments": 1, + "review_comments": 0, + "maintainer_can_modify": false, + "commits": 3, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2024-01-18T21:30:39Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34942985233", + "type": "IssueCommentEvent", + "actor": { + "id": 70122891, + "login": "SternXD", + "display_login": "SternXD", + "gravatar_id": "", + "url": "https://api.github.com/users/SternXD", + "avatar_url": "https://avatars.githubusercontent.com/u/70122891?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/577", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/577/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/577/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/577/events", + "html_url": "https://github.com/SideStore/SideStore/pull/577", + "id": 2088004856, + "node_id": "PR_kwDOHS0Hg85kaOVP", + "number": 577, + "title": "build mdc", + "user": { + "login": "taicracker", + "id": 97887808, + "node_id": "U_kgDOBdWmQA", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "html_url": "https://github.com/taicracker", + "followers_url": "https://api.github.com/users/taicracker/followers", + "following_url": "https://api.github.com/users/taicracker/following{/other_user}", + "gists_url": "https://api.github.com/users/taicracker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/taicracker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/taicracker/subscriptions", + "organizations_url": "https://api.github.com/users/taicracker/orgs", + "repos_url": "https://api.github.com/users/taicracker/repos", + "events_url": "https://api.github.com/users/taicracker/events{/privacy}", + "received_events_url": "https://api.github.com/users/taicracker/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2024-01-18T10:40:57Z", + "updated_at": "2024-01-18T21:26:20Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "draft": false, + "pull_request": { + "url": "https://api.github.com/repos/SideStore/SideStore/pulls/577", + "html_url": "https://github.com/SideStore/SideStore/pull/577", + "diff_url": "https://github.com/SideStore/SideStore/pull/577.diff", + "patch_url": "https://github.com/SideStore/SideStore/pull/577.patch", + "merged_at": null + }, + "body": null, + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/577/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/577/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1899228277", + "html_url": "https://github.com/SideStore/SideStore/pull/577#issuecomment-1899228277", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/577", + "id": 1899228277, + "node_id": "IC_kwDOHS0Hg85xM-x1", + "user": { + "login": "SternXD", + "id": 70122891, + "node_id": "MDQ6VXNlcjcwMTIyODkx", + "avatar_url": "https://avatars.githubusercontent.com/u/70122891?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SternXD", + "html_url": "https://github.com/SternXD", + "followers_url": "https://api.github.com/users/SternXD/followers", + "following_url": "https://api.github.com/users/SternXD/following{/other_user}", + "gists_url": "https://api.github.com/users/SternXD/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SternXD/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SternXD/subscriptions", + "organizations_url": "https://api.github.com/users/SternXD/orgs", + "repos_url": "https://api.github.com/users/SternXD/repos", + "events_url": "https://api.github.com/users/SternXD/events{/privacy}", + "received_events_url": "https://api.github.com/users/SternXD/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-18T21:26:19Z", + "updated_at": "2024-01-18T21:26:19Z", + "author_association": "MEMBER", + "body": "Could you add more information of what you are trying to do?", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1899228277/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-18T21:26:20Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34941699858", + "type": "WatchEvent", + "actor": { + "id": 18141838, + "login": "atylo", + "display_login": "atylo", + "gravatar_id": "", + "url": "https://api.github.com/users/atylo", + "avatar_url": "https://avatars.githubusercontent.com/u/18141838?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-18T20:27:24Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34933905592", + "type": "WatchEvent", + "actor": { + "id": 112828418, + "login": "HephaestusDingle", + "display_login": "HephaestusDingle", + "gravatar_id": "", + "url": "https://api.github.com/users/HephaestusDingle", + "avatar_url": "https://avatars.githubusercontent.com/u/112828418?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-18T15:34:59Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34928117377", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16693293107, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "96e60a99c3b97ddf517f0fae3a4de561ea026547", + "before": "b8dd103c8bd3d53bc8c4faf426402e5a28f8c64e", + "commits": [ + { + "sha": "96e60a99c3b97ddf517f0fae3a4de561ea026547", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/96e60a99c3b97ddf517f0fae3a4de561ea026547" + } + ] + }, + "public": true, + "created_at": "2024-01-18T12:35:34Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34926831875", + "type": "IssueCommentEvent", + "actor": { + "id": 157019759, + "login": "3xMMike", + "display_login": "3xMMike", + "gravatar_id": "", + "url": "https://api.github.com/users/3xMMike", + "avatar_url": "https://avatars.githubusercontent.com/u/157019759?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/574", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/574/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/574/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/574/events", + "html_url": "https://github.com/SideStore/SideStore/issues/574", + "id": 2075844013, + "node_id": "I_kwDOHS0Hg857ut2t", + "number": 574, + "title": "[BUG] Failed to Log In An error occurred when getting anisette data from a V3 server: Couldn't fetch client info. The server may be down (The request timed out.). Please try again. If the issue persists, report it on GitHub Issues!", + "user": { + "login": "amrpyt", + "id": 77219001, + "node_id": "MDQ6VXNlcjc3MjE5MDAx", + "avatar_url": "https://avatars.githubusercontent.com/u/77219001?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/amrpyt", + "html_url": "https://github.com/amrpyt", + "followers_url": "https://api.github.com/users/amrpyt/followers", + "following_url": "https://api.github.com/users/amrpyt/following{/other_user}", + "gists_url": "https://api.github.com/users/amrpyt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/amrpyt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/amrpyt/subscriptions", + "organizations_url": "https://api.github.com/users/amrpyt/orgs", + "repos_url": "https://api.github.com/users/amrpyt/repos", + "events_url": "https://api.github.com/users/amrpyt/events{/privacy}", + "received_events_url": "https://api.github.com/users/amrpyt/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2024-01-11T06:19:14Z", + "updated_at": "2024-01-18T11:50:34Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\r\n\r\n**im Sure that my apple email and password are correct, i try to turn off the vpn, connect to the pc, nothing work. and i got this error:**\r\n\r\nFailed to Log In\r\nAn error occurred when getting anisette data from a V3 server: Couldn't fetch client info. The server may be down (The request timed out.).\r\nPlease try again. If the issue persists, report it on GitHub Issues!\r\n\r\n![IMG_0902](https://github.com/SideStore/SideStore/assets/77219001/cfebb5fd-3bfb-4daa-9c3b-8c7cb087b5cb)\r\n\r\n\r\n### What version of SideStore are you using?\r\n\r\n0.5.4\r\n\r\n### Other info\r\n\r\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/574/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/574/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1898332588", + "html_url": "https://github.com/SideStore/SideStore/issues/574#issuecomment-1898332588", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/574", + "id": 1898332588, + "node_id": "IC_kwDOHS0Hg85xJkGs", + "user": { + "login": "3xMMike", + "id": 157019759, + "node_id": "U_kgDOCVvubw", + "avatar_url": "https://avatars.githubusercontent.com/u/157019759?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/3xMMike", + "html_url": "https://github.com/3xMMike", + "followers_url": "https://api.github.com/users/3xMMike/followers", + "following_url": "https://api.github.com/users/3xMMike/following{/other_user}", + "gists_url": "https://api.github.com/users/3xMMike/gists{/gist_id}", + "starred_url": "https://api.github.com/users/3xMMike/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/3xMMike/subscriptions", + "organizations_url": "https://api.github.com/users/3xMMike/orgs", + "repos_url": "https://api.github.com/users/3xMMike/repos", + "events_url": "https://api.github.com/users/3xMMike/events{/privacy}", + "received_events_url": "https://api.github.com/users/3xMMike/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-18T11:50:33Z", + "updated_at": "2024-01-18T11:50:33Z", + "author_association": "NONE", + "body": "I have the same problem, I don't know what to do about it", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1898332588/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-18T11:50:34Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34925898388", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16692173628, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "b8dd103c8bd3d53bc8c4faf426402e5a28f8c64e", + "before": "818e7ec1b253b64aea4146f6cbfdc4899c3f964b", + "commits": [ + { + "sha": "b8dd103c8bd3d53bc8c4faf426402e5a28f8c64e", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/b8dd103c8bd3d53bc8c4faf426402e5a28f8c64e" + } + ] + }, + "public": true, + "created_at": "2024-01-18T11:16:06Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34924888733", + "type": "PullRequestEvent", + "actor": { + "id": 97887808, + "login": "taicracker", + "display_login": "taicracker", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "opened", + "number": 577, + "pull_request": { + "url": "https://api.github.com/repos/SideStore/SideStore/pulls/577", + "id": 1684596047, + "node_id": "PR_kwDOHS0Hg85kaOVP", + "html_url": "https://github.com/SideStore/SideStore/pull/577", + "diff_url": "https://github.com/SideStore/SideStore/pull/577.diff", + "patch_url": "https://github.com/SideStore/SideStore/pull/577.patch", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/577", + "number": 577, + "state": "open", + "locked": false, + "title": "build mdc", + "user": { + "login": "taicracker", + "id": 97887808, + "node_id": "U_kgDOBdWmQA", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "html_url": "https://github.com/taicracker", + "followers_url": "https://api.github.com/users/taicracker/followers", + "following_url": "https://api.github.com/users/taicracker/following{/other_user}", + "gists_url": "https://api.github.com/users/taicracker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/taicracker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/taicracker/subscriptions", + "organizations_url": "https://api.github.com/users/taicracker/orgs", + "repos_url": "https://api.github.com/users/taicracker/repos", + "events_url": "https://api.github.com/users/taicracker/events{/privacy}", + "received_events_url": "https://api.github.com/users/taicracker/received_events", + "type": "User", + "site_admin": false + }, + "body": null, + "created_at": "2024-01-18T10:40:57Z", + "updated_at": "2024-01-18T10:40:58Z", + "closed_at": null, + "merged_at": null, + "merge_commit_sha": null, + "assignee": null, + "assignees": [], + "requested_reviewers": [ + { + "login": "JoeMatt", + "id": 399864, + "node_id": "MDQ6VXNlcjM5OTg2NA==", + "avatar_url": "https://avatars.githubusercontent.com/u/399864?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/JoeMatt", + "html_url": "https://github.com/JoeMatt", + "followers_url": "https://api.github.com/users/JoeMatt/followers", + "following_url": "https://api.github.com/users/JoeMatt/following{/other_user}", + "gists_url": "https://api.github.com/users/JoeMatt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/JoeMatt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/JoeMatt/subscriptions", + "organizations_url": "https://api.github.com/users/JoeMatt/orgs", + "repos_url": "https://api.github.com/users/JoeMatt/repos", + "events_url": "https://api.github.com/users/JoeMatt/events{/privacy}", + "received_events_url": "https://api.github.com/users/JoeMatt/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "lonkelle", + "id": 5572600, + "node_id": "MDQ6VXNlcjU1NzI2MDA=", + "avatar_url": "https://avatars.githubusercontent.com/u/5572600?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/lonkelle", + "html_url": "https://github.com/lonkelle", + "followers_url": "https://api.github.com/users/lonkelle/followers", + "following_url": "https://api.github.com/users/lonkelle/following{/other_user}", + "gists_url": "https://api.github.com/users/lonkelle/gists{/gist_id}", + "starred_url": "https://api.github.com/users/lonkelle/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/lonkelle/subscriptions", + "organizations_url": "https://api.github.com/users/lonkelle/orgs", + "repos_url": "https://api.github.com/users/lonkelle/repos", + "events_url": "https://api.github.com/users/lonkelle/events{/privacy}", + "received_events_url": "https://api.github.com/users/lonkelle/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "nythepegasus", + "id": 17764867, + "node_id": "MDQ6VXNlcjE3NzY0ODY3", + "avatar_url": "https://avatars.githubusercontent.com/u/17764867?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nythepegasus", + "html_url": "https://github.com/nythepegasus", + "followers_url": "https://api.github.com/users/nythepegasus/followers", + "following_url": "https://api.github.com/users/nythepegasus/following{/other_user}", + "gists_url": "https://api.github.com/users/nythepegasus/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nythepegasus/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nythepegasus/subscriptions", + "organizations_url": "https://api.github.com/users/nythepegasus/orgs", + "repos_url": "https://api.github.com/users/nythepegasus/repos", + "events_url": "https://api.github.com/users/nythepegasus/events{/privacy}", + "received_events_url": "https://api.github.com/users/nythepegasus/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "Spidy123222", + "id": 64176728, + "node_id": "MDQ6VXNlcjY0MTc2NzI4", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "html_url": "https://github.com/Spidy123222", + "followers_url": "https://api.github.com/users/Spidy123222/followers", + "following_url": "https://api.github.com/users/Spidy123222/following{/other_user}", + "gists_url": "https://api.github.com/users/Spidy123222/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Spidy123222/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Spidy123222/subscriptions", + "organizations_url": "https://api.github.com/users/Spidy123222/orgs", + "repos_url": "https://api.github.com/users/Spidy123222/repos", + "events_url": "https://api.github.com/users/Spidy123222/events{/privacy}", + "received_events_url": "https://api.github.com/users/Spidy123222/received_events", + "type": "User", + "site_admin": false + }, + { + "login": "SternXD", + "id": 70122891, + "node_id": "MDQ6VXNlcjcwMTIyODkx", + "avatar_url": "https://avatars.githubusercontent.com/u/70122891?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SternXD", + "html_url": "https://github.com/SternXD", + "followers_url": "https://api.github.com/users/SternXD/followers", + "following_url": "https://api.github.com/users/SternXD/following{/other_user}", + "gists_url": "https://api.github.com/users/SternXD/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SternXD/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SternXD/subscriptions", + "organizations_url": "https://api.github.com/users/SternXD/orgs", + "repos_url": "https://api.github.com/users/SternXD/repos", + "events_url": "https://api.github.com/users/SternXD/events{/privacy}", + "received_events_url": "https://api.github.com/users/SternXD/received_events", + "type": "User", + "site_admin": false + } + ], + "requested_teams": [], + "labels": [], + "milestone": null, + "draft": false, + "commits_url": "https://api.github.com/repos/SideStore/SideStore/pulls/577/commits", + "review_comments_url": "https://api.github.com/repos/SideStore/SideStore/pulls/577/comments", + "review_comment_url": "https://api.github.com/repos/SideStore/SideStore/pulls/comments{/number}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/577/comments", + "statuses_url": "https://api.github.com/repos/SideStore/SideStore/statuses/7494deb50bb78d974b6b31ea6ed1c0eacff47e47", + "head": { + "label": "taicracker:taicracker-mdc", + "ref": "taicracker-mdc", + "sha": "7494deb50bb78d974b6b31ea6ed1c0eacff47e47", + "user": { + "login": "taicracker", + "id": 97887808, + "node_id": "U_kgDOBdWmQA", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "html_url": "https://github.com/taicracker", + "followers_url": "https://api.github.com/users/taicracker/followers", + "following_url": "https://api.github.com/users/taicracker/following{/other_user}", + "gists_url": "https://api.github.com/users/taicracker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/taicracker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/taicracker/subscriptions", + "organizations_url": "https://api.github.com/users/taicracker/orgs", + "repos_url": "https://api.github.com/users/taicracker/repos", + "events_url": "https://api.github.com/users/taicracker/events{/privacy}", + "received_events_url": "https://api.github.com/users/taicracker/received_events", + "type": "User", + "site_admin": false + }, + "repo": { + "id": 744942089, + "node_id": "R_kgDOLGbqCQ", + "name": "SideStore-MDC", + "full_name": "taicracker/SideStore-MDC", + "private": false, + "owner": { + "login": "taicracker", + "id": 97887808, + "node_id": "U_kgDOBdWmQA", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "html_url": "https://github.com/taicracker", + "followers_url": "https://api.github.com/users/taicracker/followers", + "following_url": "https://api.github.com/users/taicracker/following{/other_user}", + "gists_url": "https://api.github.com/users/taicracker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/taicracker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/taicracker/subscriptions", + "organizations_url": "https://api.github.com/users/taicracker/orgs", + "repos_url": "https://api.github.com/users/taicracker/repos", + "events_url": "https://api.github.com/users/taicracker/events{/privacy}", + "received_events_url": "https://api.github.com/users/taicracker/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/taicracker/SideStore-MDC", + "description": "SideStore is a fork of AltStore that doesn't require an AltServer.", + "fork": true, + "url": "https://api.github.com/repos/taicracker/SideStore-MDC", + "forks_url": "https://api.github.com/repos/taicracker/SideStore-MDC/forks", + "keys_url": "https://api.github.com/repos/taicracker/SideStore-MDC/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/taicracker/SideStore-MDC/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/taicracker/SideStore-MDC/teams", + "hooks_url": "https://api.github.com/repos/taicracker/SideStore-MDC/hooks", + "issue_events_url": "https://api.github.com/repos/taicracker/SideStore-MDC/issues/events{/number}", + "events_url": "https://api.github.com/repos/taicracker/SideStore-MDC/events", + "assignees_url": "https://api.github.com/repos/taicracker/SideStore-MDC/assignees{/user}", + "branches_url": "https://api.github.com/repos/taicracker/SideStore-MDC/branches{/branch}", + "tags_url": "https://api.github.com/repos/taicracker/SideStore-MDC/tags", + "blobs_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/taicracker/SideStore-MDC/statuses/{sha}", + "languages_url": "https://api.github.com/repos/taicracker/SideStore-MDC/languages", + "stargazers_url": "https://api.github.com/repos/taicracker/SideStore-MDC/stargazers", + "contributors_url": "https://api.github.com/repos/taicracker/SideStore-MDC/contributors", + "subscribers_url": "https://api.github.com/repos/taicracker/SideStore-MDC/subscribers", + "subscription_url": "https://api.github.com/repos/taicracker/SideStore-MDC/subscription", + "commits_url": "https://api.github.com/repos/taicracker/SideStore-MDC/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/taicracker/SideStore-MDC/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/taicracker/SideStore-MDC/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/taicracker/SideStore-MDC/contents/{+path}", + "compare_url": "https://api.github.com/repos/taicracker/SideStore-MDC/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/taicracker/SideStore-MDC/merges", + "archive_url": "https://api.github.com/repos/taicracker/SideStore-MDC/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/taicracker/SideStore-MDC/downloads", + "issues_url": "https://api.github.com/repos/taicracker/SideStore-MDC/issues{/number}", + "pulls_url": "https://api.github.com/repos/taicracker/SideStore-MDC/pulls{/number}", + "milestones_url": "https://api.github.com/repos/taicracker/SideStore-MDC/milestones{/number}", + "notifications_url": "https://api.github.com/repos/taicracker/SideStore-MDC/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/taicracker/SideStore-MDC/labels{/name}", + "releases_url": "https://api.github.com/repos/taicracker/SideStore-MDC/releases{/id}", + "deployments_url": "https://api.github.com/repos/taicracker/SideStore-MDC/deployments", + "created_at": "2024-01-18T10:16:18Z", + "updated_at": "2024-01-18T10:16:19Z", + "pushed_at": "2024-01-18T10:24:18Z", + "git_url": "git://github.com/taicracker/SideStore-MDC.git", + "ssh_url": "git@github.com:taicracker/SideStore-MDC.git", + "clone_url": "https://github.com/taicracker/SideStore-MDC.git", + "svn_url": "https://github.com/taicracker/SideStore-MDC", + "homepage": "", + "size": 195260, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "develop" + } + }, + "base": { + "label": "SideStore:develop", + "ref": "develop", + "sha": "b78707808de0e48c5edf102be0a7b18513928380", + "user": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "repo": { + "id": 489490307, + "node_id": "R_kgDOHS0Hgw", + "name": "SideStore", + "full_name": "SideStore/SideStore", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/SideStore", + "description": "SideStore is a fork of AltStore that doesn't require an AltServer.", + "fork": true, + "url": "https://api.github.com/repos/SideStore/SideStore", + "forks_url": "https://api.github.com/repos/SideStore/SideStore/forks", + "keys_url": "https://api.github.com/repos/SideStore/SideStore/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/SideStore/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/SideStore/teams", + "hooks_url": "https://api.github.com/repos/SideStore/SideStore/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/SideStore/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/SideStore/events", + "assignees_url": "https://api.github.com/repos/SideStore/SideStore/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/SideStore/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/SideStore/tags", + "blobs_url": "https://api.github.com/repos/SideStore/SideStore/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/SideStore/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/SideStore/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/SideStore/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/SideStore/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/SideStore/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/SideStore/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/SideStore/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/SideStore/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/SideStore/subscription", + "commits_url": "https://api.github.com/repos/SideStore/SideStore/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/SideStore/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/SideStore/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/SideStore/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/SideStore/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/SideStore/merges", + "archive_url": "https://api.github.com/repos/SideStore/SideStore/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/SideStore/downloads", + "issues_url": "https://api.github.com/repos/SideStore/SideStore/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/SideStore/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/SideStore/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/SideStore/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/SideStore/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/SideStore/deployments", + "created_at": "2022-05-06T20:49:30Z", + "updated_at": "2024-01-16T17:32:10Z", + "pushed_at": "2024-01-18T10:40:58Z", + "git_url": "git://github.com/SideStore/SideStore.git", + "ssh_url": "git@github.com:SideStore/SideStore.git", + "clone_url": "https://github.com/SideStore/SideStore.git", + "svn_url": "https://github.com/SideStore/SideStore", + "homepage": "", + "size": 195260, + "stargazers_count": 1712, + "watchers_count": 1712, + "language": "Swift", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 122, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 118, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [ + "altstore", + "ios", + "sideload", + "sidestore" + ], + "visibility": "public", + "forks": 122, + "open_issues": 118, + "watchers": 1712, + "default_branch": "develop" + } + }, + "_links": { + "self": { + "href": "https://api.github.com/repos/SideStore/SideStore/pulls/577" + }, + "html": { + "href": "https://github.com/SideStore/SideStore/pull/577" + }, + "issue": { + "href": "https://api.github.com/repos/SideStore/SideStore/issues/577" + }, + "comments": { + "href": "https://api.github.com/repos/SideStore/SideStore/issues/577/comments" + }, + "review_comments": { + "href": "https://api.github.com/repos/SideStore/SideStore/pulls/577/comments" + }, + "review_comment": { + "href": "https://api.github.com/repos/SideStore/SideStore/pulls/comments{/number}" + }, + "commits": { + "href": "https://api.github.com/repos/SideStore/SideStore/pulls/577/commits" + }, + "statuses": { + "href": "https://api.github.com/repos/SideStore/SideStore/statuses/7494deb50bb78d974b6b31ea6ed1c0eacff47e47" + } + }, + "author_association": "NONE", + "auto_merge": null, + "active_lock_reason": null, + "merged": false, + "mergeable": null, + "rebaseable": null, + "mergeable_state": "unknown", + "merged_by": null, + "comments": 0, + "review_comments": 0, + "maintainer_can_modify": true, + "commits": 2, + "additions": 1, + "deletions": 1, + "changed_files": 1 + } + }, + "public": true, + "created_at": "2024-01-18T10:40:59Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34924131048", + "type": "ForkEvent", + "actor": { + "id": 97887808, + "login": "taicracker", + "display_login": "taicracker", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "forkee": { + "id": 744942089, + "node_id": "R_kgDOLGbqCQ", + "name": "SideStore-MDC", + "full_name": "taicracker/SideStore-MDC", + "private": false, + "owner": { + "login": "taicracker", + "id": 97887808, + "node_id": "U_kgDOBdWmQA", + "avatar_url": "https://avatars.githubusercontent.com/u/97887808?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/taicracker", + "html_url": "https://github.com/taicracker", + "followers_url": "https://api.github.com/users/taicracker/followers", + "following_url": "https://api.github.com/users/taicracker/following{/other_user}", + "gists_url": "https://api.github.com/users/taicracker/gists{/gist_id}", + "starred_url": "https://api.github.com/users/taicracker/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/taicracker/subscriptions", + "organizations_url": "https://api.github.com/users/taicracker/orgs", + "repos_url": "https://api.github.com/users/taicracker/repos", + "events_url": "https://api.github.com/users/taicracker/events{/privacy}", + "received_events_url": "https://api.github.com/users/taicracker/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/taicracker/SideStore-MDC", + "description": "SideStore is a fork of AltStore that doesn't require an AltServer.", + "fork": true, + "url": "https://api.github.com/repos/taicracker/SideStore-MDC", + "forks_url": "https://api.github.com/repos/taicracker/SideStore-MDC/forks", + "keys_url": "https://api.github.com/repos/taicracker/SideStore-MDC/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/taicracker/SideStore-MDC/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/taicracker/SideStore-MDC/teams", + "hooks_url": "https://api.github.com/repos/taicracker/SideStore-MDC/hooks", + "issue_events_url": "https://api.github.com/repos/taicracker/SideStore-MDC/issues/events{/number}", + "events_url": "https://api.github.com/repos/taicracker/SideStore-MDC/events", + "assignees_url": "https://api.github.com/repos/taicracker/SideStore-MDC/assignees{/user}", + "branches_url": "https://api.github.com/repos/taicracker/SideStore-MDC/branches{/branch}", + "tags_url": "https://api.github.com/repos/taicracker/SideStore-MDC/tags", + "blobs_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/taicracker/SideStore-MDC/statuses/{sha}", + "languages_url": "https://api.github.com/repos/taicracker/SideStore-MDC/languages", + "stargazers_url": "https://api.github.com/repos/taicracker/SideStore-MDC/stargazers", + "contributors_url": "https://api.github.com/repos/taicracker/SideStore-MDC/contributors", + "subscribers_url": "https://api.github.com/repos/taicracker/SideStore-MDC/subscribers", + "subscription_url": "https://api.github.com/repos/taicracker/SideStore-MDC/subscription", + "commits_url": "https://api.github.com/repos/taicracker/SideStore-MDC/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/taicracker/SideStore-MDC/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/taicracker/SideStore-MDC/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/taicracker/SideStore-MDC/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/taicracker/SideStore-MDC/contents/{+path}", + "compare_url": "https://api.github.com/repos/taicracker/SideStore-MDC/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/taicracker/SideStore-MDC/merges", + "archive_url": "https://api.github.com/repos/taicracker/SideStore-MDC/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/taicracker/SideStore-MDC/downloads", + "issues_url": "https://api.github.com/repos/taicracker/SideStore-MDC/issues{/number}", + "pulls_url": "https://api.github.com/repos/taicracker/SideStore-MDC/pulls{/number}", + "milestones_url": "https://api.github.com/repos/taicracker/SideStore-MDC/milestones{/number}", + "notifications_url": "https://api.github.com/repos/taicracker/SideStore-MDC/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/taicracker/SideStore-MDC/labels{/name}", + "releases_url": "https://api.github.com/repos/taicracker/SideStore-MDC/releases{/id}", + "deployments_url": "https://api.github.com/repos/taicracker/SideStore-MDC/deployments", + "created_at": "2024-01-18T10:16:18Z", + "updated_at": "2024-01-18T10:16:19Z", + "pushed_at": "2024-01-13T03:08:04Z", + "git_url": "git://github.com/taicracker/SideStore-MDC.git", + "ssh_url": "git@github.com:taicracker/SideStore-MDC.git", + "clone_url": "https://github.com/taicracker/SideStore-MDC.git", + "svn_url": "https://github.com/taicracker/SideStore-MDC", + "homepage": "", + "size": 195260, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "public": true + } + }, + "public": true, + "created_at": "2024-01-18T10:16:19Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34880099949", + "type": "ForkEvent", + "actor": { + "id": 123142443, + "login": "sternxdorg", + "display_login": "sternxdorg", + "gravatar_id": "", + "url": "https://api.github.com/users/sternxdorg", + "avatar_url": "https://avatars.githubusercontent.com/u/123142443?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "forkee": { + "id": 744288284, + "node_id": "R_kgDOLFzwHA", + "name": "sidestore.github.io", + "full_name": "sternxdorg/sidestore.github.io", + "private": false, + "owner": { + "login": "sternxdorg", + "id": 123142443, + "node_id": "O_kgDOB1cBKw", + "avatar_url": "https://avatars.githubusercontent.com/u/123142443?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/sternxdorg", + "html_url": "https://github.com/sternxdorg", + "followers_url": "https://api.github.com/users/sternxdorg/followers", + "following_url": "https://api.github.com/users/sternxdorg/following{/other_user}", + "gists_url": "https://api.github.com/users/sternxdorg/gists{/gist_id}", + "starred_url": "https://api.github.com/users/sternxdorg/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/sternxdorg/subscriptions", + "organizations_url": "https://api.github.com/users/sternxdorg/orgs", + "repos_url": "https://api.github.com/users/sternxdorg/repos", + "events_url": "https://api.github.com/users/sternxdorg/events{/privacy}", + "received_events_url": "https://api.github.com/users/sternxdorg/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/sternxdorg/sidestore.github.io", + "description": "https://sidestore.io", + "fork": true, + "url": "https://api.github.com/repos/sternxdorg/sidestore.github.io", + "forks_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/forks", + "keys_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/teams", + "hooks_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/events", + "assignees_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/tags", + "blobs_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/languages", + "stargazers_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/subscription", + "commits_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/merges", + "archive_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/downloads", + "issues_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/sternxdorg/sidestore.github.io/deployments", + "created_at": "2024-01-17T01:41:28Z", + "updated_at": "2024-01-17T01:41:28Z", + "pushed_at": "2023-10-07T10:37:53Z", + "git_url": "git://github.com/sternxdorg/sidestore.github.io.git", + "ssh_url": "git@github.com:sternxdorg/sidestore.github.io.git", + "clone_url": "https://github.com/sternxdorg/sidestore.github.io.git", + "svn_url": "https://github.com/sternxdorg/sidestore.github.io", + "homepage": null, + "size": 6859, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "public": true + } + }, + "public": true, + "created_at": "2024-01-17T01:41:28Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34876867691", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16667405301, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "818e7ec1b253b64aea4146f6cbfdc4899c3f964b", + "before": "db4a2e1dbbc397fda7badc23c1e31e49749f0699", + "commits": [ + { + "sha": "818e7ec1b253b64aea4146f6cbfdc4899c3f964b", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/818e7ec1b253b64aea4146f6cbfdc4899c3f964b" + } + ] + }, + "public": true, + "created_at": "2024-01-16T22:18:10Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34876668618", + "type": "IssuesEvent", + "actor": { + "id": 69532417, + "login": "jimmysofat6864", + "display_login": "jimmysofat6864", + "gravatar_id": "", + "url": "https://api.github.com/users/jimmysofat6864", + "avatar_url": "https://avatars.githubusercontent.com/u/69532417?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/576", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/576/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/576/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/576/events", + "html_url": "https://github.com/SideStore/SideStore/issues/576", + "id": 2085049426, + "node_id": "I_kwDOHS0Hg858R1RS", + "number": 576, + "title": "[BUG] App updates not showing for both SideStore and other Repos", + "user": { + "login": "jimmysofat6864", + "id": 69532417, + "node_id": "MDQ6VXNlcjY5NTMyNDE3", + "avatar_url": "https://avatars.githubusercontent.com/u/69532417?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/jimmysofat6864", + "html_url": "https://github.com/jimmysofat6864", + "followers_url": "https://api.github.com/users/jimmysofat6864/followers", + "following_url": "https://api.github.com/users/jimmysofat6864/following{/other_user}", + "gists_url": "https://api.github.com/users/jimmysofat6864/gists{/gist_id}", + "starred_url": "https://api.github.com/users/jimmysofat6864/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/jimmysofat6864/subscriptions", + "organizations_url": "https://api.github.com/users/jimmysofat6864/orgs", + "repos_url": "https://api.github.com/users/jimmysofat6864/repos", + "events_url": "https://api.github.com/users/jimmysofat6864/events{/privacy}", + "received_events_url": "https://api.github.com/users/jimmysofat6864/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2024-01-16T22:08:21Z", + "updated_at": "2024-01-16T22:08:21Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\n\nFor reference, I have the uYouEnhanced repo added to SideStore but for the majority of the time, it fails to display an available update and shows no update available even though there is clearly an update available both on the repo and when I go to refresh uYouEnhanced, the update shows up. But once the app crashes after refreshing and I go back into the app, the update is gone. \n\n### Instructions to reproduce\n\n1. Install an AltStore source\r\n2. Install/Have older version of app installed\r\n3. See that update doesn't show but at the bottom of the screen sometimes there is a \"1\" badge on top of the \"my apps\" tab at the bottom of the screen. \n\n### What version of SideStore are you using?\n\n0.5.4\n\n### Other info\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/576/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/576/timeline", + "performed_via_github_app": null, + "state_reason": null + } + }, + "public": true, + "created_at": "2024-01-16T22:08:22Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34865065347", + "type": "WatchEvent", + "actor": { + "id": 94870997, + "login": "MattTheTekie", + "display_login": "MattTheTekie", + "gravatar_id": "", + "url": "https://api.github.com/users/MattTheTekie", + "avatar_url": "https://avatars.githubusercontent.com/u/94870997?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-16T14:52:08Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34857211920", + "type": "WatchEvent", + "actor": { + "id": 149210399, + "login": "Michael-John-Fedun", + "display_login": "Michael-John-Fedun", + "gravatar_id": "", + "url": "https://api.github.com/users/Michael-John-Fedun", + "avatar_url": "https://avatars.githubusercontent.com/u/149210399?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-16T10:33:50Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34842187925", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16649439422, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "db4a2e1dbbc397fda7badc23c1e31e49749f0699", + "before": "beb0a07aab4b05080539b2fabfeef710b17f4b11", + "commits": [ + { + "sha": "db4a2e1dbbc397fda7badc23c1e31e49749f0699", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/db4a2e1dbbc397fda7badc23c1e31e49749f0699" + } + ] + }, + "public": true, + "created_at": "2024-01-15T20:19:22Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34841735752", + "type": "IssueCommentEvent", + "actor": { + "id": 34838617, + "login": "yugansh77", + "display_login": "yugansh77", + "gravatar_id": "", + "url": "https://api.github.com/users/yugansh77", + "avatar_url": "https://avatars.githubusercontent.com/u/34838617?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/519", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/events", + "html_url": "https://github.com/SideStore/SideStore/issues/519", + "id": 1964401697, + "node_id": "I_kwDOHS0Hg851FmQh", + "number": 519, + "title": "Unable to connect to the device, make sure Wireguard is enabled and you're connected to WiFi", + "user": { + "login": "Zgm1020", + "id": 55151533, + "node_id": "MDQ6VXNlcjU1MTUxNTMz", + "avatar_url": "https://avatars.githubusercontent.com/u/55151533?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Zgm1020", + "html_url": "https://github.com/Zgm1020", + "followers_url": "https://api.github.com/users/Zgm1020/followers", + "following_url": "https://api.github.com/users/Zgm1020/following{/other_user}", + "gists_url": "https://api.github.com/users/Zgm1020/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Zgm1020/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Zgm1020/subscriptions", + "organizations_url": "https://api.github.com/users/Zgm1020/orgs", + "repos_url": "https://api.github.com/users/Zgm1020/repos", + "events_url": "https://api.github.com/users/Zgm1020/events{/privacy}", + "received_events_url": "https://api.github.com/users/Zgm1020/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "naturecodevoid", + "id": 44983869, + "node_id": "MDQ6VXNlcjQ0OTgzODY5", + "avatar_url": "https://avatars.githubusercontent.com/u/44983869?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/naturecodevoid", + "html_url": "https://github.com/naturecodevoid", + "followers_url": "https://api.github.com/users/naturecodevoid/followers", + "following_url": "https://api.github.com/users/naturecodevoid/following{/other_user}", + "gists_url": "https://api.github.com/users/naturecodevoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/naturecodevoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/naturecodevoid/subscriptions", + "organizations_url": "https://api.github.com/users/naturecodevoid/orgs", + "repos_url": "https://api.github.com/users/naturecodevoid/repos", + "events_url": "https://api.github.com/users/naturecodevoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/naturecodevoid/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "naturecodevoid", + "id": 44983869, + "node_id": "MDQ6VXNlcjQ0OTgzODY5", + "avatar_url": "https://avatars.githubusercontent.com/u/44983869?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/naturecodevoid", + "html_url": "https://github.com/naturecodevoid", + "followers_url": "https://api.github.com/users/naturecodevoid/followers", + "following_url": "https://api.github.com/users/naturecodevoid/following{/other_user}", + "gists_url": "https://api.github.com/users/naturecodevoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/naturecodevoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/naturecodevoid/subscriptions", + "organizations_url": "https://api.github.com/users/naturecodevoid/orgs", + "repos_url": "https://api.github.com/users/naturecodevoid/repos", + "events_url": "https://api.github.com/users/naturecodevoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/naturecodevoid/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 12, + "created_at": "2023-10-26T21:34:17Z", + "updated_at": "2024-01-15T19:54:17Z", + "closed_at": "2023-10-27T23:48:18Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\n\niOS 16.3.1 This problem occurs when the newly installed SideStore is opened. Both wifi and WireGuard are turned on and cannot be connected.\n\n### Instructions to reproduce\n\n05:22:23 [INFO] minimuxer::muxer: Logger initialized!!\r\n05:22:23 [INFO] minimuxer::muxer: minimuxer has started!\r\n05:22:23 [INFO] minimuxer::muxer: Starting listener\r\n05:22:23 [INFO] minimuxer::mounter: Starting image mounter\r\n05:22:23 [INFO] minimuxer::heartbeat: Starting heartbeat thread\r\n05:22:26 [INFO] minimuxer: minimuxer is not ready. device connection succeeded: false; at least 1 device exists: true; last heartbeat was a success: false; developer disk image is mounted (not counted): false; started: true\r\n05:22:28 [INFO] minimuxer::mounter: Trying to mount dev image\r\n05:22:28 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:32 [INFO] minimuxer: minimuxer is not ready. device connection succeeded: true; at least 1 device exists: true; last heartbeat was a success: false; developer disk image is mounted (not counted): false; started: true\r\n05:22:33 [ERROR] minimuxer::mounter: Unable to start mobile image mounter: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:34 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:34 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\n\n### What version of SideStore are you using?\n\n0.5.2\n\n### Other info\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/519/reactions", + "total_count": 1, + "+1": 1, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/timeline", + "performed_via_github_app": null, + "state_reason": "not_planned" + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1892703293", + "html_url": "https://github.com/SideStore/SideStore/issues/519#issuecomment-1892703293", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/519", + "id": 1892703293, + "node_id": "IC_kwDOHS0Hg85w0Fw9", + "user": { + "login": "yugansh77", + "id": 34838617, + "node_id": "MDQ6VXNlcjM0ODM4NjE3", + "avatar_url": "https://avatars.githubusercontent.com/u/34838617?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/yugansh77", + "html_url": "https://github.com/yugansh77", + "followers_url": "https://api.github.com/users/yugansh77/followers", + "following_url": "https://api.github.com/users/yugansh77/following{/other_user}", + "gists_url": "https://api.github.com/users/yugansh77/gists{/gist_id}", + "starred_url": "https://api.github.com/users/yugansh77/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/yugansh77/subscriptions", + "organizations_url": "https://api.github.com/users/yugansh77/orgs", + "repos_url": "https://api.github.com/users/yugansh77/repos", + "events_url": "https://api.github.com/users/yugansh77/events{/privacy}", + "received_events_url": "https://api.github.com/users/yugansh77/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-15T19:54:16Z", + "updated_at": "2024-01-15T19:54:16Z", + "author_association": "NONE", + "body": "> > you should reset/refreshing pairing file.\r\n> > \r\n> > 1. go to side store website, https://sidestore.io/#get-started\r\n> > 2. click **just want the downloads instead**\r\n> > 3. Choose jitterbug for windows\r\n> > 4. Extract it.\r\n> > 5. Connect your device\r\n> > 6. Open CMD on that extract folder location.\r\n> > 7. Drag jitterbugpair to your CMD\r\n> > 8. Give permission on your device\r\n> > 9. Drag again jitterbugpair to your device\r\n> > 10. Then, see on your extract folder. If there is a new file, copy that file to your device\r\n> > 11. Go to your sidestore application on device\r\n> > 12. if there is a new popup, click on it and you can pair that file.\r\n> > 13. close side store & wireguard\r\n> > 14. Reconnect wireguard\r\n> > 15. Try again, goodluck\r\n> > \r\n> > Hope it will work, it's works for me. IOS 17.1 Device IP 11\r\n> \r\n> Thanks for providing the detailed steps I was able to follow till step 11 but am not seeing any popups when i open sidestore after step 11 So how do we use the file created by jitterbugpair and give it to sidestore?\r\n> \r\n> Thanks again!\r\n\r\nHello, i tried refreshing it a couple of days later.\r\nNow it does start to refresh but then i get the following error:\r\n\r\n“Unable to install the app: Error Domain=IXError Domain Code=2 \"Failed to set app extension placeholders for com.X7D8QJ6D9.com. SideStore.SideStore\" Userinfo=(NSLocalizedFailureReason=Failed to create promise., NSLocalizedDescription=Failed to set app extension placeholders for com.X7D8QJ6D9.com.SideStore. SideStore, FunctionName=+[IXPlaceholder_placeholderForBundle:client:withParent:installType:metadata:placeholderType:mayBeDeltaPackage:error:],SourceFileLine=884, NSUnderlyingError=Oxb84a0f00 {Error Domain=IXErrorDomain Code=8 \"Attempted to set app extension placeholder promise with bundle ID com. SideStore. SideStore.X7D8QVJ6D9.AltWidget that does not match required prefix of com.X7D8QVJ6D9.com. SideStore. SideStore. for parent\" UserInfo=", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/SideStore/commits/94ee08c718f81fd230b09402cc1cd3c2e8d5f044" + } + ] + }, + "public": true, + "created_at": "2024-01-13T03:00:07Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34795186988", + "type": "PushEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "repository_id": 489490307, + "push_id": 16621347860, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/connect-develop", + "head": "fd7dc94975b339513fa208cde1cdf1035bcd797e", + "before": "b78707808de0e48c5edf102be0a7b18513928380", + "commits": [ + { + "sha": "fd7dc94975b339513fa208cde1cdf1035bcd797e", + "author": { + "email": "64176728+Spidy123222@users.noreply.github.com", + "name": "Spidy123222" + }, + "message": "Swap to Connect Source\n\nSigned-off-by: Spidy123222 <64176728+Spidy123222@users.noreply.github.com>", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/SideStore/commits/fd7dc94975b339513fa208cde1cdf1035bcd797e" + } + ] + }, + "public": true, + "created_at": "2024-01-13T02:57:35Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34795135087", + "type": "CreateEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "ref": "connect-develop", + "ref_type": "branch", + "master_branch": "develop", + "description": "SideStore is a fork of AltStore that doesn't require an AltServer.", + "pusher_type": "user" + }, + "public": true, + "created_at": "2024-01-13T02:49:54Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34794428106", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16620859552, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "1e807f679353877f6f50e0bc7e06f923e6f554f6", + "before": "423fa25cdf4bb95c847d7e2f699c17d48da7e4fd", + "commits": [ + { + "sha": "1e807f679353877f6f50e0bc7e06f923e6f554f6", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/1e807f679353877f6f50e0bc7e06f923e6f554f6" + } + ] + }, + "public": true, + "created_at": "2024-01-13T01:21:47Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34794056343", + "type": "IssuesEvent", + "actor": { + "id": 103322811, + "login": "MusicBoiJBoy", + "display_login": "MusicBoiJBoy", + "gravatar_id": "", + "url": "https://api.github.com/users/MusicBoiJBoy", + "avatar_url": "https://avatars.githubusercontent.com/u/103322811?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/575", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/575/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/575/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/575/events", + "html_url": "https://github.com/SideStore/SideStore/issues/575", + "id": 2079935816, + "node_id": "I_kwDOHS0Hg857-U1I", + "number": 575, + "title": "[BUG] my sidestore isn’t sidestoring", + "user": { + "login": "MusicBoiJBoy", + "id": 103322811, + "node_id": "U_kgDOBiiUuw", + "avatar_url": "https://avatars.githubusercontent.com/u/103322811?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/MusicBoiJBoy", + "html_url": "https://github.com/MusicBoiJBoy", + "followers_url": "https://api.github.com/users/MusicBoiJBoy/followers", + "following_url": "https://api.github.com/users/MusicBoiJBoy/following{/other_user}", + "gists_url": "https://api.github.com/users/MusicBoiJBoy/gists{/gist_id}", + "starred_url": "https://api.github.com/users/MusicBoiJBoy/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/MusicBoiJBoy/subscriptions", + "organizations_url": "https://api.github.com/users/MusicBoiJBoy/orgs", + "repos_url": "https://api.github.com/users/MusicBoiJBoy/repos", + "events_url": "https://api.github.com/users/MusicBoiJBoy/events{/privacy}", + "received_events_url": "https://api.github.com/users/MusicBoiJBoy/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2024-01-13T00:46:18Z", + "updated_at": "2024-01-13T00:46:18Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\n\nI dont know why but my sidestore isn’t refreshing or downloading anything onto my phone even when I play with the wifi and wiregaurd. Idk what to do anymore\r\n\r\nThe operation couldn’t be completed. An error occurred when getting anisette data from a V3 server: Couldn't fetch client info. The server may be down (The request timed out.). Please try again. If the issue persists, report it on GitHub Issues!\n\n### Instructions to reproduce\n\nJust press the download button or the refresh button.\n\n### What version of SideStore are you using?\n\nSideStore 0.5.5-nightly.2023.11.28.1+dae813d\n\n### Other info\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/575/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/575/timeline", + "performed_via_github_app": null, + "state_reason": null + } + }, + "public": true, + "created_at": "2024-01-13T00:46:20Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34793074011", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16620097458, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "423fa25cdf4bb95c847d7e2f699c17d48da7e4fd", + "before": "1bbbde50d7edccfa0e931e5040a08fa31133663b", + "commits": [ + { + "sha": "423fa25cdf4bb95c847d7e2f699c17d48da7e4fd", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/423fa25cdf4bb95c847d7e2f699c17d48da7e4fd" + } + ] + }, + "public": true, + "created_at": "2024-01-12T23:17:52Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34792585635", + "type": "WatchEvent", + "actor": { + "id": 16907089, + "login": "roz0n", + "display_login": "roz0n", + "gravatar_id": "", + "url": "https://api.github.com/users/roz0n", + "avatar_url": "https://avatars.githubusercontent.com/u/16907089?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-12T22:45:11Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34792553342", + "type": "IssueCommentEvent", + "actor": { + "id": 77219001, + "login": "amrpyt", + "display_login": "amrpyt", + "gravatar_id": "", + "url": "https://api.github.com/users/amrpyt", + "avatar_url": "https://avatars.githubusercontent.com/u/77219001?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/519", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/events", + "html_url": "https://github.com/SideStore/SideStore/issues/519", + "id": 1964401697, + "node_id": "I_kwDOHS0Hg851FmQh", + "number": 519, + "title": "Unable to connect to the device, make sure Wireguard is enabled and you're connected to WiFi", + "user": { + "login": "Zgm1020", + "id": 55151533, + "node_id": "MDQ6VXNlcjU1MTUxNTMz", + "avatar_url": "https://avatars.githubusercontent.com/u/55151533?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Zgm1020", + "html_url": "https://github.com/Zgm1020", + "followers_url": "https://api.github.com/users/Zgm1020/followers", + "following_url": "https://api.github.com/users/Zgm1020/following{/other_user}", + "gists_url": "https://api.github.com/users/Zgm1020/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Zgm1020/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Zgm1020/subscriptions", + "organizations_url": "https://api.github.com/users/Zgm1020/orgs", + "repos_url": "https://api.github.com/users/Zgm1020/repos", + "events_url": "https://api.github.com/users/Zgm1020/events{/privacy}", + "received_events_url": "https://api.github.com/users/Zgm1020/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "naturecodevoid", + "id": 44983869, + "node_id": "MDQ6VXNlcjQ0OTgzODY5", + "avatar_url": "https://avatars.githubusercontent.com/u/44983869?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/naturecodevoid", + "html_url": "https://github.com/naturecodevoid", + "followers_url": "https://api.github.com/users/naturecodevoid/followers", + "following_url": "https://api.github.com/users/naturecodevoid/following{/other_user}", + "gists_url": "https://api.github.com/users/naturecodevoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/naturecodevoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/naturecodevoid/subscriptions", + "organizations_url": "https://api.github.com/users/naturecodevoid/orgs", + "repos_url": "https://api.github.com/users/naturecodevoid/repos", + "events_url": "https://api.github.com/users/naturecodevoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/naturecodevoid/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "naturecodevoid", + "id": 44983869, + "node_id": "MDQ6VXNlcjQ0OTgzODY5", + "avatar_url": "https://avatars.githubusercontent.com/u/44983869?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/naturecodevoid", + "html_url": "https://github.com/naturecodevoid", + "followers_url": "https://api.github.com/users/naturecodevoid/followers", + "following_url": "https://api.github.com/users/naturecodevoid/following{/other_user}", + "gists_url": "https://api.github.com/users/naturecodevoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/naturecodevoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/naturecodevoid/subscriptions", + "organizations_url": "https://api.github.com/users/naturecodevoid/orgs", + "repos_url": "https://api.github.com/users/naturecodevoid/repos", + "events_url": "https://api.github.com/users/naturecodevoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/naturecodevoid/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 11, + "created_at": "2023-10-26T21:34:17Z", + "updated_at": "2024-01-12T22:42:43Z", + "closed_at": "2023-10-27T23:48:18Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\n\niOS 16.3.1 This problem occurs when the newly installed SideStore is opened. Both wifi and WireGuard are turned on and cannot be connected.\n\n### Instructions to reproduce\n\n05:22:23 [INFO] minimuxer::muxer: Logger initialized!!\r\n05:22:23 [INFO] minimuxer::muxer: minimuxer has started!\r\n05:22:23 [INFO] minimuxer::muxer: Starting listener\r\n05:22:23 [INFO] minimuxer::mounter: Starting image mounter\r\n05:22:23 [INFO] minimuxer::heartbeat: Starting heartbeat thread\r\n05:22:26 [INFO] minimuxer: minimuxer is not ready. device connection succeeded: false; at least 1 device exists: true; last heartbeat was a success: false; developer disk image is mounted (not counted): false; started: true\r\n05:22:28 [INFO] minimuxer::mounter: Trying to mount dev image\r\n05:22:28 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:32 [INFO] minimuxer: minimuxer is not ready. device connection succeeded: true; at least 1 device exists: true; last heartbeat was a success: false; developer disk image is mounted (not counted): false; started: true\r\n05:22:33 [ERROR] minimuxer::mounter: Unable to start mobile image mounter: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:34 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:34 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\n\n### What version of SideStore are you using?\n\n0.5.2\n\n### Other info\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/519/reactions", + "total_count": 1, + "+1": 1, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/timeline", + "performed_via_github_app": null, + "state_reason": "not_planned" + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1890077483", + "html_url": "https://github.com/SideStore/SideStore/issues/519#issuecomment-1890077483", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/519", + "id": 1890077483, + "node_id": "IC_kwDOHS0Hg85wqEsr", + "user": { + "login": "amrpyt", + "id": 77219001, + "node_id": "MDQ6VXNlcjc3MjE5MDAx", + "avatar_url": "https://avatars.githubusercontent.com/u/77219001?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/amrpyt", + "html_url": "https://github.com/amrpyt", + "followers_url": "https://api.github.com/users/amrpyt/followers", + "following_url": "https://api.github.com/users/amrpyt/following{/other_user}", + "gists_url": "https://api.github.com/users/amrpyt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/amrpyt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/amrpyt/subscriptions", + "organizations_url": "https://api.github.com/users/amrpyt/orgs", + "repos_url": "https://api.github.com/users/amrpyt/repos", + "events_url": "https://api.github.com/users/amrpyt/events{/privacy}", + "received_events_url": "https://api.github.com/users/amrpyt/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-12T22:42:42Z", + "updated_at": "2024-01-12T22:42:42Z", + "author_association": "NONE", + "body": "@dimaszulfa \nWhat do u mean by copying the file to my device? How can it from my pc to my iPhone?\nI have try to move it to the CMD but it didn't work!\n\nPlz explain more", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1890077483/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-12T22:42:44Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34790409947", + "type": "WatchEvent", + "actor": { + "id": 44325112, + "login": "Supposedly-Sam", + "display_login": "Supposedly-Sam", + "gravatar_id": "", + "url": "https://api.github.com/users/Supposedly-Sam", + "avatar_url": "https://avatars.githubusercontent.com/u/44325112?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-12T20:39:36Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34772642057", + "type": "ForkEvent", + "actor": { + "id": 153727928, + "login": "HookingStuff", + "display_login": "HookingStuff", + "gravatar_id": "", + "url": "https://api.github.com/users/HookingStuff", + "avatar_url": "https://avatars.githubusercontent.com/u/153727928?" + }, + "repo": { + "id": 589783030, + "name": "SideStore/apple-private-apis", + "url": "https://api.github.com/repos/SideStore/apple-private-apis" + }, + "payload": { + "forkee": { + "id": 742341022, + "node_id": "R_kgDOLD85ng", + "name": "apple-private-apis", + "full_name": "HookingStuff/apple-private-apis", + "private": false, + "owner": { + "login": "HookingStuff", + "id": 153727928, + "node_id": "O_kgDOCSmzuA", + "avatar_url": "https://avatars.githubusercontent.com/u/153727928?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/HookingStuff", + "html_url": "https://github.com/HookingStuff", + "followers_url": "https://api.github.com/users/HookingStuff/followers", + "following_url": "https://api.github.com/users/HookingStuff/following{/other_user}", + "gists_url": "https://api.github.com/users/HookingStuff/gists{/gist_id}", + "starred_url": "https://api.github.com/users/HookingStuff/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/HookingStuff/subscriptions", + "organizations_url": "https://api.github.com/users/HookingStuff/orgs", + "repos_url": "https://api.github.com/users/HookingStuff/repos", + "events_url": "https://api.github.com/users/HookingStuff/events{/privacy}", + "received_events_url": "https://api.github.com/users/HookingStuff/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/HookingStuff/apple-private-apis", + "description": "A set of Rust libraries to interact with apple's private APIs and servers.", + "fork": true, + "url": "https://api.github.com/repos/HookingStuff/apple-private-apis", + "forks_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/forks", + "keys_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/teams", + "hooks_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/hooks", + "issue_events_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/issues/events{/number}", + "events_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/events", + "assignees_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/assignees{/user}", + "branches_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/branches{/branch}", + "tags_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/tags", + "blobs_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/statuses/{sha}", + "languages_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/languages", + "stargazers_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/stargazers", + "contributors_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/contributors", + "subscribers_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/subscribers", + "subscription_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/subscription", + "commits_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/contents/{+path}", + "compare_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/merges", + "archive_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/downloads", + "issues_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/issues{/number}", + "pulls_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/pulls{/number}", + "milestones_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/milestones{/number}", + "notifications_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/labels{/name}", + "releases_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/releases{/id}", + "deployments_url": "https://api.github.com/repos/HookingStuff/apple-private-apis/deployments", + "created_at": "2024-01-12T09:03:03Z", + "updated_at": "2024-01-12T09:03:03Z", + "pushed_at": "2023-10-16T18:36:43Z", + "git_url": "git://github.com/HookingStuff/apple-private-apis.git", + "ssh_url": "git@github.com:HookingStuff/apple-private-apis.git", + "clone_url": "https://github.com/HookingStuff/apple-private-apis.git", + "svn_url": "https://github.com/HookingStuff/apple-private-apis", + "homepage": "", + "size": 116, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "public": true + } + }, + "public": true, + "created_at": "2024-01-12T09:03:04Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34772638882", + "type": "WatchEvent", + "actor": { + "id": 69604865, + "login": "c128128", + "display_login": "c128128", + "gravatar_id": "", + "url": "https://api.github.com/users/c128128", + "avatar_url": "https://avatars.githubusercontent.com/u/69604865?" + }, + "repo": { + "id": 589783030, + "name": "SideStore/apple-private-apis", + "url": "https://api.github.com/repos/SideStore/apple-private-apis" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-12T09:02:56Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34771056369", + "type": "WatchEvent", + "actor": { + "id": 65276055, + "login": "phatboydave", + "display_login": "phatboydave", + "gravatar_id": "", + "url": "https://api.github.com/users/phatboydave", + "avatar_url": "https://avatars.githubusercontent.com/u/65276055?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-12T07:56:49Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34766004720", + "type": "WatchEvent", + "actor": { + "id": 143150074, + "login": "Accifkill", + "display_login": "Accifkill", + "gravatar_id": "", + "url": "https://api.github.com/users/Accifkill", + "avatar_url": "https://avatars.githubusercontent.com/u/143150074?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-12T02:24:52Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34758743293", + "type": "WatchEvent", + "actor": { + "id": 6242445, + "login": "EllipticSet", + "display_login": "EllipticSet", + "gravatar_id": "", + "url": "https://api.github.com/users/EllipticSet", + "avatar_url": "https://avatars.githubusercontent.com/u/6242445?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-11T19:35:50Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34738985629", + "type": "WatchEvent", + "actor": { + "id": 960241, + "login": "mumer92", + "display_login": "mumer92", + "gravatar_id": "", + "url": "https://api.github.com/users/mumer92", + "avatar_url": "https://avatars.githubusercontent.com/u/960241?" + }, + "repo": { + "id": 609742062, + "name": "SideStore/omnisette-server", + "url": "https://api.github.com/repos/SideStore/omnisette-server" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-11T08:06:05Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34738980687", + "type": "WatchEvent", + "actor": { + "id": 960241, + "login": "mumer92", + "display_login": "mumer92", + "gravatar_id": "", + "url": "https://api.github.com/users/mumer92", + "avatar_url": "https://avatars.githubusercontent.com/u/960241?" + }, + "repo": { + "id": 589783030, + "name": "SideStore/apple-private-apis", + "url": "https://api.github.com/repos/SideStore/apple-private-apis" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-11T08:05:53Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34736995959", + "type": "ForkEvent", + "actor": { + "id": 381853, + "login": "tramleit", + "display_login": "tramleit", + "gravatar_id": "", + "url": "https://api.github.com/users/tramleit", + "avatar_url": "https://avatars.githubusercontent.com/u/381853?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "forkee": { + "id": 741807390, + "node_id": "R_kgDOLDcVHg", + "name": "SideStore", + "full_name": "tramleit/SideStore", + "private": false, + "owner": { + "login": "tramleit", + "id": 381853, + "node_id": "MDQ6VXNlcjM4MTg1Mw==", + "avatar_url": "https://avatars.githubusercontent.com/u/381853?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/tramleit", + "html_url": "https://github.com/tramleit", + "followers_url": "https://api.github.com/users/tramleit/followers", + "following_url": "https://api.github.com/users/tramleit/following{/other_user}", + "gists_url": "https://api.github.com/users/tramleit/gists{/gist_id}", + "starred_url": "https://api.github.com/users/tramleit/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/tramleit/subscriptions", + "organizations_url": "https://api.github.com/users/tramleit/orgs", + "repos_url": "https://api.github.com/users/tramleit/repos", + "events_url": "https://api.github.com/users/tramleit/events{/privacy}", + "received_events_url": "https://api.github.com/users/tramleit/received_events", + "type": "User", + "site_admin": false + }, + "html_url": "https://github.com/tramleit/SideStore", + "description": "SideStore is a fork of AltStore that doesn't require an AltServer.", + "fork": true, + "url": "https://api.github.com/repos/tramleit/SideStore", + "forks_url": "https://api.github.com/repos/tramleit/SideStore/forks", + "keys_url": "https://api.github.com/repos/tramleit/SideStore/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/tramleit/SideStore/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/tramleit/SideStore/teams", + "hooks_url": "https://api.github.com/repos/tramleit/SideStore/hooks", + "issue_events_url": "https://api.github.com/repos/tramleit/SideStore/issues/events{/number}", + "events_url": "https://api.github.com/repos/tramleit/SideStore/events", + "assignees_url": "https://api.github.com/repos/tramleit/SideStore/assignees{/user}", + "branches_url": "https://api.github.com/repos/tramleit/SideStore/branches{/branch}", + "tags_url": "https://api.github.com/repos/tramleit/SideStore/tags", + "blobs_url": "https://api.github.com/repos/tramleit/SideStore/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/tramleit/SideStore/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/tramleit/SideStore/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/tramleit/SideStore/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/tramleit/SideStore/statuses/{sha}", + "languages_url": "https://api.github.com/repos/tramleit/SideStore/languages", + "stargazers_url": "https://api.github.com/repos/tramleit/SideStore/stargazers", + "contributors_url": "https://api.github.com/repos/tramleit/SideStore/contributors", + "subscribers_url": "https://api.github.com/repos/tramleit/SideStore/subscribers", + "subscription_url": "https://api.github.com/repos/tramleit/SideStore/subscription", + "commits_url": "https://api.github.com/repos/tramleit/SideStore/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/tramleit/SideStore/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/tramleit/SideStore/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/tramleit/SideStore/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/tramleit/SideStore/contents/{+path}", + "compare_url": "https://api.github.com/repos/tramleit/SideStore/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/tramleit/SideStore/merges", + "archive_url": "https://api.github.com/repos/tramleit/SideStore/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/tramleit/SideStore/downloads", + "issues_url": "https://api.github.com/repos/tramleit/SideStore/issues{/number}", + "pulls_url": "https://api.github.com/repos/tramleit/SideStore/pulls{/number}", + "milestones_url": "https://api.github.com/repos/tramleit/SideStore/milestones{/number}", + "notifications_url": "https://api.github.com/repos/tramleit/SideStore/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/tramleit/SideStore/labels{/name}", + "releases_url": "https://api.github.com/repos/tramleit/SideStore/releases{/id}", + "deployments_url": "https://api.github.com/repos/tramleit/SideStore/deployments", + "created_at": "2024-01-11T06:36:28Z", + "updated_at": "2024-01-11T06:36:28Z", + "pushed_at": "2023-12-13T02:32:21Z", + "git_url": "git://github.com/tramleit/SideStore.git", + "ssh_url": "git@github.com:tramleit/SideStore.git", + "clone_url": "https://github.com/tramleit/SideStore.git", + "svn_url": "https://github.com/tramleit/SideStore", + "homepage": "", + "size": 195252, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main", + "public": true + } + }, + "public": true, + "created_at": "2024-01-11T06:36:29Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34736772125", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16591945601, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "1bbbde50d7edccfa0e931e5040a08fa31133663b", + "before": "d9bc44a941f103b12669e78577a28f3a41aceb5a", + "commits": [ + { + "sha": "1bbbde50d7edccfa0e931e5040a08fa31133663b", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/1bbbde50d7edccfa0e931e5040a08fa31133663b" + } + ] + }, + "public": true, + "created_at": "2024-01-11T06:24:38Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34736670887", + "type": "IssuesEvent", + "actor": { + "id": 77219001, + "login": "amrpyt", + "display_login": "amrpyt", + "gravatar_id": "", + "url": "https://api.github.com/users/amrpyt", + "avatar_url": "https://avatars.githubusercontent.com/u/77219001?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/574", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/574/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/574/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/574/events", + "html_url": "https://github.com/SideStore/SideStore/issues/574", + "id": 2075844013, + "node_id": "I_kwDOHS0Hg857ut2t", + "number": 574, + "title": "[BUG] Failed to Log In An error occurred when getting anisette data from a V3 server: Couldn't fetch client info. The server may be down (The request timed out.). Please try again. If the issue persists, report it on GitHub Issues!", + "user": { + "login": "amrpyt", + "id": 77219001, + "node_id": "MDQ6VXNlcjc3MjE5MDAx", + "avatar_url": "https://avatars.githubusercontent.com/u/77219001?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/amrpyt", + "html_url": "https://github.com/amrpyt", + "followers_url": "https://api.github.com/users/amrpyt/followers", + "following_url": "https://api.github.com/users/amrpyt/following{/other_user}", + "gists_url": "https://api.github.com/users/amrpyt/gists{/gist_id}", + "starred_url": "https://api.github.com/users/amrpyt/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/amrpyt/subscriptions", + "organizations_url": "https://api.github.com/users/amrpyt/orgs", + "repos_url": "https://api.github.com/users/amrpyt/repos", + "events_url": "https://api.github.com/users/amrpyt/events{/privacy}", + "received_events_url": "https://api.github.com/users/amrpyt/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2024-01-11T06:19:14Z", + "updated_at": "2024-01-11T06:19:14Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\n\n**im Sure that my apple email and password are correct, i try to turn off the vpn, connect to the pc, nothing work. and i got this error:**\r\n\r\nFailed to Log In\r\nAn error occurred when getting anisette data from a V3 server: Couldn't fetch client info. The server may be down (The request timed out.).\r\nPlease try again. If the issue persists, report it on GitHub Issues!\r\n\r\n![IMG_0902](https://github.com/SideStore/SideStore/assets/77219001/cfebb5fd-3bfb-4daa-9c3b-8c7cb087b5cb)\n\n### Instructions to reproduce\n\nFailed to Log In\r\nAn error occurred when getting anisette data from a V3 server: Couldn't fetch client info. The server may be down (The request timed out.).\r\nPlease try again. If the issue persists, report it on GitHub Issues!\n\n### What version of SideStore are you using?\n\n0.5.4\n\n### Other info\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/574/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/574/timeline", + "performed_via_github_app": null, + "state_reason": null + } + }, + "public": true, + "created_at": "2024-01-11T06:19:15Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34735583922", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16591335375, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "d9bc44a941f103b12669e78577a28f3a41aceb5a", + "before": "db3023644779609759688070652312ffbb41bdc4", + "commits": [ + { + "sha": "d9bc44a941f103b12669e78577a28f3a41aceb5a", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/d9bc44a941f103b12669e78577a28f3a41aceb5a" + } + ] + }, + "public": true, + "created_at": "2024-01-11T05:18:31Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34735457422", + "type": "IssueCommentEvent", + "actor": { + "id": 34838617, + "login": "yugansh77", + "display_login": "yugansh77", + "gravatar_id": "", + "url": "https://api.github.com/users/yugansh77", + "avatar_url": "https://avatars.githubusercontent.com/u/34838617?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/519", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/events", + "html_url": "https://github.com/SideStore/SideStore/issues/519", + "id": 1964401697, + "node_id": "I_kwDOHS0Hg851FmQh", + "number": 519, + "title": "Unable to connect to the device, make sure Wireguard is enabled and you're connected to WiFi", + "user": { + "login": "Zgm1020", + "id": 55151533, + "node_id": "MDQ6VXNlcjU1MTUxNTMz", + "avatar_url": "https://avatars.githubusercontent.com/u/55151533?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Zgm1020", + "html_url": "https://github.com/Zgm1020", + "followers_url": "https://api.github.com/users/Zgm1020/followers", + "following_url": "https://api.github.com/users/Zgm1020/following{/other_user}", + "gists_url": "https://api.github.com/users/Zgm1020/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Zgm1020/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Zgm1020/subscriptions", + "organizations_url": "https://api.github.com/users/Zgm1020/orgs", + "repos_url": "https://api.github.com/users/Zgm1020/repos", + "events_url": "https://api.github.com/users/Zgm1020/events{/privacy}", + "received_events_url": "https://api.github.com/users/Zgm1020/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "closed", + "locked": false, + "assignee": { + "login": "naturecodevoid", + "id": 44983869, + "node_id": "MDQ6VXNlcjQ0OTgzODY5", + "avatar_url": "https://avatars.githubusercontent.com/u/44983869?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/naturecodevoid", + "html_url": "https://github.com/naturecodevoid", + "followers_url": "https://api.github.com/users/naturecodevoid/followers", + "following_url": "https://api.github.com/users/naturecodevoid/following{/other_user}", + "gists_url": "https://api.github.com/users/naturecodevoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/naturecodevoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/naturecodevoid/subscriptions", + "organizations_url": "https://api.github.com/users/naturecodevoid/orgs", + "repos_url": "https://api.github.com/users/naturecodevoid/repos", + "events_url": "https://api.github.com/users/naturecodevoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/naturecodevoid/received_events", + "type": "User", + "site_admin": false + }, + "assignees": [ + { + "login": "naturecodevoid", + "id": 44983869, + "node_id": "MDQ6VXNlcjQ0OTgzODY5", + "avatar_url": "https://avatars.githubusercontent.com/u/44983869?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/naturecodevoid", + "html_url": "https://github.com/naturecodevoid", + "followers_url": "https://api.github.com/users/naturecodevoid/followers", + "following_url": "https://api.github.com/users/naturecodevoid/following{/other_user}", + "gists_url": "https://api.github.com/users/naturecodevoid/gists{/gist_id}", + "starred_url": "https://api.github.com/users/naturecodevoid/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/naturecodevoid/subscriptions", + "organizations_url": "https://api.github.com/users/naturecodevoid/orgs", + "repos_url": "https://api.github.com/users/naturecodevoid/repos", + "events_url": "https://api.github.com/users/naturecodevoid/events{/privacy}", + "received_events_url": "https://api.github.com/users/naturecodevoid/received_events", + "type": "User", + "site_admin": false + } + ], + "milestone": null, + "comments": 10, + "created_at": "2023-10-26T21:34:17Z", + "updated_at": "2024-01-11T05:10:30Z", + "closed_at": "2023-10-27T23:48:18Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\n\niOS 16.3.1 This problem occurs when the newly installed SideStore is opened. Both wifi and WireGuard are turned on and cannot be connected.\n\n### Instructions to reproduce\n\n05:22:23 [INFO] minimuxer::muxer: Logger initialized!!\r\n05:22:23 [INFO] minimuxer::muxer: minimuxer has started!\r\n05:22:23 [INFO] minimuxer::muxer: Starting listener\r\n05:22:23 [INFO] minimuxer::mounter: Starting image mounter\r\n05:22:23 [INFO] minimuxer::heartbeat: Starting heartbeat thread\r\n05:22:26 [INFO] minimuxer: minimuxer is not ready. device connection succeeded: false; at least 1 device exists: true; last heartbeat was a success: false; developer disk image is mounted (not counted): false; started: true\r\n05:22:28 [INFO] minimuxer::mounter: Trying to mount dev image\r\n05:22:28 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:32 [INFO] minimuxer: minimuxer is not ready. device connection succeeded: true; at least 1 device exists: true; last heartbeat was a success: false; developer disk image is mounted (not counted): false; started: true\r\n05:22:33 [ERROR] minimuxer::mounter: Unable to start mobile image mounter: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:33 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:34 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n05:22:34 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\n\n### What version of SideStore are you using?\n\n0.5.2\n\n### Other info\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/519/reactions", + "total_count": 1, + "+1": 1, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/519/timeline", + "performed_via_github_app": null, + "state_reason": "not_planned" + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1886253701", + "html_url": "https://github.com/SideStore/SideStore/issues/519#issuecomment-1886253701", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/519", + "id": 1886253701, + "node_id": "IC_kwDOHS0Hg85wbfKF", + "user": { + "login": "yugansh77", + "id": 34838617, + "node_id": "MDQ6VXNlcjM0ODM4NjE3", + "avatar_url": "https://avatars.githubusercontent.com/u/34838617?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/yugansh77", + "html_url": "https://github.com/yugansh77", + "followers_url": "https://api.github.com/users/yugansh77/followers", + "following_url": "https://api.github.com/users/yugansh77/following{/other_user}", + "gists_url": "https://api.github.com/users/yugansh77/gists{/gist_id}", + "starred_url": "https://api.github.com/users/yugansh77/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/yugansh77/subscriptions", + "organizations_url": "https://api.github.com/users/yugansh77/orgs", + "repos_url": "https://api.github.com/users/yugansh77/repos", + "events_url": "https://api.github.com/users/yugansh77/events{/privacy}", + "received_events_url": "https://api.github.com/users/yugansh77/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-11T05:10:29Z", + "updated_at": "2024-01-11T05:10:29Z", + "author_association": "NONE", + "body": "> you should reset/refreshing pairing file.\r\n> \r\n> 1. go to side store website, https://sidestore.io/#get-started\r\n> 2. click **just want the downloads instead**\r\n> 3. Choose jitterbug for windows\r\n> 4. Extract it.\r\n> 5. Connect your device\r\n> 6. Open CMD on that extract folder location.\r\n> 7. Drag jitterbugpair to your CMD\r\n> 8. Give permission on your device\r\n> 9. Drag again jitterbugpair to your device\r\n> 10. Then, see on your extract folder. If there is a new file, copy that file to your device\r\n> 11. Go to your sidestore application on device\r\n> 12. if there is a new popup, click on it and you can pair that file.\r\n> 13. close side store & wireguard\r\n> 14. Reconnect wireguard\r\n> 15. Try again, goodluck\r\n> \r\n> Hope it will work, it's works for me. IOS 17.1 Device IP 11\r\n\r\nThanks for providing the detailed steps\r\nI was able to follow till step 11 but am not seeing any popups when i open sidestore after step 11\r\nSo how do we use the file created by jitterbugpair and give it to sidestore?\r\n\r\nThanks again!", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1886253701/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-11T05:10:30Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34734724926", + "type": "WatchEvent", + "actor": { + "id": 8318526, + "login": "adityadaniel", + "display_login": "adityadaniel", + "gravatar_id": "", + "url": "https://api.github.com/users/adityadaniel", + "avatar_url": "https://avatars.githubusercontent.com/u/8318526?" + }, + "repo": { + "id": 589783030, + "name": "SideStore/apple-private-apis", + "url": "https://api.github.com/repos/SideStore/apple-private-apis" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-11T04:20:25Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34733339607", + "type": "WatchEvent", + "actor": { + "id": 77422971, + "login": "Aeroxflush", + "display_login": "Aeroxflush", + "gravatar_id": "", + "url": "https://api.github.com/users/Aeroxflush", + "avatar_url": "https://avatars.githubusercontent.com/u/77422971?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-11T02:43:36Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34730268022", + "type": "WatchEvent", + "actor": { + "id": 41546558, + "login": "RhetTbull", + "display_login": "RhetTbull", + "gravatar_id": "", + "url": "https://api.github.com/users/RhetTbull", + "avatar_url": "https://avatars.githubusercontent.com/u/41546558?" + }, + "repo": { + "id": 589783030, + "name": "SideStore/apple-private-apis", + "url": "https://api.github.com/repos/SideStore/apple-private-apis" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-10T23:22:46Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34729491701", + "type": "WatchEvent", + "actor": { + "id": 67184, + "login": "insidegui", + "display_login": "insidegui", + "gravatar_id": "", + "url": "https://api.github.com/users/insidegui", + "avatar_url": "https://avatars.githubusercontent.com/u/67184?" + }, + "repo": { + "id": 609742062, + "name": "SideStore/omnisette-server", + "url": "https://api.github.com/repos/SideStore/omnisette-server" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-10T22:37:35Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34729476544", + "type": "WatchEvent", + "actor": { + "id": 67184, + "login": "insidegui", + "display_login": "insidegui", + "gravatar_id": "", + "url": "https://api.github.com/users/insidegui", + "avatar_url": "https://avatars.githubusercontent.com/u/67184?" + }, + "repo": { + "id": 589783030, + "name": "SideStore/apple-private-apis", + "url": "https://api.github.com/repos/SideStore/apple-private-apis" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-10T22:36:43Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34713621961", + "type": "WatchEvent", + "actor": { + "id": 13402525, + "login": "LeviSnoot", + "display_login": "LeviSnoot", + "gravatar_id": "", + "url": "https://api.github.com/users/LeviSnoot", + "avatar_url": "https://avatars.githubusercontent.com/u/13402525?" + }, + "repo": { + "id": 580533883, + "name": "SideStore/SideServer-for-Linux", + "url": "https://api.github.com/repos/SideStore/SideServer-for-Linux" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-10T12:53:57Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34693368705", + "type": "WatchEvent", + "actor": { + "id": 25695071, + "login": "ssl", + "display_login": "ssl", + "gravatar_id": "", + "url": "https://api.github.com/users/ssl", + "avatar_url": "https://avatars.githubusercontent.com/u/25695071?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-09T20:13:34Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34687823427", + "type": "WatchEvent", + "actor": { + "id": 24444634, + "login": "Immateria", + "display_login": "Immateria", + "gravatar_id": "", + "url": "https://api.github.com/users/Immateria", + "avatar_url": "https://avatars.githubusercontent.com/u/24444634?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-09T16:40:16Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34687812450", + "type": "WatchEvent", + "actor": { + "id": 24444634, + "login": "Immateria", + "display_login": "Immateria", + "gravatar_id": "", + "url": "https://api.github.com/users/Immateria", + "avatar_url": "https://avatars.githubusercontent.com/u/24444634?" + }, + "repo": { + "id": 589783030, + "name": "SideStore/apple-private-apis", + "url": "https://api.github.com/repos/SideStore/apple-private-apis" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-09T16:39:55Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34686728268", + "type": "WatchEvent", + "actor": { + "id": 124898895, + "login": "polmonk", + "display_login": "polmonk", + "gravatar_id": "", + "url": "https://api.github.com/users/polmonk", + "avatar_url": "https://avatars.githubusercontent.com/u/124898895?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-09T16:05:25Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34686722453", + "type": "WatchEvent", + "actor": { + "id": 124898895, + "login": "polmonk", + "display_login": "polmonk", + "gravatar_id": "", + "url": "https://api.github.com/users/polmonk", + "avatar_url": "https://avatars.githubusercontent.com/u/124898895?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-09T16:05:15Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34675104191", + "type": "WatchEvent", + "actor": { + "id": 56256195, + "login": "TaYaKi71751", + "display_login": "TaYaKi71751", + "gravatar_id": "", + "url": "https://api.github.com/users/TaYaKi71751", + "avatar_url": "https://avatars.githubusercontent.com/u/56256195?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-09T09:23:53Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34672302047", + "type": "WatchEvent", + "actor": { + "id": 48803278, + "login": "merouane-tazeka", + "display_login": "merouane-tazeka", + "gravatar_id": "", + "url": "https://api.github.com/users/merouane-tazeka", + "avatar_url": "https://avatars.githubusercontent.com/u/48803278?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-09T07:36:05Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670854895", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16558554951, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "db3023644779609759688070652312ffbb41bdc4", + "before": "c2fd7766b25cec2898af3699f11bc4e51914a710", + "commits": [ + { + "sha": "db3023644779609759688070652312ffbb41bdc4", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/db3023644779609759688070652312ffbb41bdc4" + } + ] + }, + "public": true, + "created_at": "2024-01-09T06:24:19Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670251381", + "type": "IssueCommentEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/567", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/567/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/567/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/567/events", + "html_url": "https://github.com/SideStore/SideStore/issues/567", + "id": 2057590067, + "node_id": "I_kwDOHS0Hg856pFUz", + "number": 567, + "title": "WARNING: Outdated anisette server", + "user": { + "login": "Amazon90", + "id": 72290820, + "node_id": "MDQ6VXNlcjcyMjkwODIw", + "avatar_url": "https://avatars.githubusercontent.com/u/72290820?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Amazon90", + "html_url": "https://github.com/Amazon90", + "followers_url": "https://api.github.com/users/Amazon90/followers", + "following_url": "https://api.github.com/users/Amazon90/following{/other_user}", + "gists_url": "https://api.github.com/users/Amazon90/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Amazon90/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Amazon90/subscriptions", + "organizations_url": "https://api.github.com/users/Amazon90/orgs", + "repos_url": "https://api.github.com/users/Amazon90/repos", + "events_url": "https://api.github.com/users/Amazon90/events{/privacy}", + "received_events_url": "https://api.github.com/users/Amazon90/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 8, + "created_at": "2023-12-27T16:55:10Z", + "updated_at": "2024-01-09T05:49:43Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\n\nWARNING: Outdated anisette server\r\nWe've detected you are using an older anisette server. Using this server has a higher likelihood of locking your account and causing other issues. Are you sure you want to continue?\r\n![IMG_0532](https://github.com/SideStore/SideStore/assets/72290820/93f50954-0e1e-49db-8ebc-05169ee40a1d)\r\n\n\n### Instructions to reproduce\n\n1.open wireguard \r\n2.open sidestore \n\n### What version of SideStore are you using?\n\nv0.5.4\n\n### Other info\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/567/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/567/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882450322", + "html_url": "https://github.com/SideStore/SideStore/issues/567#issuecomment-1882450322", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/567", + "id": 1882450322, + "node_id": "IC_kwDOHS0Hg85wM-mS", + "user": { + "login": "Spidy123222", + "id": 64176728, + "node_id": "MDQ6VXNlcjY0MTc2NzI4", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "html_url": "https://github.com/Spidy123222", + "followers_url": "https://api.github.com/users/Spidy123222/followers", + "following_url": "https://api.github.com/users/Spidy123222/following{/other_user}", + "gists_url": "https://api.github.com/users/Spidy123222/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Spidy123222/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Spidy123222/subscriptions", + "organizations_url": "https://api.github.com/users/Spidy123222/orgs", + "repos_url": "https://api.github.com/users/Spidy123222/repos", + "events_url": "https://api.github.com/users/Spidy123222/events{/privacy}", + "received_events_url": "https://api.github.com/users/Spidy123222/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-09T05:49:42Z", + "updated_at": "2024-01-09T05:49:42Z", + "author_association": "NONE", + "body": "The server they have likely is being blocked in this case if nothing is working while the server is working for others.", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882450322/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-09T05:49:43Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670231847", + "type": "IssueCommentEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/568", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/568/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/568/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/568/events", + "html_url": "https://github.com/SideStore/SideStore/issues/568", + "id": 2057822006, + "node_id": "I_kwDOHS0Hg856p982", + "number": 568, + "title": "New browse tab like Altstore ", + "user": { + "login": "nextDNSconfig", + "id": 86489640, + "node_id": "MDQ6VXNlcjg2NDg5NjQw", + "avatar_url": "https://avatars.githubusercontent.com/u/86489640?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/nextDNSconfig", + "html_url": "https://github.com/nextDNSconfig", + "followers_url": "https://api.github.com/users/nextDNSconfig/followers", + "following_url": "https://api.github.com/users/nextDNSconfig/following{/other_user}", + "gists_url": "https://api.github.com/users/nextDNSconfig/gists{/gist_id}", + "starred_url": "https://api.github.com/users/nextDNSconfig/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/nextDNSconfig/subscriptions", + "organizations_url": "https://api.github.com/users/nextDNSconfig/orgs", + "repos_url": "https://api.github.com/users/nextDNSconfig/repos", + "events_url": "https://api.github.com/users/nextDNSconfig/events{/privacy}", + "received_events_url": "https://api.github.com/users/nextDNSconfig/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085112, + "node_id": "LA_kwDOHS0Hg870veL4", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2023-12-27T22:38:15Z", + "updated_at": "2024-01-09T05:48:28Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the feature\n\nAn extra page like altstore\r\n![IMG_1821](https://github.com/SideStore/SideStore/assets/86489640/d172f6c8-5482-4720-a010-aa5e6c9b1c97)\r\n\n\n### Use cases\n\nBetter overview \n\n### Alternatives\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/568/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/568/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882449415", + "html_url": "https://github.com/SideStore/SideStore/issues/568#issuecomment-1882449415", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/568", + "id": 1882449415, + "node_id": "IC_kwDOHS0Hg85wM-YH", + "user": { + "login": "Spidy123222", + "id": 64176728, + "node_id": "MDQ6VXNlcjY0MTc2NzI4", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "html_url": "https://github.com/Spidy123222", + "followers_url": "https://api.github.com/users/Spidy123222/followers", + "following_url": "https://api.github.com/users/Spidy123222/following{/other_user}", + "gists_url": "https://api.github.com/users/Spidy123222/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Spidy123222/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Spidy123222/subscriptions", + "organizations_url": "https://api.github.com/users/Spidy123222/orgs", + "repos_url": "https://api.github.com/users/Spidy123222/repos", + "events_url": "https://api.github.com/users/Spidy123222/events{/privacy}", + "received_events_url": "https://api.github.com/users/Spidy123222/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-09T05:48:27Z", + "updated_at": "2024-01-09T05:48:27Z", + "author_association": "NONE", + "body": "Yeah this requires merging new changes. Will take time. We will likely rewrite sidestore and do our own thing.", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882449415/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-09T05:48:28Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670164136", + "type": "IssuesEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/561", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/events", + "html_url": "https://github.com/SideStore/SideStore/issues/561", + "id": 2054538850, + "node_id": "I_kwDOHS0Hg856dcZi", + "number": 561, + "title": "[BUG] Unable to connect to device~", + "user": { + "login": "xhfpsxm", + "id": 60850613, + "node_id": "MDQ6VXNlcjYwODUwNjEz", + "avatar_url": "https://avatars.githubusercontent.com/u/60850613?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/xhfpsxm", + "html_url": "https://github.com/xhfpsxm", + "followers_url": "https://api.github.com/users/xhfpsxm/followers", + "following_url": "https://api.github.com/users/xhfpsxm/following{/other_user}", + "gists_url": "https://api.github.com/users/xhfpsxm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/xhfpsxm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/xhfpsxm/subscriptions", + "organizations_url": "https://api.github.com/users/xhfpsxm/orgs", + "repos_url": "https://api.github.com/users/xhfpsxm/repos", + "events_url": "https://api.github.com/users/xhfpsxm/events{/privacy}", + "received_events_url": "https://api.github.com/users/xhfpsxm/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 12, + "created_at": "2023-12-22T22:03:27Z", + "updated_at": "2024-01-09T05:44:01Z", + "closed_at": "2024-01-09T05:44:01Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\n\nhttps://github.com/SideStore/SideStore/assets/60850613/8f94d82b-1002-4519-a16a-0392d7d4294d\r\n\r\nThis error occurred in 0.5.2.\r\n\r\nAnd I updated to 0.5.4.\r\n\r\nBut it has still not been resolved.\r\n\r\nSomeone said this was a duplicated issue.\r\n\r\nI installed using alt-server and\r\n\r\nI also recreated the pairing file.\r\n\r\nAnd I reinstalled many times.\r\n\r\nI searched for a solution to this but failed.\r\n\r\niOS version is 17.0.\r\n\r\nI don't know if has something to do with this.\r\n\r\nPlease tell me what to do.\n\n### Instructions to reproduce\n\nInstall sidestore 0.5.2 or 0.5.4\r\n\r\nLogin\r\n\r\nConnect to vpn\r\n\r\nRefresh or press the +button.\n\n### What version of SideStore are you using?\n\n0.5.4\n\n### Other info\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/561/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2024-01-09T05:44:02Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670162890", + "type": "IssueCommentEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/561", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/events", + "html_url": "https://github.com/SideStore/SideStore/issues/561", + "id": 2054538850, + "node_id": "I_kwDOHS0Hg856dcZi", + "number": 561, + "title": "[BUG] Unable to connect to device~", + "user": { + "login": "xhfpsxm", + "id": 60850613, + "node_id": "MDQ6VXNlcjYwODUwNjEz", + "avatar_url": "https://avatars.githubusercontent.com/u/60850613?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/xhfpsxm", + "html_url": "https://github.com/xhfpsxm", + "followers_url": "https://api.github.com/users/xhfpsxm/followers", + "following_url": "https://api.github.com/users/xhfpsxm/following{/other_user}", + "gists_url": "https://api.github.com/users/xhfpsxm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/xhfpsxm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/xhfpsxm/subscriptions", + "organizations_url": "https://api.github.com/users/xhfpsxm/orgs", + "repos_url": "https://api.github.com/users/xhfpsxm/repos", + "events_url": "https://api.github.com/users/xhfpsxm/events{/privacy}", + "received_events_url": "https://api.github.com/users/xhfpsxm/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 12, + "created_at": "2023-12-22T22:03:27Z", + "updated_at": "2024-01-09T05:43:56Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\n\nhttps://github.com/SideStore/SideStore/assets/60850613/8f94d82b-1002-4519-a16a-0392d7d4294d\r\n\r\nThis error occurred in 0.5.2.\r\n\r\nAnd I updated to 0.5.4.\r\n\r\nBut it has still not been resolved.\r\n\r\nSomeone said this was a duplicated issue.\r\n\r\nI installed using alt-server and\r\n\r\nI also recreated the pairing file.\r\n\r\nAnd I reinstalled many times.\r\n\r\nI searched for a solution to this but failed.\r\n\r\niOS version is 17.0.\r\n\r\nI don't know if has something to do with this.\r\n\r\nPlease tell me what to do.\n\n### Instructions to reproduce\n\nInstall sidestore 0.5.2 or 0.5.4\r\n\r\nLogin\r\n\r\nConnect to vpn\r\n\r\nRefresh or press the +button.\n\n### What version of SideStore are you using?\n\n0.5.4\n\n### Other info\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/561/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882446470", + "html_url": "https://github.com/SideStore/SideStore/issues/561#issuecomment-1882446470", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/561", + "id": 1882446470, + "node_id": "IC_kwDOHS0Hg85wM9qG", + "user": { + "login": "Spidy123222", + "id": 64176728, + "node_id": "MDQ6VXNlcjY0MTc2NzI4", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "html_url": "https://github.com/Spidy123222", + "followers_url": "https://api.github.com/users/Spidy123222/followers", + "following_url": "https://api.github.com/users/Spidy123222/following{/other_user}", + "gists_url": "https://api.github.com/users/Spidy123222/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Spidy123222/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Spidy123222/subscriptions", + "organizations_url": "https://api.github.com/users/Spidy123222/orgs", + "repos_url": "https://api.github.com/users/Spidy123222/repos", + "events_url": "https://api.github.com/users/Spidy123222/events{/privacy}", + "received_events_url": "https://api.github.com/users/Spidy123222/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-09T05:43:55Z", + "updated_at": "2024-01-09T05:43:55Z", + "author_association": "NONE", + "body": "> I'd also like to add, I was having a ton of issues getting sidestore to work but I found a workaround on Reddit, not sure if it really did anything or not but I haven't had any issues since. \n> \n> 1. Install the Altstore IPA using Altserver\n> \n> 2. Install Sidestore IPA with the installed Altstore IPA \n> \n> 3. Go through the Sidestore setup, disable wireguard and delete Altstore \n> \n> 4. Re-enable wireguard and try installing an app.\n> \n\nJust use altserver to install sidestore using sideload ipa. It's just the same thing.", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882446470/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-09T05:43:57Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670153427", + "type": "IssueCommentEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/561", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/events", + "html_url": "https://github.com/SideStore/SideStore/issues/561", + "id": 2054538850, + "node_id": "I_kwDOHS0Hg856dcZi", + "number": 561, + "title": "[BUG] Unable to connect to device~", + "user": { + "login": "xhfpsxm", + "id": 60850613, + "node_id": "MDQ6VXNlcjYwODUwNjEz", + "avatar_url": "https://avatars.githubusercontent.com/u/60850613?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/xhfpsxm", + "html_url": "https://github.com/xhfpsxm", + "followers_url": "https://api.github.com/users/xhfpsxm/followers", + "following_url": "https://api.github.com/users/xhfpsxm/following{/other_user}", + "gists_url": "https://api.github.com/users/xhfpsxm/gists{/gist_id}", + "starred_url": "https://api.github.com/users/xhfpsxm/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/xhfpsxm/subscriptions", + "organizations_url": "https://api.github.com/users/xhfpsxm/orgs", + "repos_url": "https://api.github.com/users/xhfpsxm/repos", + "events_url": "https://api.github.com/users/xhfpsxm/events{/privacy}", + "received_events_url": "https://api.github.com/users/xhfpsxm/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 11, + "created_at": "2023-12-22T22:03:27Z", + "updated_at": "2024-01-09T05:43:18Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\n\nhttps://github.com/SideStore/SideStore/assets/60850613/8f94d82b-1002-4519-a16a-0392d7d4294d\r\n\r\nThis error occurred in 0.5.2.\r\n\r\nAnd I updated to 0.5.4.\r\n\r\nBut it has still not been resolved.\r\n\r\nSomeone said this was a duplicated issue.\r\n\r\nI installed using alt-server and\r\n\r\nI also recreated the pairing file.\r\n\r\nAnd I reinstalled many times.\r\n\r\nI searched for a solution to this but failed.\r\n\r\niOS version is 17.0.\r\n\r\nI don't know if has something to do with this.\r\n\r\nPlease tell me what to do.\n\n### Instructions to reproduce\n\nInstall sidestore 0.5.2 or 0.5.4\r\n\r\nLogin\r\n\r\nConnect to vpn\r\n\r\nRefresh or press the +button.\n\n### What version of SideStore are you using?\n\n0.5.4\n\n### Other info\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/561/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/561/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882446058", + "html_url": "https://github.com/SideStore/SideStore/issues/561#issuecomment-1882446058", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/561", + "id": 1882446058, + "node_id": "IC_kwDOHS0Hg85wM9jq", + "user": { + "login": "Spidy123222", + "id": 64176728, + "node_id": "MDQ6VXNlcjY0MTc2NzI4", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "html_url": "https://github.com/Spidy123222", + "followers_url": "https://api.github.com/users/Spidy123222/followers", + "following_url": "https://api.github.com/users/Spidy123222/following{/other_user}", + "gists_url": "https://api.github.com/users/Spidy123222/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Spidy123222/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Spidy123222/subscriptions", + "organizations_url": "https://api.github.com/users/Spidy123222/orgs", + "repos_url": "https://api.github.com/users/Spidy123222/repos", + "events_url": "https://api.github.com/users/Spidy123222/events{/privacy}", + "received_events_url": "https://api.github.com/users/Spidy123222/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-09T05:43:17Z", + "updated_at": "2024-01-09T05:43:17Z", + "author_association": "NONE", + "body": "This is currently a duplicate of https://github.com/SideStore/SideStore/issues/519", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882446058/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-09T05:43:18Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670143739", + "type": "IssuesEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/528", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/events", + "html_url": "https://github.com/SideStore/SideStore/issues/528", + "id": 1989838258, + "node_id": "I_kwDOHS0Hg852moWy", + "number": 528, + "title": "[BUG] Unable to connect to the device error when attempting to refresh", + "user": { + "login": "RaptorWasTaken", + "id": 93893385, + "node_id": "U_kgDOBZizCQ", + "avatar_url": "https://avatars.githubusercontent.com/u/93893385?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/RaptorWasTaken", + "html_url": "https://github.com/RaptorWasTaken", + "followers_url": "https://api.github.com/users/RaptorWasTaken/followers", + "following_url": "https://api.github.com/users/RaptorWasTaken/following{/other_user}", + "gists_url": "https://api.github.com/users/RaptorWasTaken/gists{/gist_id}", + "starred_url": "https://api.github.com/users/RaptorWasTaken/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/RaptorWasTaken/subscriptions", + "organizations_url": "https://api.github.com/users/RaptorWasTaken/orgs", + "repos_url": "https://api.github.com/users/RaptorWasTaken/repos", + "events_url": "https://api.github.com/users/RaptorWasTaken/events{/privacy}", + "received_events_url": "https://api.github.com/users/RaptorWasTaken/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2023-11-13T03:50:57Z", + "updated_at": "2024-01-09T05:42:39Z", + "closed_at": "2024-01-09T05:42:39Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\r\n\r\nUnable to connect to the device, make sure Wireguard is enabled and you're connected to WiFi\r\n\r\nI have WireGuard VPN on yet I still get this error when trying to refresh \r\n\r\nerror log mainly consists of this one error repeated:\r\n\r\nthread\r\n22:40:22 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n22:40:29 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n\r\n### Instructions to reproduce\r\n\r\nInstall using sidesever on macOS Ventura 13.2 onto iPhone 15 running iOS 17\r\n\r\ntry to refresh an app\r\n\r\n### What version of SideStore are you using?\r\n\r\n0.5.2\r\n\r\n### Other info\r\n\r\nCan’t put whole error log due to length", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/528/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2024-01-09T05:42:39Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670142572", + "type": "IssueCommentEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/528", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/events", + "html_url": "https://github.com/SideStore/SideStore/issues/528", + "id": 1989838258, + "node_id": "I_kwDOHS0Hg852moWy", + "number": 528, + "title": "[BUG] Unable to connect to the device error when attempting to refresh", + "user": { + "login": "RaptorWasTaken", + "id": 93893385, + "node_id": "U_kgDOBZizCQ", + "avatar_url": "https://avatars.githubusercontent.com/u/93893385?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/RaptorWasTaken", + "html_url": "https://github.com/RaptorWasTaken", + "followers_url": "https://api.github.com/users/RaptorWasTaken/followers", + "following_url": "https://api.github.com/users/RaptorWasTaken/following{/other_user}", + "gists_url": "https://api.github.com/users/RaptorWasTaken/gists{/gist_id}", + "starred_url": "https://api.github.com/users/RaptorWasTaken/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/RaptorWasTaken/subscriptions", + "organizations_url": "https://api.github.com/users/RaptorWasTaken/orgs", + "repos_url": "https://api.github.com/users/RaptorWasTaken/repos", + "events_url": "https://api.github.com/users/RaptorWasTaken/events{/privacy}", + "received_events_url": "https://api.github.com/users/RaptorWasTaken/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 4, + "created_at": "2023-11-13T03:50:57Z", + "updated_at": "2024-01-09T05:42:35Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\r\n\r\nUnable to connect to the device, make sure Wireguard is enabled and you're connected to WiFi\r\n\r\nI have WireGuard VPN on yet I still get this error when trying to refresh \r\n\r\nerror log mainly consists of this one error repeated:\r\n\r\nthread\r\n22:40:22 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n22:40:29 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n\r\n### Instructions to reproduce\r\n\r\nInstall using sidesever on macOS Ventura 13.2 onto iPhone 15 running iOS 17\r\n\r\ntry to refresh an app\r\n\r\n### What version of SideStore are you using?\r\n\r\n0.5.2\r\n\r\n### Other info\r\n\r\nCan’t put whole error log due to length", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/528/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882445588", + "html_url": "https://github.com/SideStore/SideStore/issues/528#issuecomment-1882445588", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/528", + "id": 1882445588, + "node_id": "IC_kwDOHS0Hg85wM9cU", + "user": { + "login": "Spidy123222", + "id": 64176728, + "node_id": "MDQ6VXNlcjY0MTc2NzI4", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "html_url": "https://github.com/Spidy123222", + "followers_url": "https://api.github.com/users/Spidy123222/followers", + "following_url": "https://api.github.com/users/Spidy123222/following{/other_user}", + "gists_url": "https://api.github.com/users/Spidy123222/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Spidy123222/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Spidy123222/subscriptions", + "organizations_url": "https://api.github.com/users/Spidy123222/orgs", + "repos_url": "https://api.github.com/users/Spidy123222/repos", + "events_url": "https://api.github.com/users/Spidy123222/events{/privacy}", + "received_events_url": "https://api.github.com/users/Spidy123222/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-09T05:42:33Z", + "updated_at": "2024-01-09T05:42:33Z", + "author_association": "NONE", + "body": "Also is a duplicate of https://github.com/SideStore/SideStore/issues/519", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882445588/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-09T05:42:35Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670119332", + "type": "IssueCommentEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/528", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/events", + "html_url": "https://github.com/SideStore/SideStore/issues/528", + "id": 1989838258, + "node_id": "I_kwDOHS0Hg852moWy", + "number": 528, + "title": "[BUG] Unable to connect to the device error when attempting to refresh", + "user": { + "login": "RaptorWasTaken", + "id": 93893385, + "node_id": "U_kgDOBZizCQ", + "avatar_url": "https://avatars.githubusercontent.com/u/93893385?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/RaptorWasTaken", + "html_url": "https://github.com/RaptorWasTaken", + "followers_url": "https://api.github.com/users/RaptorWasTaken/followers", + "following_url": "https://api.github.com/users/RaptorWasTaken/following{/other_user}", + "gists_url": "https://api.github.com/users/RaptorWasTaken/gists{/gist_id}", + "starred_url": "https://api.github.com/users/RaptorWasTaken/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/RaptorWasTaken/subscriptions", + "organizations_url": "https://api.github.com/users/RaptorWasTaken/orgs", + "repos_url": "https://api.github.com/users/RaptorWasTaken/repos", + "events_url": "https://api.github.com/users/RaptorWasTaken/events{/privacy}", + "received_events_url": "https://api.github.com/users/RaptorWasTaken/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085109, + "node_id": "LA_kwDOHS0Hg870veL1", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/bug", + "name": "bug", + "color": "d73a4a", + "default": true, + "description": "Something isn't working" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 3, + "created_at": "2023-11-13T03:50:57Z", + "updated_at": "2024-01-09T05:41:03Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the bug\r\n\r\nUnable to connect to the device, make sure Wireguard is enabled and you're connected to WiFi\r\n\r\nI have WireGuard VPN on yet I still get this error when trying to refresh \r\n\r\nerror log mainly consists of this one error repeated:\r\n\r\nthread\r\n22:40:22 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n22:40:29 [ERROR] minimuxer::heartbeat: Failed to create heartbeat client: UnknownError\r\n\r\n### Instructions to reproduce\r\n\r\nInstall using sidesever on macOS Ventura 13.2 onto iPhone 15 running iOS 17\r\n\r\ntry to refresh an app\r\n\r\n### What version of SideStore are you using?\r\n\r\n0.5.2\r\n\r\n### Other info\r\n\r\nCan’t put whole error log due to length", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/528/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/528/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882444521", + "html_url": "https://github.com/SideStore/SideStore/issues/528#issuecomment-1882444521", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/528", + "id": 1882444521, + "node_id": "IC_kwDOHS0Hg85wM9Lp", + "user": { + "login": "Spidy123222", + "id": 64176728, + "node_id": "MDQ6VXNlcjY0MTc2NzI4", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "html_url": "https://github.com/Spidy123222", + "followers_url": "https://api.github.com/users/Spidy123222/followers", + "following_url": "https://api.github.com/users/Spidy123222/following{/other_user}", + "gists_url": "https://api.github.com/users/Spidy123222/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Spidy123222/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Spidy123222/subscriptions", + "organizations_url": "https://api.github.com/users/Spidy123222/orgs", + "repos_url": "https://api.github.com/users/Spidy123222/repos", + "events_url": "https://api.github.com/users/Spidy123222/events{/privacy}", + "received_events_url": "https://api.github.com/users/Spidy123222/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-09T05:41:03Z", + "updated_at": "2024-01-09T05:41:03Z", + "author_association": "NONE", + "body": "> In the Wiki it says that we don't need to follow the jitterbugpair part for macOS (via AltServer).\n> \n> It always throws this error when I click \"+\", Idk what to do ¯\\_(ツ)_/¯ \n\nIt's Via sideserver not altserver on macOS. You need to reset your pairing file and use the new one.", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882444521/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-09T05:41:04Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670066214", + "type": "IssuesEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "closed", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/573", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/events", + "html_url": "https://github.com/SideStore/SideStore/issues/573", + "id": 2071612378, + "node_id": "I_kwDOHS0Hg857ekva", + "number": 573, + "title": "[FEATURE REQUEST] Auto Enable JIT", + "user": { + "login": "Francisc0422", + "id": 81933078, + "node_id": "MDQ6VXNlcjgxOTMzMDc4", + "avatar_url": "https://avatars.githubusercontent.com/u/81933078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Francisc0422", + "html_url": "https://github.com/Francisc0422", + "followers_url": "https://api.github.com/users/Francisc0422/followers", + "following_url": "https://api.github.com/users/Francisc0422/following{/other_user}", + "gists_url": "https://api.github.com/users/Francisc0422/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Francisc0422/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Francisc0422/subscriptions", + "organizations_url": "https://api.github.com/users/Francisc0422/orgs", + "repos_url": "https://api.github.com/users/Francisc0422/repos", + "events_url": "https://api.github.com/users/Francisc0422/events{/privacy}", + "received_events_url": "https://api.github.com/users/Francisc0422/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085112, + "node_id": "LA_kwDOHS0Hg870veL4", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2024-01-09T04:34:32Z", + "updated_at": "2024-01-09T05:37:35Z", + "closed_at": "2024-01-09T05:37:35Z", + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the feature\n\nSomething I would like to see is the option to use the shortcuts app in iOS to add a function to open an app with JIT enabled.\n\n### Use cases\n\nIn emulators or other application such as the Pojav Launcher, they need JIT to function correctly and it would make it’s just a slight bit easier to enable it.\n\n### Alternatives\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/573/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/timeline", + "performed_via_github_app": null, + "state_reason": "completed" + } + }, + "public": true, + "created_at": "2024-01-09T05:37:36Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34670064271", + "type": "IssueCommentEvent", + "actor": { + "id": 64176728, + "login": "Spidy123222", + "display_login": "Spidy123222", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "created", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/573", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/events", + "html_url": "https://github.com/SideStore/SideStore/issues/573", + "id": 2071612378, + "node_id": "I_kwDOHS0Hg857ekva", + "number": 573, + "title": "[FEATURE REQUEST] Auto Enable JIT", + "user": { + "login": "Francisc0422", + "id": 81933078, + "node_id": "MDQ6VXNlcjgxOTMzMDc4", + "avatar_url": "https://avatars.githubusercontent.com/u/81933078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Francisc0422", + "html_url": "https://github.com/Francisc0422", + "followers_url": "https://api.github.com/users/Francisc0422/followers", + "following_url": "https://api.github.com/users/Francisc0422/following{/other_user}", + "gists_url": "https://api.github.com/users/Francisc0422/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Francisc0422/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Francisc0422/subscriptions", + "organizations_url": "https://api.github.com/users/Francisc0422/orgs", + "repos_url": "https://api.github.com/users/Francisc0422/repos", + "events_url": "https://api.github.com/users/Francisc0422/events{/privacy}", + "received_events_url": "https://api.github.com/users/Francisc0422/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085112, + "node_id": "LA_kwDOHS0Hg870veL4", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2024-01-09T04:34:32Z", + "updated_at": "2024-01-09T05:37:28Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the feature\n\nSomething I would like to see is the option to use the shortcuts app in iOS to add a function to open an app with JIT enabled.\n\n### Use cases\n\nIn emulators or other application such as the Pojav Launcher, they need JIT to function correctly and it would make it’s just a slight bit easier to enable it.\n\n### Alternatives\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/573/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/timeline", + "performed_via_github_app": null, + "state_reason": null + }, + "comment": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882442052", + "html_url": "https://github.com/SideStore/SideStore/issues/573#issuecomment-1882442052", + "issue_url": "https://api.github.com/repos/SideStore/SideStore/issues/573", + "id": 1882442052, + "node_id": "IC_kwDOHS0Hg85wM8lE", + "user": { + "login": "Spidy123222", + "id": 64176728, + "node_id": "MDQ6VXNlcjY0MTc2NzI4", + "avatar_url": "https://avatars.githubusercontent.com/u/64176728?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Spidy123222", + "html_url": "https://github.com/Spidy123222", + "followers_url": "https://api.github.com/users/Spidy123222/followers", + "following_url": "https://api.github.com/users/Spidy123222/following{/other_user}", + "gists_url": "https://api.github.com/users/Spidy123222/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Spidy123222/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Spidy123222/subscriptions", + "organizations_url": "https://api.github.com/users/Spidy123222/orgs", + "repos_url": "https://api.github.com/users/Spidy123222/repos", + "events_url": "https://api.github.com/users/Spidy123222/events{/privacy}", + "received_events_url": "https://api.github.com/users/Spidy123222/received_events", + "type": "User", + "site_admin": false + }, + "created_at": "2024-01-09T05:37:27Z", + "updated_at": "2024-01-09T05:37:27Z", + "author_association": "NONE", + "body": "Duplicate of https://github.com/SideStore/SideStore/issues/166", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/comments/1882442052/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "performed_via_github_app": null + } + }, + "public": true, + "created_at": "2024-01-09T05:37:28Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34669746290", + "type": "PushEvent", + "actor": { + "id": 41898282, + "login": "github-actions[bot]", + "display_login": "github-actions", + "gravatar_id": "", + "url": "https://api.github.com/users/github-actions[bot]", + "avatar_url": "https://avatars.githubusercontent.com/u/41898282?" + }, + "repo": { + "id": 584057902, + "name": "SideStore/.github", + "url": "https://api.github.com/repos/SideStore/.github" + }, + "payload": { + "repository_id": 584057902, + "push_id": 16557932028, + "size": 1, + "distinct_size": 1, + "ref": "refs/heads/main", + "head": "c2fd7766b25cec2898af3699f11bc4e51914a710", + "before": "af24b832ce109510fe66938c369b3bbc87f3e562", + "commits": [ + { + "sha": "c2fd7766b25cec2898af3699f11bc4e51914a710", + "author": { + "email": "41898282+github-actions[bot]@users.noreply.github.com", + "name": "github-actions[bot]" + }, + "message": ":zap: Update README with the recent activity", + "distinct": true, + "url": "https://api.github.com/repos/SideStore/.github/commits/c2fd7766b25cec2898af3699f11bc4e51914a710" + } + ] + }, + "public": true, + "created_at": "2024-01-09T05:18:16Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34669112844", + "type": "IssuesEvent", + "actor": { + "id": 81933078, + "login": "Francisc0422", + "display_login": "Francisc0422", + "gravatar_id": "", + "url": "https://api.github.com/users/Francisc0422", + "avatar_url": "https://avatars.githubusercontent.com/u/81933078?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "opened", + "issue": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/573", + "repository_url": "https://api.github.com/repos/SideStore/SideStore", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/labels{/name}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/comments", + "events_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/events", + "html_url": "https://github.com/SideStore/SideStore/issues/573", + "id": 2071612378, + "node_id": "I_kwDOHS0Hg857ekva", + "number": 573, + "title": "[FEATURE REQUEST] Auto Enable JIT", + "user": { + "login": "Francisc0422", + "id": 81933078, + "node_id": "MDQ6VXNlcjgxOTMzMDc4", + "avatar_url": "https://avatars.githubusercontent.com/u/81933078?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/Francisc0422", + "html_url": "https://github.com/Francisc0422", + "followers_url": "https://api.github.com/users/Francisc0422/followers", + "following_url": "https://api.github.com/users/Francisc0422/following{/other_user}", + "gists_url": "https://api.github.com/users/Francisc0422/gists{/gist_id}", + "starred_url": "https://api.github.com/users/Francisc0422/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/Francisc0422/subscriptions", + "organizations_url": "https://api.github.com/users/Francisc0422/orgs", + "repos_url": "https://api.github.com/users/Francisc0422/repos", + "events_url": "https://api.github.com/users/Francisc0422/events{/privacy}", + "received_events_url": "https://api.github.com/users/Francisc0422/received_events", + "type": "User", + "site_admin": false + }, + "labels": [ + { + "id": 4106085112, + "node_id": "LA_kwDOHS0Hg870veL4", + "url": "https://api.github.com/repos/SideStore/SideStore/labels/enhancement", + "name": "enhancement", + "color": "a2eeef", + "default": true, + "description": "New feature or request" + } + ], + "state": "open", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2024-01-09T04:34:32Z", + "updated_at": "2024-01-09T04:34:32Z", + "closed_at": null, + "author_association": "NONE", + "active_lock_reason": null, + "body": "### Describe the feature\n\nSomething I would like to see is the option to use the shortcuts app in iOS to add a function to open an app with JIT enabled.\n\n### Use cases\n\nIn emulators or other application such as the Pojav Launcher, they need JIT to function correctly and it would make it’s just a slight bit easier to enable it.\n\n### Alternatives\n\n_No response_", + "reactions": { + "url": "https://api.github.com/repos/SideStore/SideStore/issues/573/reactions", + "total_count": 0, + "+1": 0, + "-1": 0, + "laugh": 0, + "hooray": 0, + "confused": 0, + "heart": 0, + "rocket": 0, + "eyes": 0 + }, + "timeline_url": "https://api.github.com/repos/SideStore/SideStore/issues/573/timeline", + "performed_via_github_app": null, + "state_reason": null + } + }, + "public": true, + "created_at": "2024-01-09T04:34:33Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34660824996", + "type": "WatchEvent", + "actor": { + "id": 51273849, + "login": "SarKaa", + "display_login": "SarKaa", + "gravatar_id": "", + "url": "https://api.github.com/users/SarKaa", + "avatar_url": "https://avatars.githubusercontent.com/u/51273849?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-08T20:07:03Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34651265379", + "type": "WatchEvent", + "actor": { + "id": 15686075, + "login": "q962", + "display_login": "q962", + "gravatar_id": "", + "url": "https://api.github.com/users/q962", + "avatar_url": "https://avatars.githubusercontent.com/u/15686075?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-08T14:19:22Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34635876666", + "type": "WatchEvent", + "actor": { + "id": 151382658, + "login": "josephjsteen1", + "display_login": "josephjsteen1", + "gravatar_id": "", + "url": "https://api.github.com/users/josephjsteen1", + "avatar_url": "https://avatars.githubusercontent.com/u/151382658?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-08T01:52:58Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34635830849", + "type": "WatchEvent", + "actor": { + "id": 151382658, + "login": "josephjsteen1", + "display_login": "josephjsteen1", + "gravatar_id": "", + "url": "https://api.github.com/users/josephjsteen1", + "avatar_url": "https://avatars.githubusercontent.com/u/151382658?" + }, + "repo": { + "id": 502541849, + "name": "SideStore/sidestore.github.io", + "url": "https://api.github.com/repos/SideStore/sidestore.github.io" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-08T01:48:41Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34635829879", + "type": "WatchEvent", + "actor": { + "id": 151382658, + "login": "josephjsteen1", + "display_login": "josephjsteen1", + "gravatar_id": "", + "url": "https://api.github.com/users/josephjsteen1", + "avatar_url": "https://avatars.githubusercontent.com/u/151382658?" + }, + "repo": { + "id": 589783030, + "name": "SideStore/apple-private-apis", + "url": "https://api.github.com/repos/SideStore/apple-private-apis" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-08T01:48:36Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34635828711", + "type": "WatchEvent", + "actor": { + "id": 151382658, + "login": "josephjsteen1", + "display_login": "josephjsteen1", + "gravatar_id": "", + "url": "https://api.github.com/users/josephjsteen1", + "avatar_url": "https://avatars.githubusercontent.com/u/151382658?" + }, + "repo": { + "id": 609742062, + "name": "SideStore/omnisette-server", + "url": "https://api.github.com/repos/SideStore/omnisette-server" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-08T01:48:30Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34630405607", + "type": "WatchEvent", + "actor": { + "id": 5357004, + "login": "daoye", + "display_login": "daoye", + "gravatar_id": "", + "url": "https://api.github.com/users/daoye", + "avatar_url": "https://avatars.githubusercontent.com/u/5357004?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-07T15:22:21Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + }, + { + "id": "34629463593", + "type": "WatchEvent", + "actor": { + "id": 24431667, + "login": "Jeffrey031", + "display_login": "Jeffrey031", + "gravatar_id": "", + "url": "https://api.github.com/users/Jeffrey031", + "avatar_url": "https://avatars.githubusercontent.com/u/24431667?" + }, + "repo": { + "id": 489490307, + "name": "SideStore/SideStore", + "url": "https://api.github.com/repos/SideStore/SideStore" + }, + "payload": { + "action": "started" + }, + "public": true, + "created_at": "2024-01-07T13:37:29Z", + "org": { + "id": 105070799, + "login": "SideStore", + "gravatar_id": "", + "url": "https://api.github.com/orgs/SideStore", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?" + } + } +] \ No newline at end of file diff --git a/public/assets/mockrepos.json b/public/assets/mockrepos.json new file mode 100644 index 0000000..6a8aef1 --- /dev/null +++ b/public/assets/mockrepos.json @@ -0,0 +1,3693 @@ +[ + { + "id": 584057902, + "node_id": "R_kgDOItAELg", + "name": ".github", + "full_name": "SideStore/.github", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/.github", + "description": "GitHub organization profile page", + "fork": false, + "url": "https://api.github.com/repos/SideStore/.github", + "forks_url": "https://api.github.com/repos/SideStore/.github/forks", + "keys_url": "https://api.github.com/repos/SideStore/.github/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/.github/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/.github/teams", + "hooks_url": "https://api.github.com/repos/SideStore/.github/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/.github/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/.github/events", + "assignees_url": "https://api.github.com/repos/SideStore/.github/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/.github/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/.github/tags", + "blobs_url": "https://api.github.com/repos/SideStore/.github/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/.github/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/.github/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/.github/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/.github/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/.github/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/.github/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/.github/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/.github/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/.github/subscription", + "commits_url": "https://api.github.com/repos/SideStore/.github/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/.github/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/.github/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/.github/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/.github/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/.github/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/.github/merges", + "archive_url": "https://api.github.com/repos/SideStore/.github/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/.github/downloads", + "issues_url": "https://api.github.com/repos/SideStore/.github/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/.github/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/.github/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/.github/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/.github/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/.github/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/.github/deployments", + "created_at": "2023-01-01T06:08:57Z", + "updated_at": "2023-02-15T10:48:02Z", + "pushed_at": "2024-01-19T16:24:18Z", + "git_url": "git://github.com/SideStore/.github.git", + "ssh_url": "git@github.com:SideStore/.github.git", + "clone_url": "https://github.com/SideStore/.github.git", + "svn_url": "https://github.com/SideStore/.github", + "homepage": null, + "size": 450, + "stargazers_count": 3, + "watchers_count": 3, + "language": null, + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 3, + "open_issues": 2, + "watchers": 3, + "default_branch": "main" + }, + { + "id": 600375953, + "node_id": "R_kgDOI8kCkQ", + "name": "Altcon", + "full_name": "SideStore/Altcon", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/Altcon", + "description": "AltServer-Linux in a container w/ selfhosted anisette server", + "fork": false, + "url": "https://api.github.com/repos/SideStore/Altcon", + "forks_url": "https://api.github.com/repos/SideStore/Altcon/forks", + "keys_url": "https://api.github.com/repos/SideStore/Altcon/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/Altcon/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/Altcon/teams", + "hooks_url": "https://api.github.com/repos/SideStore/Altcon/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/Altcon/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/Altcon/events", + "assignees_url": "https://api.github.com/repos/SideStore/Altcon/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/Altcon/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/Altcon/tags", + "blobs_url": "https://api.github.com/repos/SideStore/Altcon/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/Altcon/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/Altcon/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/Altcon/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/Altcon/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/Altcon/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/Altcon/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/Altcon/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/Altcon/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/Altcon/subscription", + "commits_url": "https://api.github.com/repos/SideStore/Altcon/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/Altcon/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/Altcon/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/Altcon/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/Altcon/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/Altcon/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/Altcon/merges", + "archive_url": "https://api.github.com/repos/SideStore/Altcon/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/Altcon/downloads", + "issues_url": "https://api.github.com/repos/SideStore/Altcon/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/Altcon/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/Altcon/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/Altcon/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/Altcon/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/Altcon/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/Altcon/deployments", + "created_at": "2023-02-11T09:49:04Z", + "updated_at": "2023-12-05T07:23:55Z", + "pushed_at": "2023-11-16T09:39:17Z", + "git_url": "git://github.com/SideStore/Altcon.git", + "ssh_url": "git@github.com:SideStore/Altcon.git", + "clone_url": "https://github.com/SideStore/Altcon.git", + "svn_url": "https://github.com/SideStore/Altcon", + "homepage": null, + "size": 62, + "stargazers_count": 12, + "watchers_count": 12, + "language": "Shell", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 5, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 5, + "open_issues": 0, + "watchers": 12, + "default_branch": "main" + }, + { + "id": 497517349, + "node_id": "R_kgDOHaeDJQ", + "name": "AltServer-Linux", + "full_name": "SideStore/AltServer-Linux", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/AltServer-Linux", + "description": "AltServer for AltStore, but on-device", + "fork": true, + "url": "https://api.github.com/repos/SideStore/AltServer-Linux", + "forks_url": "https://api.github.com/repos/SideStore/AltServer-Linux/forks", + "keys_url": "https://api.github.com/repos/SideStore/AltServer-Linux/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/AltServer-Linux/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/AltServer-Linux/teams", + "hooks_url": "https://api.github.com/repos/SideStore/AltServer-Linux/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/AltServer-Linux/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/AltServer-Linux/events", + "assignees_url": "https://api.github.com/repos/SideStore/AltServer-Linux/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/AltServer-Linux/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/AltServer-Linux/tags", + "blobs_url": "https://api.github.com/repos/SideStore/AltServer-Linux/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/AltServer-Linux/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/AltServer-Linux/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/AltServer-Linux/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/AltServer-Linux/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/AltServer-Linux/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/AltServer-Linux/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/AltServer-Linux/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/AltServer-Linux/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/AltServer-Linux/subscription", + "commits_url": "https://api.github.com/repos/SideStore/AltServer-Linux/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/AltServer-Linux/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/AltServer-Linux/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/AltServer-Linux/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/AltServer-Linux/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/AltServer-Linux/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/AltServer-Linux/merges", + "archive_url": "https://api.github.com/repos/SideStore/AltServer-Linux/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/AltServer-Linux/downloads", + "issues_url": "https://api.github.com/repos/SideStore/AltServer-Linux/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/AltServer-Linux/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/AltServer-Linux/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/AltServer-Linux/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/AltServer-Linux/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/AltServer-Linux/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/AltServer-Linux/deployments", + "created_at": "2022-05-29T07:14:20Z", + "updated_at": "2023-03-20T04:58:28Z", + "pushed_at": "2023-03-20T04:58:23Z", + "git_url": "git://github.com/SideStore/AltServer-Linux.git", + "ssh_url": "git@github.com:SideStore/AltServer-Linux.git", + "clone_url": "https://github.com/SideStore/AltServer-Linux.git", + "svn_url": "https://github.com/SideStore/AltServer-Linux", + "homepage": null, + "size": 117, + "stargazers_count": 1, + "watchers_count": 1, + "language": "C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "new" + }, + { + "id": 496850502, + "node_id": "R_kgDOHZ1WRg", + "name": "AltSign", + "full_name": "SideStore/AltSign", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/AltSign", + "description": "Swift package for SideStore library", + "fork": true, + "url": "https://api.github.com/repos/SideStore/AltSign", + "forks_url": "https://api.github.com/repos/SideStore/AltSign/forks", + "keys_url": "https://api.github.com/repos/SideStore/AltSign/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/AltSign/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/AltSign/teams", + "hooks_url": "https://api.github.com/repos/SideStore/AltSign/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/AltSign/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/AltSign/events", + "assignees_url": "https://api.github.com/repos/SideStore/AltSign/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/AltSign/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/AltSign/tags", + "blobs_url": "https://api.github.com/repos/SideStore/AltSign/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/AltSign/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/AltSign/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/AltSign/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/AltSign/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/AltSign/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/AltSign/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/AltSign/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/AltSign/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/AltSign/subscription", + "commits_url": "https://api.github.com/repos/SideStore/AltSign/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/AltSign/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/AltSign/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/AltSign/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/AltSign/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/AltSign/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/AltSign/merges", + "archive_url": "https://api.github.com/repos/SideStore/AltSign/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/AltSign/downloads", + "issues_url": "https://api.github.com/repos/SideStore/AltSign/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/AltSign/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/AltSign/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/AltSign/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/AltSign/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/AltSign/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/AltSign/deployments", + "created_at": "2022-05-27T03:36:25Z", + "updated_at": "2023-07-18T11:05:09Z", + "pushed_at": "2023-08-06T19:22:43Z", + "git_url": "git://github.com/SideStore/AltSign.git", + "ssh_url": "git@github.com:SideStore/AltSign.git", + "clone_url": "https://github.com/SideStore/AltSign.git", + "svn_url": "https://github.com/SideStore/AltSign", + "homepage": "", + "size": 510, + "stargazers_count": 3, + "watchers_count": 3, + "language": "C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 2, + "open_issues": 0, + "watchers": 3, + "default_branch": "master" + }, + { + "id": 589783030, + "node_id": "R_kgDOIydf9g", + "name": "apple-private-apis", + "full_name": "SideStore/apple-private-apis", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/apple-private-apis", + "description": "A set of Rust libraries to interact with apple's private APIs and servers.", + "fork": false, + "url": "https://api.github.com/repos/SideStore/apple-private-apis", + "forks_url": "https://api.github.com/repos/SideStore/apple-private-apis/forks", + "keys_url": "https://api.github.com/repos/SideStore/apple-private-apis/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/apple-private-apis/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/apple-private-apis/teams", + "hooks_url": "https://api.github.com/repos/SideStore/apple-private-apis/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/apple-private-apis/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/apple-private-apis/events", + "assignees_url": "https://api.github.com/repos/SideStore/apple-private-apis/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/apple-private-apis/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/apple-private-apis/tags", + "blobs_url": "https://api.github.com/repos/SideStore/apple-private-apis/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/apple-private-apis/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/apple-private-apis/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/apple-private-apis/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/apple-private-apis/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/apple-private-apis/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/apple-private-apis/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/apple-private-apis/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/apple-private-apis/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/apple-private-apis/subscription", + "commits_url": "https://api.github.com/repos/SideStore/apple-private-apis/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/apple-private-apis/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/apple-private-apis/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/apple-private-apis/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/apple-private-apis/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/apple-private-apis/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/apple-private-apis/merges", + "archive_url": "https://api.github.com/repos/SideStore/apple-private-apis/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/apple-private-apis/downloads", + "issues_url": "https://api.github.com/repos/SideStore/apple-private-apis/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/apple-private-apis/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/apple-private-apis/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/apple-private-apis/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/apple-private-apis/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/apple-private-apis/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/apple-private-apis/deployments", + "created_at": "2023-01-16T23:24:37Z", + "updated_at": "2024-01-15T07:46:59Z", + "pushed_at": "2023-10-16T18:36:43Z", + "git_url": "git://github.com/SideStore/apple-private-apis.git", + "ssh_url": "git@github.com:SideStore/apple-private-apis.git", + "clone_url": "https://github.com/SideStore/apple-private-apis.git", + "svn_url": "https://github.com/SideStore/apple-private-apis", + "homepage": "", + "size": 116, + "stargazers_count": 50, + "watchers_count": 50, + "language": "Rust", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 9, + "license": { + "key": "lgpl-2.1", + "name": "GNU Lesser General Public License v2.1", + "spdx_id": "LGPL-2.1", + "url": "https://api.github.com/licenses/lgpl-2.1", + "node_id": "MDc6TGljZW5zZTEx" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [ + "anisette", + "apple", + "auth", + "authentication", + "grandslam", + "gsa", + "icloud", + "ios", + "macos", + "omnisette", + "rust", + "sideinstaller", + "sidestore", + "signing", + "xcode" + ], + "visibility": "public", + "forks": 8, + "open_issues": 9, + "watchers": 50, + "default_branch": "master" + }, + { + "id": 507229548, + "node_id": "R_kgDOHju1bA", + "name": "apps.json", + "full_name": "SideStore/apps.json", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/apps.json", + "description": "Web source for apps.json https://apps.sidestore.io", + "fork": false, + "url": "https://api.github.com/repos/SideStore/apps.json", + "forks_url": "https://api.github.com/repos/SideStore/apps.json/forks", + "keys_url": "https://api.github.com/repos/SideStore/apps.json/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/apps.json/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/apps.json/teams", + "hooks_url": "https://api.github.com/repos/SideStore/apps.json/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/apps.json/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/apps.json/events", + "assignees_url": "https://api.github.com/repos/SideStore/apps.json/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/apps.json/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/apps.json/tags", + "blobs_url": "https://api.github.com/repos/SideStore/apps.json/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/apps.json/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/apps.json/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/apps.json/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/apps.json/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/apps.json/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/apps.json/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/apps.json/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/apps.json/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/apps.json/subscription", + "commits_url": "https://api.github.com/repos/SideStore/apps.json/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/apps.json/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/apps.json/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/apps.json/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/apps.json/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/apps.json/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/apps.json/merges", + "archive_url": "https://api.github.com/repos/SideStore/apps.json/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/apps.json/downloads", + "issues_url": "https://api.github.com/repos/SideStore/apps.json/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/apps.json/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/apps.json/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/apps.json/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/apps.json/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/apps.json/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/apps.json/deployments", + "created_at": "2022-06-25T06:09:54Z", + "updated_at": "2023-12-19T16:03:07Z", + "pushed_at": "2023-11-28T02:13:38Z", + "git_url": "git://github.com/SideStore/apps.json.git", + "ssh_url": "git@github.com:SideStore/apps.json.git", + "clone_url": "https://github.com/SideStore/apps.json.git", + "svn_url": "https://github.com/SideStore/apps.json", + "homepage": "https://apps.sidestore.io", + "size": 13881, + "stargazers_count": 15, + "watchers_count": 15, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "unlicense", + "name": "The Unlicense", + "spdx_id": "Unlicense", + "url": "https://api.github.com/licenses/unlicense", + "node_id": "MDc6TGljZW5zZTE1" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [ + "altstore", + "altstore-beta", + "altstore-repo", + "sidestore", + "sidestore-repo" + ], + "visibility": "public", + "forks": 4, + "open_issues": 0, + "watchers": 15, + "default_branch": "main" + }, + { + "id": 596388292, + "node_id": "R_kgDOI4wpxA", + "name": "assets", + "full_name": "SideStore/assets", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/assets", + "description": "Assets for SideStore such as icons, screenshots and more.", + "fork": false, + "url": "https://api.github.com/repos/SideStore/assets", + "forks_url": "https://api.github.com/repos/SideStore/assets/forks", + "keys_url": "https://api.github.com/repos/SideStore/assets/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/assets/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/assets/teams", + "hooks_url": "https://api.github.com/repos/SideStore/assets/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/assets/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/assets/events", + "assignees_url": "https://api.github.com/repos/SideStore/assets/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/assets/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/assets/tags", + "blobs_url": "https://api.github.com/repos/SideStore/assets/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/assets/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/assets/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/assets/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/assets/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/assets/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/assets/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/assets/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/assets/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/assets/subscription", + "commits_url": "https://api.github.com/repos/SideStore/assets/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/assets/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/assets/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/assets/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/assets/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/assets/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/assets/merges", + "archive_url": "https://api.github.com/repos/SideStore/assets/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/assets/downloads", + "issues_url": "https://api.github.com/repos/SideStore/assets/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/assets/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/assets/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/assets/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/assets/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/assets/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/assets/deployments", + "created_at": "2023-02-02T04:13:59Z", + "updated_at": "2023-07-24T20:25:55Z", + "pushed_at": "2023-03-20T04:18:40Z", + "git_url": "git://github.com/SideStore/assets.git", + "ssh_url": "git@github.com:SideStore/assets.git", + "clone_url": "https://github.com/SideStore/assets.git", + "svn_url": "https://github.com/SideStore/assets", + "homepage": "https://sidestore.io/assets/icon.png", + "size": 15788, + "stargazers_count": 3, + "watchers_count": 3, + "language": null, + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 3, + "default_branch": "main" + }, + { + "id": 546904885, + "node_id": "R_kgDOIJkbNQ", + "name": "Community-Source", + "full_name": "SideStore/Community-Source", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/Community-Source", + "description": "Repo for our Community Source and Trusted Source submissions. Please create tickets here to request your app(s) be added to our Trusted Apps", + "fork": false, + "url": "https://api.github.com/repos/SideStore/Community-Source", + "forks_url": "https://api.github.com/repos/SideStore/Community-Source/forks", + "keys_url": "https://api.github.com/repos/SideStore/Community-Source/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/Community-Source/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/Community-Source/teams", + "hooks_url": "https://api.github.com/repos/SideStore/Community-Source/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/Community-Source/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/Community-Source/events", + "assignees_url": "https://api.github.com/repos/SideStore/Community-Source/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/Community-Source/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/Community-Source/tags", + "blobs_url": "https://api.github.com/repos/SideStore/Community-Source/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/Community-Source/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/Community-Source/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/Community-Source/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/Community-Source/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/Community-Source/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/Community-Source/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/Community-Source/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/Community-Source/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/Community-Source/subscription", + "commits_url": "https://api.github.com/repos/SideStore/Community-Source/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/Community-Source/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/Community-Source/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/Community-Source/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/Community-Source/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/Community-Source/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/Community-Source/merges", + "archive_url": "https://api.github.com/repos/SideStore/Community-Source/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/Community-Source/downloads", + "issues_url": "https://api.github.com/repos/SideStore/Community-Source/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/Community-Source/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/Community-Source/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/Community-Source/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/Community-Source/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/Community-Source/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/Community-Source/deployments", + "created_at": "2022-10-06T20:58:19Z", + "updated_at": "2023-12-24T21:12:09Z", + "pushed_at": "2023-10-19T05:51:23Z", + "git_url": "git://github.com/SideStore/Community-Source.git", + "ssh_url": "git@github.com:SideStore/Community-Source.git", + "clone_url": "https://github.com/SideStore/Community-Source.git", + "svn_url": "https://github.com/SideStore/Community-Source", + "homepage": "https://community-apps.sidestore.io", + "size": 5208, + "stargazers_count": 30, + "watchers_count": 30, + "language": "Python", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": true, + "forks_count": 2, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [ + "altstore", + "community", + "sideload", + "sideloading", + "sideloading-ipas", + "sidestore" + ], + "visibility": "public", + "forks": 2, + "open_issues": 6, + "watchers": 30, + "default_branch": "main" + }, + { + "id": 559347724, + "node_id": "R_kgDOIVb4DA", + "name": "em_proxy", + "full_name": "SideStore/em_proxy", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/em_proxy", + "description": "A proxy that causes emotional damage to the user and Apple", + "fork": true, + "url": "https://api.github.com/repos/SideStore/em_proxy", + "forks_url": "https://api.github.com/repos/SideStore/em_proxy/forks", + "keys_url": "https://api.github.com/repos/SideStore/em_proxy/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/em_proxy/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/em_proxy/teams", + "hooks_url": "https://api.github.com/repos/SideStore/em_proxy/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/em_proxy/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/em_proxy/events", + "assignees_url": "https://api.github.com/repos/SideStore/em_proxy/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/em_proxy/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/em_proxy/tags", + "blobs_url": "https://api.github.com/repos/SideStore/em_proxy/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/em_proxy/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/em_proxy/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/em_proxy/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/em_proxy/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/em_proxy/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/em_proxy/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/em_proxy/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/em_proxy/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/em_proxy/subscription", + "commits_url": "https://api.github.com/repos/SideStore/em_proxy/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/em_proxy/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/em_proxy/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/em_proxy/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/em_proxy/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/em_proxy/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/em_proxy/merges", + "archive_url": "https://api.github.com/repos/SideStore/em_proxy/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/em_proxy/downloads", + "issues_url": "https://api.github.com/repos/SideStore/em_proxy/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/em_proxy/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/em_proxy/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/em_proxy/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/em_proxy/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/em_proxy/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/em_proxy/deployments", + "created_at": "2022-10-29T20:41:02Z", + "updated_at": "2023-12-27T10:55:28Z", + "pushed_at": "2023-03-20T04:08:15Z", + "git_url": "git://github.com/SideStore/em_proxy.git", + "ssh_url": "git@github.com:SideStore/em_proxy.git", + "clone_url": "https://github.com/SideStore/em_proxy.git", + "svn_url": "https://github.com/SideStore/em_proxy", + "homepage": null, + "size": 51, + "stargazers_count": 5, + "watchers_count": 5, + "language": "Rust", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 6, + "open_issues": 0, + "watchers": 5, + "default_branch": "master" + }, + { + "id": 608352524, + "node_id": "R_kgDOJEK5DA", + "name": "iMobileDevice.swift", + "full_name": "SideStore/iMobileDevice.swift", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/iMobileDevice.swift", + "description": "\"Swift package wrapper for libimobiledevice, libpist and libusbmuxd\"", + "fork": false, + "url": "https://api.github.com/repos/SideStore/iMobileDevice.swift", + "forks_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/forks", + "keys_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/teams", + "hooks_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/events", + "assignees_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/tags", + "blobs_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/subscription", + "commits_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/merges", + "archive_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/downloads", + "issues_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/iMobileDevice.swift/deployments", + "created_at": "2023-03-01T20:56:41Z", + "updated_at": "2023-10-10T06:33:42Z", + "pushed_at": "2023-03-20T03:29:55Z", + "git_url": "git://github.com/SideStore/iMobileDevice.swift.git", + "ssh_url": "git@github.com:SideStore/iMobileDevice.swift.git", + "clone_url": "https://github.com/SideStore/iMobileDevice.swift.git", + "svn_url": "https://github.com/SideStore/iMobileDevice.swift", + "homepage": null, + "size": 37, + "stargazers_count": 6, + "watchers_count": 6, + "language": "Swift", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [ + "ios", + "swift", + "swift-package-manager" + ], + "visibility": "public", + "forks": 1, + "open_issues": 0, + "watchers": 6, + "default_branch": "main" + }, + { + "id": 496851335, + "node_id": "R_kgDOHZ1Zhw", + "name": "ldid", + "full_name": "SideStore/ldid", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/ldid", + "description": "Fork of saurik's ldid as used in AltStore.", + "fork": true, + "url": "https://api.github.com/repos/SideStore/ldid", + "forks_url": "https://api.github.com/repos/SideStore/ldid/forks", + "keys_url": "https://api.github.com/repos/SideStore/ldid/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/ldid/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/ldid/teams", + "hooks_url": "https://api.github.com/repos/SideStore/ldid/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/ldid/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/ldid/events", + "assignees_url": "https://api.github.com/repos/SideStore/ldid/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/ldid/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/ldid/tags", + "blobs_url": "https://api.github.com/repos/SideStore/ldid/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/ldid/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/ldid/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/ldid/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/ldid/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/ldid/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/ldid/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/ldid/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/ldid/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/ldid/subscription", + "commits_url": "https://api.github.com/repos/SideStore/ldid/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/ldid/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/ldid/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/ldid/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/ldid/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/ldid/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/ldid/merges", + "archive_url": "https://api.github.com/repos/SideStore/ldid/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/ldid/downloads", + "issues_url": "https://api.github.com/repos/SideStore/ldid/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/ldid/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/ldid/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/ldid/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/ldid/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/ldid/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/ldid/deployments", + "created_at": "2022-05-27T03:40:58Z", + "updated_at": "2022-04-20T10:35:03Z", + "pushed_at": "2022-05-25T23:22:24Z", + "git_url": "git://github.com/SideStore/ldid.git", + "ssh_url": "git@github.com:SideStore/ldid.git", + "clone_url": "https://github.com/SideStore/ldid.git", + "svn_url": "https://github.com/SideStore/ldid", + "homepage": null, + "size": 267, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + { + "id": 507216725, + "node_id": "R_kgDOHjuDVQ", + "name": "libfragmentzip", + "full_name": "SideStore/libfragmentzip", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/libfragmentzip", + "description": "A library allowing to download single files from a remote zip archive", + "fork": true, + "url": "https://api.github.com/repos/SideStore/libfragmentzip", + "forks_url": "https://api.github.com/repos/SideStore/libfragmentzip/forks", + "keys_url": "https://api.github.com/repos/SideStore/libfragmentzip/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/libfragmentzip/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/libfragmentzip/teams", + "hooks_url": "https://api.github.com/repos/SideStore/libfragmentzip/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/libfragmentzip/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/libfragmentzip/events", + "assignees_url": "https://api.github.com/repos/SideStore/libfragmentzip/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/libfragmentzip/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/libfragmentzip/tags", + "blobs_url": "https://api.github.com/repos/SideStore/libfragmentzip/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/libfragmentzip/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/libfragmentzip/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/libfragmentzip/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/libfragmentzip/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/libfragmentzip/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/libfragmentzip/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/libfragmentzip/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/libfragmentzip/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/libfragmentzip/subscription", + "commits_url": "https://api.github.com/repos/SideStore/libfragmentzip/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/libfragmentzip/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/libfragmentzip/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/libfragmentzip/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/libfragmentzip/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/libfragmentzip/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/libfragmentzip/merges", + "archive_url": "https://api.github.com/repos/SideStore/libfragmentzip/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/libfragmentzip/downloads", + "issues_url": "https://api.github.com/repos/SideStore/libfragmentzip/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/libfragmentzip/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/libfragmentzip/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/libfragmentzip/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/libfragmentzip/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/libfragmentzip/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/libfragmentzip/deployments", + "created_at": "2022-06-25T04:53:18Z", + "updated_at": "2023-09-09T14:15:41Z", + "pushed_at": "2023-03-20T05:11:07Z", + "git_url": "git://github.com/SideStore/libfragmentzip.git", + "ssh_url": "git@github.com:SideStore/libfragmentzip.git", + "clone_url": "https://github.com/SideStore/libfragmentzip.git", + "svn_url": "https://github.com/SideStore/libfragmentzip", + "homepage": null, + "size": 372, + "stargazers_count": 1, + "watchers_count": 1, + "language": "C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-3.0", + "name": "GNU Lesser General Public License v3.0", + "spdx_id": "LGPL-3.0", + "url": "https://api.github.com/licenses/lgpl-3.0", + "node_id": "MDc6TGljZW5zZTEy" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master" + }, + { + "id": 507217141, + "node_id": "R_kgDOHjuE9Q", + "name": "libgeneral", + "full_name": "SideStore/libgeneral", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/libgeneral", + "description": "general stuff for projects", + "fork": true, + "url": "https://api.github.com/repos/SideStore/libgeneral", + "forks_url": "https://api.github.com/repos/SideStore/libgeneral/forks", + "keys_url": "https://api.github.com/repos/SideStore/libgeneral/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/libgeneral/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/libgeneral/teams", + "hooks_url": "https://api.github.com/repos/SideStore/libgeneral/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/libgeneral/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/libgeneral/events", + "assignees_url": "https://api.github.com/repos/SideStore/libgeneral/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/libgeneral/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/libgeneral/tags", + "blobs_url": "https://api.github.com/repos/SideStore/libgeneral/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/libgeneral/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/libgeneral/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/libgeneral/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/libgeneral/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/libgeneral/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/libgeneral/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/libgeneral/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/libgeneral/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/libgeneral/subscription", + "commits_url": "https://api.github.com/repos/SideStore/libgeneral/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/libgeneral/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/libgeneral/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/libgeneral/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/libgeneral/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/libgeneral/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/libgeneral/merges", + "archive_url": "https://api.github.com/repos/SideStore/libgeneral/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/libgeneral/downloads", + "issues_url": "https://api.github.com/repos/SideStore/libgeneral/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/libgeneral/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/libgeneral/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/libgeneral/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/libgeneral/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/libgeneral/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/libgeneral/deployments", + "created_at": "2022-06-25T04:56:03Z", + "updated_at": "2023-10-01T19:41:33Z", + "pushed_at": "2022-03-21T15:46:16Z", + "git_url": "git://github.com/SideStore/libgeneral.git", + "ssh_url": "git@github.com:SideStore/libgeneral.git", + "clone_url": "https://github.com/SideStore/libgeneral.git", + "svn_url": "https://github.com/SideStore/libgeneral", + "homepage": null, + "size": 102, + "stargazers_count": 1, + "watchers_count": 1, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-2.1", + "name": "GNU Lesser General Public License v2.1", + "spdx_id": "LGPL-2.1", + "url": "https://api.github.com/licenses/lgpl-2.1", + "node_id": "MDc6TGljZW5zZTEx" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "master" + }, + { + "id": 500716678, + "node_id": "R_kgDOHdhUhg", + "name": "libimobiledevice", + "full_name": "SideStore/libimobiledevice", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/libimobiledevice", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/SideStore/libimobiledevice", + "forks_url": "https://api.github.com/repos/SideStore/libimobiledevice/forks", + "keys_url": "https://api.github.com/repos/SideStore/libimobiledevice/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/libimobiledevice/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/libimobiledevice/teams", + "hooks_url": "https://api.github.com/repos/SideStore/libimobiledevice/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/libimobiledevice/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/libimobiledevice/events", + "assignees_url": "https://api.github.com/repos/SideStore/libimobiledevice/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/libimobiledevice/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/libimobiledevice/tags", + "blobs_url": "https://api.github.com/repos/SideStore/libimobiledevice/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/libimobiledevice/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/libimobiledevice/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/libimobiledevice/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/libimobiledevice/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/libimobiledevice/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/libimobiledevice/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/libimobiledevice/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/libimobiledevice/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/libimobiledevice/subscription", + "commits_url": "https://api.github.com/repos/SideStore/libimobiledevice/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/libimobiledevice/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/libimobiledevice/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/libimobiledevice/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/libimobiledevice/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/libimobiledevice/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/libimobiledevice/merges", + "archive_url": "https://api.github.com/repos/SideStore/libimobiledevice/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/libimobiledevice/downloads", + "issues_url": "https://api.github.com/repos/SideStore/libimobiledevice/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/libimobiledevice/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/libimobiledevice/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/libimobiledevice/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/libimobiledevice/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/libimobiledevice/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/libimobiledevice/deployments", + "created_at": "2022-06-07T06:28:29Z", + "updated_at": "2023-01-03T15:34:12Z", + "pushed_at": "2023-03-20T05:07:11Z", + "git_url": "git://github.com/SideStore/libimobiledevice.git", + "ssh_url": "git@github.com:SideStore/libimobiledevice.git", + "clone_url": "https://github.com/SideStore/libimobiledevice.git", + "svn_url": "https://github.com/SideStore/libimobiledevice", + "homepage": null, + "size": 2794, + "stargazers_count": 2, + "watchers_count": 2, + "language": "C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-2.1", + "name": "GNU Lesser General Public License v2.1", + "spdx_id": "LGPL-2.1", + "url": "https://api.github.com/licenses/lgpl-2.1", + "node_id": "MDc6TGljZW5zZTEx" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 2, + "default_branch": "master" + }, + { + "id": 533022109, + "node_id": "R_kgDOH8VFnQ", + "name": "libplist", + "full_name": "SideStore/libplist", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/libplist", + "description": "A library to handle Apple Property List format in binary or XML", + "fork": true, + "url": "https://api.github.com/repos/SideStore/libplist", + "forks_url": "https://api.github.com/repos/SideStore/libplist/forks", + "keys_url": "https://api.github.com/repos/SideStore/libplist/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/libplist/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/libplist/teams", + "hooks_url": "https://api.github.com/repos/SideStore/libplist/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/libplist/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/libplist/events", + "assignees_url": "https://api.github.com/repos/SideStore/libplist/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/libplist/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/libplist/tags", + "blobs_url": "https://api.github.com/repos/SideStore/libplist/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/libplist/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/libplist/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/libplist/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/libplist/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/libplist/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/libplist/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/libplist/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/libplist/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/libplist/subscription", + "commits_url": "https://api.github.com/repos/SideStore/libplist/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/libplist/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/libplist/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/libplist/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/libplist/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/libplist/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/libplist/merges", + "archive_url": "https://api.github.com/repos/SideStore/libplist/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/libplist/downloads", + "issues_url": "https://api.github.com/repos/SideStore/libplist/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/libplist/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/libplist/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/libplist/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/libplist/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/libplist/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/libplist/deployments", + "created_at": "2022-09-05T18:48:49Z", + "updated_at": "2023-09-09T14:18:14Z", + "pushed_at": "2023-10-22T00:27:12Z", + "git_url": "git://github.com/SideStore/libplist.git", + "ssh_url": "git@github.com:SideStore/libplist.git", + "clone_url": "https://github.com/SideStore/libplist.git", + "svn_url": "https://github.com/SideStore/libplist", + "homepage": "https://libimobiledevice.org", + "size": 1629, + "stargazers_count": 1, + "watchers_count": 1, + "language": "C", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "lgpl-2.1", + "name": "GNU Lesser General Public License v2.1", + "spdx_id": "LGPL-2.1", + "url": "https://api.github.com/licenses/lgpl-2.1", + "node_id": "MDc6TGljZW5zZTEx" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master" + }, + { + "id": 559347647, + "node_id": "R_kgDOIVb3vw", + "name": "minimuxer", + "full_name": "SideStore/minimuxer", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/minimuxer", + "description": "A lockdown muxer built to run on an iOS device ", + "fork": true, + "url": "https://api.github.com/repos/SideStore/minimuxer", + "forks_url": "https://api.github.com/repos/SideStore/minimuxer/forks", + "keys_url": "https://api.github.com/repos/SideStore/minimuxer/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/minimuxer/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/minimuxer/teams", + "hooks_url": "https://api.github.com/repos/SideStore/minimuxer/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/minimuxer/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/minimuxer/events", + "assignees_url": "https://api.github.com/repos/SideStore/minimuxer/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/minimuxer/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/minimuxer/tags", + "blobs_url": "https://api.github.com/repos/SideStore/minimuxer/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/minimuxer/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/minimuxer/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/minimuxer/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/minimuxer/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/minimuxer/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/minimuxer/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/minimuxer/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/minimuxer/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/minimuxer/subscription", + "commits_url": "https://api.github.com/repos/SideStore/minimuxer/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/minimuxer/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/minimuxer/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/minimuxer/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/minimuxer/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/minimuxer/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/minimuxer/merges", + "archive_url": "https://api.github.com/repos/SideStore/minimuxer/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/minimuxer/downloads", + "issues_url": "https://api.github.com/repos/SideStore/minimuxer/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/minimuxer/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/minimuxer/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/minimuxer/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/minimuxer/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/minimuxer/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/minimuxer/deployments", + "created_at": "2022-10-29T20:40:40Z", + "updated_at": "2023-11-18T08:35:33Z", + "pushed_at": "2023-10-20T23:47:15Z", + "git_url": "git://github.com/SideStore/minimuxer.git", + "ssh_url": "git@github.com:SideStore/minimuxer.git", + "clone_url": "https://github.com/SideStore/minimuxer.git", + "svn_url": "https://github.com/SideStore/minimuxer", + "homepage": null, + "size": 152, + "stargazers_count": 3, + "watchers_count": 3, + "language": "Rust", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 9, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 9, + "open_issues": 2, + "watchers": 3, + "default_branch": "master" + }, + { + "id": 609742062, + "node_id": "R_kgDOJFfs7g", + "name": "omnisette-server", + "full_name": "SideStore/omnisette-server", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/omnisette-server", + "description": "An HTTP server wrapper for omnisette. Supports both V1 (Provision) and V3 of anisette servers.", + "fork": false, + "url": "https://api.github.com/repos/SideStore/omnisette-server", + "forks_url": "https://api.github.com/repos/SideStore/omnisette-server/forks", + "keys_url": "https://api.github.com/repos/SideStore/omnisette-server/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/omnisette-server/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/omnisette-server/teams", + "hooks_url": "https://api.github.com/repos/SideStore/omnisette-server/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/omnisette-server/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/omnisette-server/events", + "assignees_url": "https://api.github.com/repos/SideStore/omnisette-server/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/omnisette-server/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/omnisette-server/tags", + "blobs_url": "https://api.github.com/repos/SideStore/omnisette-server/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/omnisette-server/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/omnisette-server/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/omnisette-server/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/omnisette-server/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/omnisette-server/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/omnisette-server/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/omnisette-server/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/omnisette-server/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/omnisette-server/subscription", + "commits_url": "https://api.github.com/repos/SideStore/omnisette-server/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/omnisette-server/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/omnisette-server/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/omnisette-server/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/omnisette-server/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/omnisette-server/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/omnisette-server/merges", + "archive_url": "https://api.github.com/repos/SideStore/omnisette-server/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/omnisette-server/downloads", + "issues_url": "https://api.github.com/repos/SideStore/omnisette-server/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/omnisette-server/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/omnisette-server/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/omnisette-server/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/omnisette-server/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/omnisette-server/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/omnisette-server/deployments", + "created_at": "2023-03-05T04:52:58Z", + "updated_at": "2024-01-11T08:06:05Z", + "pushed_at": "2024-01-19T16:12:12Z", + "git_url": "git://github.com/SideStore/omnisette-server.git", + "ssh_url": "git@github.com:SideStore/omnisette-server.git", + "clone_url": "https://github.com/SideStore/omnisette-server.git", + "svn_url": "https://github.com/SideStore/omnisette-server", + "homepage": null, + "size": 121, + "stargazers_count": 36, + "watchers_count": 36, + "language": "Rust", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 71, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 71, + "open_issues": 4, + "watchers": 36, + "default_branch": "main" + }, + { + "id": 506014347, + "node_id": "R_kgDOHikqiw", + "name": "onetun", + "full_name": "SideStore/onetun", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/onetun", + "description": "Userland WireGuard proxy in Rust", + "fork": true, + "url": "https://api.github.com/repos/SideStore/onetun", + "forks_url": "https://api.github.com/repos/SideStore/onetun/forks", + "keys_url": "https://api.github.com/repos/SideStore/onetun/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/onetun/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/onetun/teams", + "hooks_url": "https://api.github.com/repos/SideStore/onetun/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/onetun/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/onetun/events", + "assignees_url": "https://api.github.com/repos/SideStore/onetun/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/onetun/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/onetun/tags", + "blobs_url": "https://api.github.com/repos/SideStore/onetun/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/onetun/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/onetun/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/onetun/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/onetun/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/onetun/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/onetun/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/onetun/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/onetun/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/onetun/subscription", + "commits_url": "https://api.github.com/repos/SideStore/onetun/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/onetun/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/onetun/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/onetun/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/onetun/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/onetun/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/onetun/merges", + "archive_url": "https://api.github.com/repos/SideStore/onetun/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/onetun/downloads", + "issues_url": "https://api.github.com/repos/SideStore/onetun/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/onetun/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/onetun/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/onetun/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/onetun/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/onetun/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/onetun/deployments", + "created_at": "2022-06-21T21:51:12Z", + "updated_at": "2023-01-27T19:34:13Z", + "pushed_at": "2022-06-26T01:38:40Z", + "git_url": "git://github.com/SideStore/onetun.git", + "ssh_url": "git@github.com:SideStore/onetun.git", + "clone_url": "https://github.com/SideStore/onetun.git", + "svn_url": "https://github.com/SideStore/onetun", + "homepage": "", + "size": 400, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Rust", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": true, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + { + "id": 575953452, + "node_id": "R_kgDOIlRaLA", + "name": "pair_tool", + "full_name": "SideStore/pair_tool", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/pair_tool", + "description": "Pairing tool for iOS's lockdown", + "fork": true, + "url": "https://api.github.com/repos/SideStore/pair_tool", + "forks_url": "https://api.github.com/repos/SideStore/pair_tool/forks", + "keys_url": "https://api.github.com/repos/SideStore/pair_tool/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/pair_tool/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/pair_tool/teams", + "hooks_url": "https://api.github.com/repos/SideStore/pair_tool/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/pair_tool/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/pair_tool/events", + "assignees_url": "https://api.github.com/repos/SideStore/pair_tool/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/pair_tool/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/pair_tool/tags", + "blobs_url": "https://api.github.com/repos/SideStore/pair_tool/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/pair_tool/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/pair_tool/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/pair_tool/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/pair_tool/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/pair_tool/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/pair_tool/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/pair_tool/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/pair_tool/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/pair_tool/subscription", + "commits_url": "https://api.github.com/repos/SideStore/pair_tool/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/pair_tool/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/pair_tool/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/pair_tool/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/pair_tool/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/pair_tool/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/pair_tool/merges", + "archive_url": "https://api.github.com/repos/SideStore/pair_tool/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/pair_tool/downloads", + "issues_url": "https://api.github.com/repos/SideStore/pair_tool/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/pair_tool/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/pair_tool/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/pair_tool/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/pair_tool/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/pair_tool/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/pair_tool/deployments", + "created_at": "2022-12-08T17:09:29Z", + "updated_at": "2023-08-01T20:58:41Z", + "pushed_at": "2023-03-20T05:18:24Z", + "git_url": "git://github.com/SideStore/pair_tool.git", + "ssh_url": "git@github.com:SideStore/pair_tool.git", + "clone_url": "https://github.com/SideStore/pair_tool.git", + "svn_url": "https://github.com/SideStore/pair_tool", + "homepage": null, + "size": 18, + "stargazers_count": 1, + "watchers_count": 1, + "language": "Rust", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 1, + "open_issues": 0, + "watchers": 1, + "default_branch": "master" + }, + { + "id": 496851186, + "node_id": "R_kgDOHZ1Y8g", + "name": "Roxas", + "full_name": "SideStore/Roxas", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/Roxas", + "description": null, + "fork": true, + "url": "https://api.github.com/repos/SideStore/Roxas", + "forks_url": "https://api.github.com/repos/SideStore/Roxas/forks", + "keys_url": "https://api.github.com/repos/SideStore/Roxas/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/Roxas/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/Roxas/teams", + "hooks_url": "https://api.github.com/repos/SideStore/Roxas/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/Roxas/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/Roxas/events", + "assignees_url": "https://api.github.com/repos/SideStore/Roxas/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/Roxas/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/Roxas/tags", + "blobs_url": "https://api.github.com/repos/SideStore/Roxas/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/Roxas/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/Roxas/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/Roxas/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/Roxas/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/Roxas/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/Roxas/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/Roxas/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/Roxas/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/Roxas/subscription", + "commits_url": "https://api.github.com/repos/SideStore/Roxas/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/Roxas/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/Roxas/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/Roxas/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/Roxas/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/Roxas/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/Roxas/merges", + "archive_url": "https://api.github.com/repos/SideStore/Roxas/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/Roxas/downloads", + "issues_url": "https://api.github.com/repos/SideStore/Roxas/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/Roxas/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/Roxas/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/Roxas/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/Roxas/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/Roxas/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/Roxas/deployments", + "created_at": "2022-05-27T03:40:07Z", + "updated_at": "2022-03-30T08:05:50Z", + "pushed_at": "2021-11-16T00:15:56Z", + "git_url": "git://github.com/SideStore/Roxas.git", + "ssh_url": "git@github.com:SideStore/Roxas.git", + "clone_url": "https://github.com/SideStore/Roxas.git", + "svn_url": "https://github.com/SideStore/Roxas", + "homepage": null, + "size": 264, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + { + "id": 570011409, + "node_id": "R_kgDOIfmvEQ", + "name": "RustSign", + "full_name": "SideStore/RustSign", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/RustSign", + "description": "A Rust library for signing iOS apps", + "fork": true, + "url": "https://api.github.com/repos/SideStore/RustSign", + "forks_url": "https://api.github.com/repos/SideStore/RustSign/forks", + "keys_url": "https://api.github.com/repos/SideStore/RustSign/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/RustSign/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/RustSign/teams", + "hooks_url": "https://api.github.com/repos/SideStore/RustSign/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/RustSign/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/RustSign/events", + "assignees_url": "https://api.github.com/repos/SideStore/RustSign/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/RustSign/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/RustSign/tags", + "blobs_url": "https://api.github.com/repos/SideStore/RustSign/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/RustSign/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/RustSign/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/RustSign/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/RustSign/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/RustSign/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/RustSign/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/RustSign/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/RustSign/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/RustSign/subscription", + "commits_url": "https://api.github.com/repos/SideStore/RustSign/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/RustSign/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/RustSign/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/RustSign/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/RustSign/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/RustSign/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/RustSign/merges", + "archive_url": "https://api.github.com/repos/SideStore/RustSign/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/RustSign/downloads", + "issues_url": "https://api.github.com/repos/SideStore/RustSign/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/RustSign/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/RustSign/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/RustSign/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/RustSign/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/RustSign/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/RustSign/deployments", + "created_at": "2022-11-24T06:09:19Z", + "updated_at": "2023-01-11T21:55:21Z", + "pushed_at": "2023-03-20T04:25:15Z", + "git_url": "git://github.com/SideStore/RustSign.git", + "ssh_url": "git@github.com:SideStore/RustSign.git", + "clone_url": "https://github.com/SideStore/RustSign.git", + "svn_url": "https://github.com/SideStore/RustSign", + "homepage": null, + "size": 76, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Rust", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + { + "id": 692559292, + "node_id": "R_kgDOKUedvA", + "name": "rusty_libimobiledevice", + "full_name": "SideStore/rusty_libimobiledevice", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/rusty_libimobiledevice", + "description": "A Rust wrapper for Libimobiledevice", + "fork": true, + "url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice", + "forks_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/forks", + "keys_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/teams", + "hooks_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/events", + "assignees_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/tags", + "blobs_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/subscription", + "commits_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/merges", + "archive_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/downloads", + "issues_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/rusty_libimobiledevice/deployments", + "created_at": "2023-09-16T21:19:01Z", + "updated_at": "2023-09-17T04:33:43Z", + "pushed_at": "2023-09-17T04:33:39Z", + "git_url": "git://github.com/SideStore/rusty_libimobiledevice.git", + "ssh_url": "git@github.com:SideStore/rusty_libimobiledevice.git", + "clone_url": "https://github.com/SideStore/rusty_libimobiledevice.git", + "svn_url": "https://github.com/SideStore/rusty_libimobiledevice", + "homepage": "", + "size": 495, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Rust", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 1, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 1, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + }, + { + "id": 588746712, + "node_id": "R_kgDOIxeP2A", + "name": "side-sites", + "full_name": "SideStore/side-sites", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/side-sites", + "description": "Side Sites - A template for SideStore sites", + "fork": true, + "url": "https://api.github.com/repos/SideStore/side-sites", + "forks_url": "https://api.github.com/repos/SideStore/side-sites/forks", + "keys_url": "https://api.github.com/repos/SideStore/side-sites/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/side-sites/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/side-sites/teams", + "hooks_url": "https://api.github.com/repos/SideStore/side-sites/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/side-sites/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/side-sites/events", + "assignees_url": "https://api.github.com/repos/SideStore/side-sites/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/side-sites/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/side-sites/tags", + "blobs_url": "https://api.github.com/repos/SideStore/side-sites/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/side-sites/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/side-sites/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/side-sites/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/side-sites/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/side-sites/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/side-sites/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/side-sites/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/side-sites/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/side-sites/subscription", + "commits_url": "https://api.github.com/repos/SideStore/side-sites/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/side-sites/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/side-sites/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/side-sites/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/side-sites/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/side-sites/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/side-sites/merges", + "archive_url": "https://api.github.com/repos/SideStore/side-sites/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/side-sites/downloads", + "issues_url": "https://api.github.com/repos/SideStore/side-sites/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/side-sites/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/side-sites/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/side-sites/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/side-sites/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/side-sites/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/side-sites/deployments", + "created_at": "2023-01-13T22:19:48Z", + "updated_at": "2023-01-13T23:58:56Z", + "pushed_at": "2023-01-13T23:58:53Z", + "git_url": "git://github.com/SideStore/side-sites.git", + "ssh_url": "git@github.com:SideStore/side-sites.git", + "clone_url": "https://github.com/SideStore/side-sites.git", + "svn_url": "https://github.com/SideStore/side-sites", + "homepage": "https://template.litritt.com", + "size": 332, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Ruby", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": true, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main" + }, + { + "id": 496851088, + "node_id": "R_kgDOHZ1YkA", + "name": "SideKit", + "full_name": "SideStore/SideKit", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/SideKit", + "description": "A Swift Package that allows iOS apps to communicate with SideServer mobile (WIP)", + "fork": true, + "url": "https://api.github.com/repos/SideStore/SideKit", + "forks_url": "https://api.github.com/repos/SideStore/SideKit/forks", + "keys_url": "https://api.github.com/repos/SideStore/SideKit/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/SideKit/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/SideKit/teams", + "hooks_url": "https://api.github.com/repos/SideStore/SideKit/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/SideKit/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/SideKit/events", + "assignees_url": "https://api.github.com/repos/SideStore/SideKit/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/SideKit/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/SideKit/tags", + "blobs_url": "https://api.github.com/repos/SideStore/SideKit/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/SideKit/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/SideKit/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/SideKit/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/SideKit/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/SideKit/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/SideKit/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/SideKit/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/SideKit/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/SideKit/subscription", + "commits_url": "https://api.github.com/repos/SideStore/SideKit/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/SideKit/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/SideKit/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/SideKit/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/SideKit/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/SideKit/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/SideKit/merges", + "archive_url": "https://api.github.com/repos/SideStore/SideKit/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/SideKit/downloads", + "issues_url": "https://api.github.com/repos/SideStore/SideKit/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/SideKit/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/SideKit/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/SideKit/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/SideKit/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/SideKit/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/SideKit/deployments", + "created_at": "2022-05-27T03:39:35Z", + "updated_at": "2023-09-13T03:32:16Z", + "pushed_at": "2023-03-20T04:13:25Z", + "git_url": "git://github.com/SideStore/SideKit.git", + "ssh_url": "git@github.com:SideStore/SideKit.git", + "clone_url": "https://github.com/SideStore/SideKit.git", + "svn_url": "https://github.com/SideStore/SideKit", + "homepage": "", + "size": 48, + "stargazers_count": 11, + "watchers_count": 11, + "language": "Swift", + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [ + "ios", + "swift", + "swift-library", + "swift-package-manager" + ], + "visibility": "public", + "forks": 3, + "open_issues": 1, + "watchers": 11, + "default_branch": "main" + }, + { + "id": 580533883, + "node_id": "R_kgDOIpo-ew", + "name": "SideServer-for-Linux", + "full_name": "SideStore/SideServer-for-Linux", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/SideServer-for-Linux", + "description": "SideServer of the Linux persuasion (WIP)", + "fork": true, + "url": "https://api.github.com/repos/SideStore/SideServer-for-Linux", + "forks_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/forks", + "keys_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/teams", + "hooks_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/events", + "assignees_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/tags", + "blobs_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/subscription", + "commits_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/merges", + "archive_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/downloads", + "issues_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/SideServer-for-Linux/deployments", + "created_at": "2022-12-20T19:58:23Z", + "updated_at": "2024-01-10T12:53:57Z", + "pushed_at": "2023-08-05T23:40:15Z", + "git_url": "git://github.com/SideStore/SideServer-for-Linux.git", + "ssh_url": "git@github.com:SideStore/SideServer-for-Linux.git", + "clone_url": "https://github.com/SideStore/SideServer-for-Linux.git", + "svn_url": "https://github.com/SideStore/SideServer-for-Linux", + "homepage": "", + "size": 381, + "stargazers_count": 25, + "watchers_count": 25, + "language": "Python", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 4, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 4, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [ + "linux" + ], + "visibility": "public", + "forks": 4, + "open_issues": 4, + "watchers": 25, + "default_branch": "main" + }, + { + "id": 503800146, + "node_id": "R_kgDOHgdhUg", + "name": "SideServer-macOS", + "full_name": "SideStore/SideServer-macOS", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/SideServer-macOS", + "description": "Glorified SideStore Installer in server-form to use as an optional backup anisette server, and optional auto-refresher of SideStore", + "fork": true, + "url": "https://api.github.com/repos/SideStore/SideServer-macOS", + "forks_url": "https://api.github.com/repos/SideStore/SideServer-macOS/forks", + "keys_url": "https://api.github.com/repos/SideStore/SideServer-macOS/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/SideServer-macOS/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/SideServer-macOS/teams", + "hooks_url": "https://api.github.com/repos/SideStore/SideServer-macOS/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/SideServer-macOS/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/SideServer-macOS/events", + "assignees_url": "https://api.github.com/repos/SideStore/SideServer-macOS/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/SideServer-macOS/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/SideServer-macOS/tags", + "blobs_url": "https://api.github.com/repos/SideStore/SideServer-macOS/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/SideServer-macOS/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/SideServer-macOS/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/SideServer-macOS/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/SideServer-macOS/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/SideServer-macOS/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/SideServer-macOS/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/SideServer-macOS/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/SideServer-macOS/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/SideServer-macOS/subscription", + "commits_url": "https://api.github.com/repos/SideStore/SideServer-macOS/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/SideServer-macOS/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/SideServer-macOS/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/SideServer-macOS/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/SideServer-macOS/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/SideServer-macOS/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/SideServer-macOS/merges", + "archive_url": "https://api.github.com/repos/SideStore/SideServer-macOS/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/SideServer-macOS/downloads", + "issues_url": "https://api.github.com/repos/SideStore/SideServer-macOS/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/SideServer-macOS/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/SideServer-macOS/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/SideServer-macOS/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/SideServer-macOS/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/SideServer-macOS/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/SideServer-macOS/deployments", + "created_at": "2022-06-15T14:27:53Z", + "updated_at": "2023-12-23T21:14:59Z", + "pushed_at": "2023-06-24T00:15:52Z", + "git_url": "git://github.com/SideStore/SideServer-macOS.git", + "ssh_url": "git@github.com:SideStore/SideServer-macOS.git", + "clone_url": "https://github.com/SideStore/SideServer-macOS.git", + "svn_url": "https://github.com/SideStore/SideServer-macOS", + "homepage": "", + "size": 24115, + "stargazers_count": 39, + "watchers_count": 39, + "language": "Swift", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 8, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 6, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [ + "macos" + ], + "visibility": "public", + "forks": 8, + "open_issues": 6, + "watchers": 39, + "default_branch": "develop" + }, + { + "id": 560985812, + "node_id": "R_kgDOIW_21A", + "name": "SideServer-Windows", + "full_name": "SideStore/SideServer-Windows", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/SideServer-Windows", + "description": "SideServer of the nightmare variety (WIP)", + "fork": true, + "url": "https://api.github.com/repos/SideStore/SideServer-Windows", + "forks_url": "https://api.github.com/repos/SideStore/SideServer-Windows/forks", + "keys_url": "https://api.github.com/repos/SideStore/SideServer-Windows/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/SideServer-Windows/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/SideServer-Windows/teams", + "hooks_url": "https://api.github.com/repos/SideStore/SideServer-Windows/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/SideServer-Windows/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/SideServer-Windows/events", + "assignees_url": "https://api.github.com/repos/SideStore/SideServer-Windows/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/SideServer-Windows/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/SideServer-Windows/tags", + "blobs_url": "https://api.github.com/repos/SideStore/SideServer-Windows/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/SideServer-Windows/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/SideServer-Windows/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/SideServer-Windows/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/SideServer-Windows/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/SideServer-Windows/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/SideServer-Windows/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/SideServer-Windows/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/SideServer-Windows/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/SideServer-Windows/subscription", + "commits_url": "https://api.github.com/repos/SideStore/SideServer-Windows/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/SideServer-Windows/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/SideServer-Windows/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/SideServer-Windows/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/SideServer-Windows/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/SideServer-Windows/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/SideServer-Windows/merges", + "archive_url": "https://api.github.com/repos/SideStore/SideServer-Windows/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/SideServer-Windows/downloads", + "issues_url": "https://api.github.com/repos/SideStore/SideServer-Windows/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/SideServer-Windows/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/SideServer-Windows/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/SideServer-Windows/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/SideServer-Windows/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/SideServer-Windows/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/SideServer-Windows/deployments", + "created_at": "2022-11-02T17:32:12Z", + "updated_at": "2023-11-23T01:42:01Z", + "pushed_at": "2023-09-23T08:17:10Z", + "git_url": "git://github.com/SideStore/SideServer-Windows.git", + "ssh_url": "git@github.com:SideStore/SideServer-Windows.git", + "clone_url": "https://github.com/SideStore/SideServer-Windows.git", + "svn_url": "https://github.com/SideStore/SideServer-Windows", + "homepage": "", + "size": 12469, + "stargazers_count": 21, + "watchers_count": 21, + "language": "C", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 3, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 7, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 3, + "open_issues": 7, + "watchers": 21, + "default_branch": "develop" + }, + { + "id": 586704167, + "node_id": "R_kgDOIvhlJw", + "name": "SideSource", + "full_name": "SideStore/SideSource", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/SideSource", + "description": "SideSource is a JavaScript/TypeScript framework for creating SideStore sources.", + "fork": false, + "url": "https://api.github.com/repos/SideStore/SideSource", + "forks_url": "https://api.github.com/repos/SideStore/SideSource/forks", + "keys_url": "https://api.github.com/repos/SideStore/SideSource/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/SideSource/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/SideSource/teams", + "hooks_url": "https://api.github.com/repos/SideStore/SideSource/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/SideSource/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/SideSource/events", + "assignees_url": "https://api.github.com/repos/SideStore/SideSource/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/SideSource/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/SideSource/tags", + "blobs_url": "https://api.github.com/repos/SideStore/SideSource/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/SideSource/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/SideSource/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/SideSource/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/SideSource/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/SideSource/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/SideSource/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/SideSource/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/SideSource/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/SideSource/subscription", + "commits_url": "https://api.github.com/repos/SideStore/SideSource/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/SideSource/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/SideSource/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/SideSource/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/SideSource/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/SideSource/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/SideSource/merges", + "archive_url": "https://api.github.com/repos/SideStore/SideSource/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/SideSource/downloads", + "issues_url": "https://api.github.com/repos/SideStore/SideSource/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/SideSource/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/SideSource/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/SideSource/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/SideSource/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/SideSource/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/SideSource/deployments", + "created_at": "2023-01-09T02:38:21Z", + "updated_at": "2023-12-06T17:26:24Z", + "pushed_at": "2023-03-20T04:11:28Z", + "git_url": "git://github.com/SideStore/SideSource.git", + "ssh_url": "git@github.com:SideStore/SideSource.git", + "clone_url": "https://github.com/SideStore/SideSource.git", + "svn_url": "https://github.com/SideStore/SideSource", + "homepage": "https://sidestore.io/SideSource", + "size": 189, + "stargazers_count": 1, + "watchers_count": 1, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 1, + "watchers": 1, + "default_branch": "main" + }, + { + "id": 489490307, + "node_id": "R_kgDOHS0Hgw", + "name": "SideStore", + "full_name": "SideStore/SideStore", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/SideStore", + "description": "SideStore is a fork of AltStore that doesn't require an AltServer.", + "fork": true, + "url": "https://api.github.com/repos/SideStore/SideStore", + "forks_url": "https://api.github.com/repos/SideStore/SideStore/forks", + "keys_url": "https://api.github.com/repos/SideStore/SideStore/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/SideStore/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/SideStore/teams", + "hooks_url": "https://api.github.com/repos/SideStore/SideStore/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/SideStore/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/SideStore/events", + "assignees_url": "https://api.github.com/repos/SideStore/SideStore/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/SideStore/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/SideStore/tags", + "blobs_url": "https://api.github.com/repos/SideStore/SideStore/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/SideStore/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/SideStore/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/SideStore/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/SideStore/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/SideStore/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/SideStore/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/SideStore/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/SideStore/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/SideStore/subscription", + "commits_url": "https://api.github.com/repos/SideStore/SideStore/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/SideStore/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/SideStore/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/SideStore/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/SideStore/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/SideStore/merges", + "archive_url": "https://api.github.com/repos/SideStore/SideStore/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/SideStore/downloads", + "issues_url": "https://api.github.com/repos/SideStore/SideStore/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/SideStore/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/SideStore/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/SideStore/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/SideStore/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/SideStore/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/SideStore/deployments", + "created_at": "2022-05-06T20:49:30Z", + "updated_at": "2024-01-18T20:27:24Z", + "pushed_at": "2024-01-18T10:42:43Z", + "git_url": "git://github.com/SideStore/SideStore.git", + "ssh_url": "git@github.com:SideStore/SideStore.git", + "clone_url": "https://github.com/SideStore/SideStore.git", + "svn_url": "https://github.com/SideStore/SideStore", + "homepage": "", + "size": 195260, + "stargazers_count": 1714, + "watchers_count": 1714, + "language": "Swift", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": true, + "forks_count": 122, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 117, + "license": { + "key": "agpl-3.0", + "name": "GNU Affero General Public License v3.0", + "spdx_id": "AGPL-3.0", + "url": "https://api.github.com/licenses/agpl-3.0", + "node_id": "MDc6TGljZW5zZTE=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [ + "altstore", + "ios", + "sideload", + "sidestore" + ], + "visibility": "public", + "forks": 122, + "open_issues": 117, + "watchers": 1714, + "default_branch": "develop" + }, + { + "id": 580167979, + "node_id": "R_kgDOIpSpKw", + "name": "SideStore-Docs", + "full_name": "SideStore/SideStore-Docs", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/SideStore-Docs", + "description": "A centralized repository for SideStore's documentation.", + "fork": true, + "url": "https://api.github.com/repos/SideStore/SideStore-Docs", + "forks_url": "https://api.github.com/repos/SideStore/SideStore-Docs/forks", + "keys_url": "https://api.github.com/repos/SideStore/SideStore-Docs/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/SideStore-Docs/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/SideStore-Docs/teams", + "hooks_url": "https://api.github.com/repos/SideStore/SideStore-Docs/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/SideStore-Docs/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/SideStore-Docs/events", + "assignees_url": "https://api.github.com/repos/SideStore/SideStore-Docs/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/SideStore-Docs/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/SideStore-Docs/tags", + "blobs_url": "https://api.github.com/repos/SideStore/SideStore-Docs/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/SideStore-Docs/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/SideStore-Docs/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/SideStore-Docs/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/SideStore-Docs/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/SideStore-Docs/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/SideStore-Docs/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/SideStore-Docs/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/SideStore-Docs/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/SideStore-Docs/subscription", + "commits_url": "https://api.github.com/repos/SideStore/SideStore-Docs/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/SideStore-Docs/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/SideStore-Docs/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/SideStore-Docs/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/SideStore-Docs/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/SideStore-Docs/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/SideStore-Docs/merges", + "archive_url": "https://api.github.com/repos/SideStore/SideStore-Docs/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/SideStore-Docs/downloads", + "issues_url": "https://api.github.com/repos/SideStore/SideStore-Docs/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/SideStore-Docs/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/SideStore-Docs/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/SideStore-Docs/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/SideStore-Docs/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/SideStore-Docs/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/SideStore-Docs/deployments", + "created_at": "2022-12-19T22:13:00Z", + "updated_at": "2023-10-13T06:22:48Z", + "pushed_at": "2024-01-01T16:36:21Z", + "git_url": "git://github.com/SideStore/SideStore-Docs.git", + "ssh_url": "git@github.com:SideStore/SideStore-Docs.git", + "clone_url": "https://github.com/SideStore/SideStore-Docs.git", + "svn_url": "https://github.com/SideStore/SideStore-Docs", + "homepage": "https://wiki.sidestore.io/", + "size": 4587, + "stargazers_count": 4, + "watchers_count": 4, + "language": "MDX", + "has_issues": false, + "has_projects": false, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "has_discussions": false, + "forks_count": 14, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 14, + "open_issues": 0, + "watchers": 4, + "default_branch": "main" + }, + { + "id": 588788025, + "node_id": "R_kgDOIxgxOQ", + "name": "sidestore-source-types", + "full_name": "SideStore/sidestore-source-types", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/sidestore-source-types", + "description": "Fully documented type defintions for SideStore's source format", + "fork": false, + "url": "https://api.github.com/repos/SideStore/sidestore-source-types", + "forks_url": "https://api.github.com/repos/SideStore/sidestore-source-types/forks", + "keys_url": "https://api.github.com/repos/SideStore/sidestore-source-types/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/sidestore-source-types/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/sidestore-source-types/teams", + "hooks_url": "https://api.github.com/repos/SideStore/sidestore-source-types/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/sidestore-source-types/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/sidestore-source-types/events", + "assignees_url": "https://api.github.com/repos/SideStore/sidestore-source-types/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/sidestore-source-types/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/sidestore-source-types/tags", + "blobs_url": "https://api.github.com/repos/SideStore/sidestore-source-types/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/sidestore-source-types/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/sidestore-source-types/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/sidestore-source-types/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/sidestore-source-types/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/sidestore-source-types/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/sidestore-source-types/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/sidestore-source-types/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/sidestore-source-types/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/sidestore-source-types/subscription", + "commits_url": "https://api.github.com/repos/SideStore/sidestore-source-types/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/sidestore-source-types/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore-source-types/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/sidestore-source-types/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/sidestore-source-types/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/sidestore-source-types/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/sidestore-source-types/merges", + "archive_url": "https://api.github.com/repos/SideStore/sidestore-source-types/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/sidestore-source-types/downloads", + "issues_url": "https://api.github.com/repos/SideStore/sidestore-source-types/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/sidestore-source-types/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/sidestore-source-types/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/sidestore-source-types/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/sidestore-source-types/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/sidestore-source-types/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/sidestore-source-types/deployments", + "created_at": "2023-01-14T02:17:49Z", + "updated_at": "2023-01-22T20:44:06Z", + "pushed_at": "2023-03-20T04:22:16Z", + "git_url": "git://github.com/SideStore/sidestore-source-types.git", + "ssh_url": "git@github.com:SideStore/sidestore-source-types.git", + "clone_url": "https://github.com/SideStore/sidestore-source-types.git", + "svn_url": "https://github.com/SideStore/sidestore-source-types", + "homepage": "https://sidestore.io/sidestore-source-types", + "size": 108, + "stargazers_count": 1, + "watchers_count": 1, + "language": "TypeScript", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 1, + "default_branch": "main" + }, + { + "id": 502541849, + "node_id": "R_kgDOHfQuGQ", + "name": "sidestore.github.io", + "full_name": "SideStore/sidestore.github.io", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/sidestore.github.io", + "description": "https://sidestore.io", + "fork": false, + "url": "https://api.github.com/repos/SideStore/sidestore.github.io", + "forks_url": "https://api.github.com/repos/SideStore/sidestore.github.io/forks", + "keys_url": "https://api.github.com/repos/SideStore/sidestore.github.io/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/sidestore.github.io/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/sidestore.github.io/teams", + "hooks_url": "https://api.github.com/repos/SideStore/sidestore.github.io/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/sidestore.github.io/events", + "assignees_url": "https://api.github.com/repos/SideStore/sidestore.github.io/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/sidestore.github.io/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/sidestore.github.io/tags", + "blobs_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/sidestore.github.io/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/sidestore.github.io/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/sidestore.github.io/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/sidestore.github.io/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/sidestore.github.io/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/sidestore.github.io/subscription", + "commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/sidestore.github.io/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/sidestore.github.io/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/sidestore.github.io/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/sidestore.github.io/merges", + "archive_url": "https://api.github.com/repos/SideStore/sidestore.github.io/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/sidestore.github.io/downloads", + "issues_url": "https://api.github.com/repos/SideStore/sidestore.github.io/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/sidestore.github.io/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/sidestore.github.io/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/sidestore.github.io/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/sidestore.github.io/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/sidestore.github.io/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/sidestore.github.io/deployments", + "created_at": "2022-06-12T06:54:14Z", + "updated_at": "2024-01-19T08:26:45Z", + "pushed_at": "2024-01-19T03:42:08Z", + "git_url": "git://github.com/SideStore/sidestore.github.io.git", + "ssh_url": "git@github.com:SideStore/sidestore.github.io.git", + "clone_url": "https://github.com/SideStore/sidestore.github.io.git", + "svn_url": "https://github.com/SideStore/sidestore.github.io", + "homepage": null, + "size": 6785, + "stargazers_count": 86, + "watchers_count": 86, + "language": "HTML", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": false, + "has_pages": true, + "has_discussions": true, + "forks_count": 15, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 1, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 15, + "open_issues": 1, + "watchers": 86, + "default_branch": "master" + }, + { + "id": 563241929, + "node_id": "R_kgDOIZJjyQ", + "name": "sidestore_downloader", + "full_name": "SideStore/sidestore_downloader", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/sidestore_downloader", + "description": "Nightmare code to download and modify the SideStore ipa", + "fork": false, + "url": "https://api.github.com/repos/SideStore/sidestore_downloader", + "forks_url": "https://api.github.com/repos/SideStore/sidestore_downloader/forks", + "keys_url": "https://api.github.com/repos/SideStore/sidestore_downloader/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/sidestore_downloader/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/sidestore_downloader/teams", + "hooks_url": "https://api.github.com/repos/SideStore/sidestore_downloader/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/sidestore_downloader/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/sidestore_downloader/events", + "assignees_url": "https://api.github.com/repos/SideStore/sidestore_downloader/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/sidestore_downloader/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/sidestore_downloader/tags", + "blobs_url": "https://api.github.com/repos/SideStore/sidestore_downloader/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/sidestore_downloader/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/sidestore_downloader/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/sidestore_downloader/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/sidestore_downloader/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/sidestore_downloader/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/sidestore_downloader/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/sidestore_downloader/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/sidestore_downloader/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/sidestore_downloader/subscription", + "commits_url": "https://api.github.com/repos/SideStore/sidestore_downloader/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/sidestore_downloader/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/sidestore_downloader/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/sidestore_downloader/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/sidestore_downloader/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/sidestore_downloader/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/sidestore_downloader/merges", + "archive_url": "https://api.github.com/repos/SideStore/sidestore_downloader/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/sidestore_downloader/downloads", + "issues_url": "https://api.github.com/repos/SideStore/sidestore_downloader/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/sidestore_downloader/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/sidestore_downloader/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/sidestore_downloader/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/sidestore_downloader/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/sidestore_downloader/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/sidestore_downloader/deployments", + "created_at": "2022-11-08T07:50:06Z", + "updated_at": "2023-12-21T23:33:22Z", + "pushed_at": "2023-06-21T22:55:44Z", + "git_url": "git://github.com/SideStore/sidestore_downloader.git", + "ssh_url": "git@github.com:SideStore/sidestore_downloader.git", + "clone_url": "https://github.com/SideStore/sidestore_downloader.git", + "svn_url": "https://github.com/SideStore/sidestore_downloader", + "homepage": null, + "size": 92, + "stargazers_count": 32, + "watchers_count": 32, + "language": "Rust", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 6, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 2, + "license": null, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 6, + "open_issues": 2, + "watchers": 32, + "default_branch": "master" + }, + { + "id": 582014940, + "node_id": "R_kgDOIrDX3A", + "name": "SideSubstrate", + "full_name": "SideStore/SideSubstrate", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/SideSubstrate", + "description": "A jailed \"substrate\" using background location and shortcuts to stay in the background 24/7", + "fork": true, + "url": "https://api.github.com/repos/SideStore/SideSubstrate", + "forks_url": "https://api.github.com/repos/SideStore/SideSubstrate/forks", + "keys_url": "https://api.github.com/repos/SideStore/SideSubstrate/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/SideSubstrate/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/SideSubstrate/teams", + "hooks_url": "https://api.github.com/repos/SideStore/SideSubstrate/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/SideSubstrate/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/SideSubstrate/events", + "assignees_url": "https://api.github.com/repos/SideStore/SideSubstrate/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/SideSubstrate/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/SideSubstrate/tags", + "blobs_url": "https://api.github.com/repos/SideStore/SideSubstrate/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/SideSubstrate/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/SideSubstrate/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/SideSubstrate/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/SideSubstrate/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/SideSubstrate/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/SideSubstrate/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/SideSubstrate/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/SideSubstrate/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/SideSubstrate/subscription", + "commits_url": "https://api.github.com/repos/SideStore/SideSubstrate/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/SideSubstrate/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/SideSubstrate/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/SideSubstrate/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/SideSubstrate/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/SideSubstrate/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/SideSubstrate/merges", + "archive_url": "https://api.github.com/repos/SideStore/SideSubstrate/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/SideSubstrate/downloads", + "issues_url": "https://api.github.com/repos/SideStore/SideSubstrate/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/SideSubstrate/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/SideSubstrate/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/SideSubstrate/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/SideSubstrate/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/SideSubstrate/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/SideSubstrate/deployments", + "created_at": "2022-12-25T10:05:43Z", + "updated_at": "2022-12-20T01:10:46Z", + "pushed_at": "2021-06-24T21:40:44Z", + "git_url": "git://github.com/SideStore/SideSubstrate.git", + "ssh_url": "git@github.com:SideStore/SideSubstrate.git", + "clone_url": "https://github.com/SideStore/SideSubstrate.git", + "svn_url": "https://github.com/SideStore/SideSubstrate", + "homepage": null, + "size": 138, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "gpl-3.0", + "name": "GNU General Public License v3.0", + "spdx_id": "GPL-3.0", + "url": "https://api.github.com/licenses/gpl-3.0", + "node_id": "MDc6TGljZW5zZTk=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "main" + }, + { + "id": 496848820, + "node_id": "R_kgDOHZ1PtA", + "name": "STPrivilegedTask", + "full_name": "SideStore/STPrivilegedTask", + "private": false, + "owner": { + "login": "SideStore", + "id": 105070799, + "node_id": "O_kgDOBkNAzw", + "avatar_url": "https://avatars.githubusercontent.com/u/105070799?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/SideStore", + "html_url": "https://github.com/SideStore", + "followers_url": "https://api.github.com/users/SideStore/followers", + "following_url": "https://api.github.com/users/SideStore/following{/other_user}", + "gists_url": "https://api.github.com/users/SideStore/gists{/gist_id}", + "starred_url": "https://api.github.com/users/SideStore/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/SideStore/subscriptions", + "organizations_url": "https://api.github.com/users/SideStore/orgs", + "repos_url": "https://api.github.com/users/SideStore/repos", + "events_url": "https://api.github.com/users/SideStore/events{/privacy}", + "received_events_url": "https://api.github.com/users/SideStore/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/SideStore/STPrivilegedTask", + "description": "An NSTask-like wrapper around the macOS Security Framework's AuthorizationExecuteWithPrivileges() to run shell commands with root privileges in Objective-C / Cocoa.", + "fork": true, + "url": "https://api.github.com/repos/SideStore/STPrivilegedTask", + "forks_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/forks", + "keys_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/teams", + "hooks_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/hooks", + "issue_events_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/issues/events{/number}", + "events_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/events", + "assignees_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/assignees{/user}", + "branches_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/branches{/branch}", + "tags_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/tags", + "blobs_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/statuses/{sha}", + "languages_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/languages", + "stargazers_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/stargazers", + "contributors_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/contributors", + "subscribers_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/subscribers", + "subscription_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/subscription", + "commits_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/contents/{+path}", + "compare_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/merges", + "archive_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/downloads", + "issues_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/issues{/number}", + "pulls_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/pulls{/number}", + "milestones_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/milestones{/number}", + "notifications_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/labels{/name}", + "releases_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/releases{/id}", + "deployments_url": "https://api.github.com/repos/SideStore/STPrivilegedTask/deployments", + "created_at": "2022-05-27T03:28:16Z", + "updated_at": "2021-12-15T08:41:07Z", + "pushed_at": "2021-12-15T08:41:04Z", + "git_url": "git://github.com/SideStore/STPrivilegedTask.git", + "ssh_url": "git@github.com:SideStore/STPrivilegedTask.git", + "clone_url": "https://github.com/SideStore/STPrivilegedTask.git", + "svn_url": "https://github.com/SideStore/STPrivilegedTask", + "homepage": "", + "size": 195, + "stargazers_count": 0, + "watchers_count": 0, + "language": null, + "has_issues": false, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "has_discussions": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "bsd-3-clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "spdx_id": "BSD-3-Clause", + "url": "https://api.github.com/licenses/bsd-3-clause", + "node_id": "MDc6TGljZW5zZTU=" + }, + "allow_forking": true, + "is_template": false, + "web_commit_signoff_required": true, + "topics": [], + "visibility": "public", + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master" + } +] \ No newline at end of file diff --git a/public/assets/old_assets/android-chrome-192x192.png b/public/assets/old_assets/android-chrome-192x192.png new file mode 100644 index 0000000..8f0cee9 Binary files /dev/null and b/public/assets/old_assets/android-chrome-192x192.png differ diff --git a/public/assets/old_assets/android-chrome-512x512 copy.png b/public/assets/old_assets/android-chrome-512x512 copy.png new file mode 100644 index 0000000..b17bf51 Binary files /dev/null and b/public/assets/old_assets/android-chrome-512x512 copy.png differ diff --git a/public/assets/old_assets/embed_card.png b/public/assets/old_assets/embed_card.png new file mode 100644 index 0000000..bda2edf Binary files /dev/null and b/public/assets/old_assets/embed_card.png differ diff --git a/public/assets/old_assets/favicon-16x16-dark.png b/public/assets/old_assets/favicon-16x16-dark.png new file mode 100644 index 0000000..0f4ab6b Binary files /dev/null and b/public/assets/old_assets/favicon-16x16-dark.png differ diff --git a/public/assets/old_assets/favicon-16x16-light.png b/public/assets/old_assets/favicon-16x16-light.png new file mode 100644 index 0000000..c3b368d Binary files /dev/null and b/public/assets/old_assets/favicon-16x16-light.png differ diff --git a/public/assets/old_assets/favicon-16x16.png b/public/assets/old_assets/favicon-16x16.png new file mode 100644 index 0000000..ceb6389 Binary files /dev/null and b/public/assets/old_assets/favicon-16x16.png differ diff --git a/public/assets/old_assets/favicon-32x32-dark.png b/public/assets/old_assets/favicon-32x32-dark.png new file mode 100644 index 0000000..67f2cb4 Binary files /dev/null and b/public/assets/old_assets/favicon-32x32-dark.png differ diff --git a/public/assets/old_assets/favicon-32x32-light.png b/public/assets/old_assets/favicon-32x32-light.png new file mode 100644 index 0000000..4675081 Binary files /dev/null and b/public/assets/old_assets/favicon-32x32-light.png differ diff --git a/public/assets/old_assets/favicon-32x32.png b/public/assets/old_assets/favicon-32x32.png new file mode 100644 index 0000000..0b9657a Binary files /dev/null and b/public/assets/old_assets/favicon-32x32.png differ diff --git a/public/assets/old_assets/hero_render.png b/public/assets/old_assets/hero_render.png new file mode 100644 index 0000000..649e3ec Binary files /dev/null and b/public/assets/old_assets/hero_render.png differ diff --git a/public/assets/old_assets/icon-1024.png b/public/assets/old_assets/icon-1024.png new file mode 100644 index 0000000..5e20d8e Binary files /dev/null and b/public/assets/old_assets/icon-1024.png differ diff --git a/public/assets/old_assets/pintab.svg b/public/assets/old_assets/pintab.svg new file mode 100644 index 0000000..cceb708 --- /dev/null +++ b/public/assets/old_assets/pintab.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/assets/old_assets/sidestore-arrow-gradient.png b/public/assets/old_assets/sidestore-arrow-gradient.png new file mode 100644 index 0000000..e917709 Binary files /dev/null and b/public/assets/old_assets/sidestore-arrow-gradient.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..bc0c18d Binary files /dev/null and b/public/favicon.ico differ diff --git a/src/components/astro/AppsSection2.astro b/src/components/astro/AppsSection2.astro new file mode 100644 index 0000000..f6b734b --- /dev/null +++ b/src/components/astro/AppsSection2.astro @@ -0,0 +1,33 @@ +--- +import VioletPhrase from '../preact/VioletPhrase'; +import AppMarquee from '../preact/AppMarquee'; +--- + +
+
+ Apps +

+ Install any .ipa +

+

+ SideStore allows you to install any app you want, alongside the many available in our + verified sources + . And with the in-app JIT enabler, you can play + hardware-accelerated games + , emulators + and + anything else. +

+
+ + + +
diff --git a/src/components/astro/GetStarted.astro b/src/components/astro/GetStarted.astro new file mode 100644 index 0000000..724c061 --- /dev/null +++ b/src/components/astro/GetStarted.astro @@ -0,0 +1,147 @@ +--- + +--- + +
+
+ Download +

+ Get started +

+

+ SideStore works on iOS 14.0 and higher. You'll need a computer for the initial setup, but after that you can install apps directly on your + device.
+

+
+ +
+
+
    +
  1. + + 1 + + +
  2. + + +
  3. + + 2 + + +
  4. + + +
  5. + + 3 + + +
  6. + +
  7. + + 4 + + +
  8. +
+
+
+
+
+
+ +
+
+ Viewing instructions for: + +
+ + + + +
+
+ + + +
+ + + +
+
+
+
+
+
diff --git a/src/components/astro/Hero.astro b/src/components/astro/Hero.astro new file mode 100644 index 0000000..7293d7f --- /dev/null +++ b/src/components/astro/Hero.astro @@ -0,0 +1,46 @@ +
+
+

+ SideStore +

+

+ An alternative app store for seamless sideloading. No jailbreak needed, and + no computer + after the initial install, only a WiFi connection. +

+ +
+ + + + +
+ Phone render +
+
diff --git a/src/components/astro/NavBar.astro b/src/components/astro/NavBar.astro new file mode 100644 index 0000000..b0c9f01 --- /dev/null +++ b/src/components/astro/NavBar.astro @@ -0,0 +1,95 @@ +
+ +
diff --git a/src/components/astro/OpenSource.astro b/src/components/astro/OpenSource.astro new file mode 100644 index 0000000..af84ef8 --- /dev/null +++ b/src/components/astro/OpenSource.astro @@ -0,0 +1,177 @@ +--- +import VioletPhrase from '../preact/VioletPhrase'; +--- + +
+
+ Open Source +

+ Free, forever +

+

+ SideStore is fully open-source and run by contributors, supported by our + community + + and our + patrons. You can find the source code for all our projects on + GitHub, and you can freely contribute to the project. +

+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+ + diff --git a/src/components/preact/AppMarquee.tsx b/src/components/preact/AppMarquee.tsx new file mode 100644 index 0000000..15273eb --- /dev/null +++ b/src/components/preact/AppMarquee.tsx @@ -0,0 +1,28 @@ +import rawApps from '../../applist.json'; +import MarqueeItem from '../preact/MarqueeItem'; + + +export default function AppMarquee() { + let apps = rawApps.sort(() => Math.random() - 0.5); + + let rows = apps + .map((i) => ({ ...i, icon: i.filepath.endsWith('.webp') ? i.filepath : i.filepath + '.webp' })) + .map((i) => (MarqueeItem(i))) + + let set1 = rows; + let set2 = rows.reverse(); + return ( +
+
+
+ {set1} +
+
+
+
+ {set2} +
+
+
+ ); +} diff --git a/src/components/preact/BtnFill.tsx b/src/components/preact/BtnFill.tsx new file mode 100644 index 0000000..9f3313a --- /dev/null +++ b/src/components/preact/BtnFill.tsx @@ -0,0 +1,20 @@ +import type { PropsWithChildren } from 'preact/compat'; + +class btnFillProps { + extraClasses?: string; + id?: string; +} + +export default function BtnFill(props: btnFillProps & PropsWithChildren) { + return ( + + ); +} diff --git a/src/components/preact/BtnMaterial.tsx b/src/components/preact/BtnMaterial.tsx new file mode 100644 index 0000000..9d94b3d --- /dev/null +++ b/src/components/preact/BtnMaterial.tsx @@ -0,0 +1,14 @@ +import type { PropsWithChildren } from 'preact/compat'; + +class btnMaterialProps { + extraClasses?: string; + id?: string; +} + +export default function BtnMaterial(props: btnMaterialProps & PropsWithChildren) { + return ( + + ); +} diff --git a/src/components/preact/CodeBlock.tsx b/src/components/preact/CodeBlock.tsx new file mode 100644 index 0000000..32f011b --- /dev/null +++ b/src/components/preact/CodeBlock.tsx @@ -0,0 +1,9 @@ +import type { PropsWithChildren } from 'preact/compat'; + +class violetPhraseProps {} // for future use if necessary + +export default function CodeBlock(props: violetPhraseProps & PropsWithChildren) { + return ( + {props.children} + ); +} diff --git a/src/components/preact/GLink.tsx b/src/components/preact/GLink.tsx new file mode 100644 index 0000000..dbfedf0 --- /dev/null +++ b/src/components/preact/GLink.tsx @@ -0,0 +1,15 @@ +import type { PropsWithChildren } from 'preact/compat'; + +class gLinkProps { + extraClasses?: string; + id?: string; + href: string = ''; +} + +export default function GLink(props: gLinkProps & PropsWithChildren) { + return ( + + {props.children} + + ); +} diff --git a/src/components/preact/MarqueeItem.tsx b/src/components/preact/MarqueeItem.tsx new file mode 100644 index 0000000..6156abb --- /dev/null +++ b/src/components/preact/MarqueeItem.tsx @@ -0,0 +1,17 @@ +class MarqueeItemProps { + name: string = ''; + desc: string = ''; + filepath: string = ''; +} + +export default function MarqueeItem(props: MarqueeItemProps) { + return ( +
+ {props.name} +
+

{props.name}

+

{props.desc}

+
+
+ ); +} diff --git a/src/components/preact/OSDependent.tsx b/src/components/preact/OSDependent.tsx new file mode 100644 index 0000000..0f3f4d4 --- /dev/null +++ b/src/components/preact/OSDependent.tsx @@ -0,0 +1,30 @@ +import Bowser, { OS_MAP } from 'bowser'; + +class OSDependentProps { + linux?: string; + macos?: string; + windows?: string; +} + +export default function OSDependent(props: OSDependentProps) { + const detectedOS = Bowser.parse(navigator.userAgent).os.name?.toLowerCase(); + let textToUse = ''; + + switch (detectedOS) { + case OS_MAP.MacOS: + textToUse = props.macos ? props.macos : ''; + break; + case OS_MAP.Linux: + textToUse = props.linux ? props.linux : ''; + break; + case OS_MAP.Windows: + textToUse = props.linux ? props.linux : ''; + break; + case OS_MAP.WindowsPhone: + textToUse = 'who even uses these'; + break; + default: + textToUse = props.macos ? props.macos : ''; + } + return <>{textToUse}; +} diff --git a/src/components/preact/SetupBtnFill.tsx b/src/components/preact/SetupBtnFill.tsx new file mode 100644 index 0000000..0618f56 --- /dev/null +++ b/src/components/preact/SetupBtnFill.tsx @@ -0,0 +1,20 @@ +import type { PropsWithChildren } from 'preact/compat'; + +class btnFillProps { + extraClasses?: string; + id?: string; +} + +export default function BtnFill(props: btnFillProps & PropsWithChildren) { + return ( + + ); +} diff --git a/src/components/preact/VioletPhrase.tsx b/src/components/preact/VioletPhrase.tsx new file mode 100644 index 0000000..8b7c2fd --- /dev/null +++ b/src/components/preact/VioletPhrase.tsx @@ -0,0 +1,7 @@ +import type { PropsWithChildren } from 'preact/compat'; + +class violetPhraseProps {} // for future use if necessary + +export default function VioletPhrase(props: violetPhraseProps & PropsWithChildren) { + return {props.children}; +} diff --git a/src/css/index.css b/src/css/index.css new file mode 100644 index 0000000..1efd46e --- /dev/null +++ b/src/css/index.css @@ -0,0 +1,193 @@ +@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap'); + +:root { + --credit: 'Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.'; + --msg: 'Used in index.html'; +} + +@font-face { + font-family: 'SatoshiVariable'; + src: url('./assets/fonts/Satoshi-Variable.ttf') format('truetype'); + font-weight: 100 200 300 400 500 600 700 800 900; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: 'Satoshi'; + src: url('./assets/fonts/Satoshi-Bold.woff2') format('woff2'), url('./assets/fonts/Satoshi-Bold.woff') format('woff'), + url('./assets/fonts/Satoshi-Black.woff2') format('woff2'), url('./assets/fonts/Satoshi-Black.woff') format('woff'); + font-weight: 700, 900; + font-style: normal; + font-display: swap; +} + +@tailwind base; +@tailwind components; +@tailwind utilities; + +html { + scroll-behavior: smooth; + position: relative; + min-height: 100%; +} + +body { + height: 100%; + /* background: radial-gradient(circle closest-corner at 70px 70px, rgba(90, 26, 229, 0.2), #121316 70%), + radial-gradient(circle at bottom right, #fff, #121316 70%), #121316; */ + background: radial-gradient(circle 120vh at 25% -20px, rgba(90, 26, 229, 0.15), rgba(90, 26, 229, 0.15), transparent), + radial-gradient(circle 150vh at 70% 80%, rgba(26, 80, 229, 0.15), transparent), #121316; +} + + +.scrollbar-extrathin { + scrollbar-width: thin; +} + +.scrollbar-extrathin::-webkit-scrollbar { + width: 6px; + height: 6px; +} + +.mask-fade-vertical { + mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0)); +} + +.mask-fade-horizontal { + mask-image: linear-gradient(to bottom, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0)); +} + +.mask-fade-bottom { + mask-image: linear-gradient(#fff, #000000 50%, #0000); +} + +.marquee-container { + --offset: -0%; + --move-initial: -0; + --move-final: calc(-50% + var(--offset)); +} + +.marquee-inner { + animation: marquee 240s linear infinite; + transform: translateZ(0) translateX(var(--move-initial)); + will-change: contents; + transition: all 0.4s ease; + -webkit-transition: all 0.4s ease; +} + +@media (prefers-reduced-motion: reduce) { + .marquee-inner { + animation-play-state: paused !important; + } +} + +.marquee-inner.marquee-reverse { + animation-direction: reverse; +} + +.marquee-wrapper { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +.shadow-title-r { + background: linear-gradient(to bottom right, #fff 30%, hsla(0, 0%, 100%, 0.5)); + background-clip: text; +} + +.shadow-title-b { + background: linear-gradient(to bottom, #fff 5%, #fff 30%, hsla(0, 0%, 100%, 0.6)); + background-clip: text; +} + +.grid-fix { + -webkit-margin-top-collapse: discard; +} + +.section-fade, +.section-fade-items>* { + opacity: 0; + transform: translateY(80px) translateZ(0); + transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; + -webkit-margin-top-collapse: discard; +} + +.section-fade-less { + opacity: 0; + transform: translateY(40px) translateZ(0); + transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; +} + +.section-fade-items>* { + transform: translateY(40px) translateZ(0); + transition-delay: calc((var(--custom-index)) * 80ms); +} + +.animate-fade-show, +.section-fade-items.animate-fade-show>* { + opacity: 1; + transform: translateY(0px) translateZ(0); + /* transition-delay: 0ms; */ +} + +#repos-grid.animate-fade-show>* { + --delay: calc((var(--custom-index, 0)) * 80ms); + transition: opacity 0.6s ease-in-out var(--delay), transform 0.6s ease-in-out var(--delay), background-color 150ms ease-in-out 0ms, + border-color 150ms ease-in-out 0ms, box-shadow 150ms ease-in-out 0ms; +} + +@media (prefers-reduced-motion: reduce) { + .section-fade { + transition: none !important; + opacity: 1 !important; + } +} + +@keyframes marquee { + 0% { + transform: translateX(var(--move-initial)) translateZ(0); + } + + 100% { + transform: translateX(var(--move-final)) translateZ(0); + } +} + +@media (min-width: 1110px) { + #event-log>*:nth-of-type(1n + 9) { + display: none; + } +} + +@media (max-width: 896px) { + #event-log>*:nth-of-type(1n + 5) { + display: none; + } +} + +@media (max-width: 896px) { + #repos-grid>*:nth-of-type(1n + 4) { + display: none; + } +} + +@media (max-width: 1268px) { + #repos-grid>*:nth-of-type(1n + 5) { + display: none; + } +} + +@media (max-width: 1421px) { + #repos-grid>*:nth-of-type(1n + 7) { + display: none; + } +} + +/* lg breakpoint */ +@media (min-width: 1422px) { + #repos-grid div { + display: flex !important; + } +} \ No newline at end of file diff --git a/src/env.d.ts b/src/env.d.ts new file mode 100644 index 0000000..f964fe0 --- /dev/null +++ b/src/env.d.ts @@ -0,0 +1 @@ +/// diff --git a/src/pages/index.astro b/src/pages/index.astro new file mode 100644 index 0000000..5f807a6 --- /dev/null +++ b/src/pages/index.astro @@ -0,0 +1,76 @@ +--- +import '../css/index.css'; +import OpenSource from '../components/astro/OpenSource.astro'; +import NavBar from '../components/astro/NavBar.astro'; +import Hero from '../components/astro/Hero.astro'; +import AppsSection2 from '../components/astro/AppsSection2.astro'; +--- + + + + + + + + + SideStore + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + diff --git a/tailwind.config.mjs b/tailwind.config.mjs new file mode 100644 index 0000000..45e6150 --- /dev/null +++ b/tailwind.config.mjs @@ -0,0 +1,51 @@ +const defaultTheme = require('tailwindcss/defaultTheme'); + +/** @type {import('tailwindcss').Config} */ +export default { + content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'], + theme: { + extend: { + fontFamily: { + sans: ['SatoshiVariable', ...defaultTheme.fontFamily.sans], + title: ['Poppins', ...defaultTheme.fontFamily.sans], + }, + screens: { + xs: '475px', + buttonsok: '355px', + stoplgtranslation: '1330px', + gridok: '896px', + nextprevok: '1096px', + grid35ok: '1268px', + grid12ok: '1422px', + dualbuttonok: '540px', + bardualok: '430px', + }, + colors: { + side: { + 100: '#f7fafc', + 200: '#edf2f7', + 900: '#1a202c', + }, + 'side-purple': { + 100: '#d2c2f6', + 200: '#b499f0', + 300: '#a584ec', + 400: '#9670e9', + border: '#7447d4', + 600: '#6932e0', + 700: '#5428b3', + }, + material: 'rgb(31,32,35)', + }, + }, + }, + + plugins: [ + function ({ addComponents, theme }) { + addComponents({ + '.bg-material': {"backdropBlur":"blur(40px)","background":"rgba(31,32,35,.8)"}, + '.marquee-card': {"display":"flex","paddingTop":"1rem","paddingBottom":"1rem","paddingLeft":"1rem","paddingRight":"1rem","marginLeft":"0.5rem","marginRight":"0.5rem","alignItems":"center","borderRadius":"1rem","borderWidth":"1px","width":"max-content","height":"auto","boxShadow":"0 1px 2px 0 rgba(0, 0, 0, 0.05)","maxWidth":"324px"} + }); + }, + ], +} diff --git a/tools/update_apps.mjs b/tools/update_apps.mjs new file mode 100644 index 0000000..e972c8b --- /dev/null +++ b/tools/update_apps.mjs @@ -0,0 +1,123 @@ +import fetch from 'node-fetch'; +import fs from 'fs/promises'; +import sharp from 'sharp'; + +import path from 'path'; +import { fileURLToPath } from 'url'; +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +const overrides = { + PokeMMO: 'A free-to-play online monster mmorpg.', +}; + +const folderExists = async (path) => { + let exists = false; + try { + exists = (await fs.stat(path)) && true; + } catch (e) { + if (e.code !== 'ENOENT') throw e; + } + return exists; +}; + +const outFolder = path.join(__dirname, '../public/assets/apps_data/'); +//for each app get the name icon and subtitle and download the icon +(async () => { + console.log(`✨ Updating mock events...`); + const mockEvents = await (await fetch('https://api.github.com/orgs/sidestore/events?per_page=100')).json(); + await fs.writeFile(path.join(__dirname, '../public/assets/mockevents.json'), JSON.stringify(mockEvents, null, 2)); + + console.log(`✨ Updating mock repos...`); + const mockRepos = await (await fetch('https://api.github.com/users/sidestore/repos?per_page=50')).json(); + await fs.writeFile(path.join(__dirname, '../public/assets/mockrepos.json'), JSON.stringify(mockRepos, null, 2)); + + //delete the folder if it exists and if command input contained --no-cache + if (process.argv.includes('--no-cache') && (await folderExists(outFolder))) { + await fs.rm(outFolder, { recursive: true }); + } else { + console.log(`📂 Skipping apps_out folder deletion...`); + } + + if (!(await folderExists(outFolder))) { + await fs.mkdir(outFolder); + console.log(`📂 Created apps_out folder...`); + } + + //https://raw.githubusercontent.com/SideStore/SideStore/develop/trustedapps.json + console.log(`✨ Fetching trusted sources...`); + const rawSource = await (await fetch('https://raw.githubusercontent.com/SideStore/SideStore/develop/trustedapps.json')).json(); + const sources = rawSource.sources.map((i) => i.sourceURL).filter((i) => !(i === undefined || i === null)); + console.log(`✅ Got ${sources.length} sources...`); + + let built = []; + + const promises = sources.map(async (source) => { + console.log(`✨ Fetching source ${source}...`); + try { + const response = await fetch(source); + const json = await response.json(); + + const appPromises = json.apps + .filter((a) => { + const allow = !['alpha', 'beta'].map((i) => a.name.toLowerCase().includes(i)).includes(true); + if (!allow) { + console.log(`🚫 Skipping ${a.name} as it's name contains "alpha" or "beta"`); + } + return allow; + }) + .map(async (app) => { + let name = app.name; + let icon = app.iconURL || null; + let subtitle = app.subtitle; + + let exists = false; + try { + exists = await fs.stat(outFolder + name + '.webp'); + } catch {} + + // if the app has an icon download it to the apps_out folder and then use sharp to resize it and convert it to webp + if (icon && !exists) { + try { + console.log(`🖼️ Downloading icon for app ${name}...`); + const file = await fetch(icon, { + headers: { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36', + }, + }); + const buffer = await file.arrayBuffer(); + const buffer2 = Buffer.from(buffer); + const image = sharp(buffer2); + + //resize to 128x128 + image.resize(128, 128); + //convert to webp + image.webp(); + //save to apps_out folder + await image.toFile(`${outFolder}${name}.webp`); + } catch (e) { + console.log(`🚫 Failed to download icon for ${name}... - ${icon}`); + console.log(e); + return; + } + } + + built.push({ + name, + desc: overrides[name] || subtitle, + filepath: `${outFolder}${name}.webp`, + }); + }); + await Promise.all(appPromises); + } catch (e) { + console.log(`🚫 Failed to fetch source ${source}...`); + } + }); + await Promise.all(promises); + + //remove dupe apps based on name + built = built.filter((thing, index, self) => index === self.findIndex((t) => t.name === thing.name)); + console.log(`📝 Writing applist.json (${built.length} apps)...`); + + await fs.writeFile(path.join(__dirname, '../src/') + 'applist.json', JSON.stringify(built, null, 2)); +})(); diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..e90c686 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "astro/tsconfigs/strict", + "compilerOptions": { + "jsx": "react-jsx", + "jsxImportSource": "preact" + } +} \ No newline at end of file