Files

45 lines
1.8 KiB
Python
Raw Permalink Normal View History

import discord
from discord.ext import commands
def noapps_command():
@commands.hybrid_command(
2025-11-02 23:32:52 -05:00
name="noapps",
description="Help when apps aren't showing in installed apps view",
)
async def noapps(self, context):
embed = discord.Embed(
2025-11-02 23:32:52 -05:00
color=0xFA8C4A,
description=(
2025-11-02 23:32:52 -05:00
"# Apps Not Showing in Installed Apps View\n\n---\n\n"
+ "If apps aren't appearing in the StikDebug installed apps view, this is likely because they were signed with a distribution certificate instead of a development certificate.\n\n"
+ "Distribution certificates lack the `get-task-allow` entitlement needed for JIT.\n\n"
+ "To fix this issue:\n"
+ "- Use a development certificate when signing apps, or\n"
+ "- Try SideStore, the best free sideloading method available\n\n"
+ "More details can be found at [SideStore's official website](https://sidestore.io/)"
),
)
embed.set_author(
name="idevice", icon_url="https://yes.nighty.works/raw/snLMuO.png"
)
2025-11-22 19:51:46 -05:00
embed.set_footer(text="Last Edited by neoarz")
embed.timestamp = discord.utils.utcnow()
view = discord.ui.View()
2025-11-02 23:32:52 -05:00
view.add_item(
discord.ui.Button(
label="Edit Command",
style=discord.ButtonStyle.secondary,
url="https://github.com/neoarz/Syntrel/blob/main/cogs/idevice/noapps.py",
emoji="<:githubicon:1417717356846776340>",
)
)
if context.interaction:
await context.interaction.response.send_message(embed=embed, view=view)
else:
await context.send(embed=embed, view=view)
2025-11-02 23:32:52 -05:00
return noapps