Merge pull request #6 from CelloSerenity/Csdev

This commit is contained in:
neo
2025-10-06 12:40:56 -04:00
committed by GitHub
8 changed files with 32 additions and 28 deletions

View File

@@ -24,9 +24,9 @@
| general | `help`, `botinfo`, `serverinfo`, `ping`, `feedback`, `uptime` | | general | `help`, `botinfo`, `serverinfo`, `ping`, `feedback`, `uptime` |
| fun | `randomfact`, `coinflip`, `rps`, `8ball`, `minesweeper` | | fun | `randomfact`, `coinflip`, `rps`, `8ball`, `minesweeper` |
| moderation | `kick`, `ban`, `nick`, `purge`, `hackban`, `warnings`, `archive`, `timeout` | | moderation | `kick`, `ban`, `nick`, `purge`, `hackban`, `warnings`, `archive`, `timeout` |
| sidestore | `sidestore`, `refresh`, `code`, `crash`, `pairing`, `server`, `half`, `sparse`, `afc`, `udid` | | sidestore | `help`, `refresh`, `code`, `crash`, `pairing`, `server`, `half`, `sparse`, `afc`, `udid` |
| idevice | `idevice`, `noapps`, `errorcode`, `developermode`, `mountddi` | | idevice | `help`, `noapps`, `errorcode`, `developermode`, `mountddi` |
| melonx | `melonx`, `transfer`, `mods`, `gamecrash`, `requirements`, `error`, `26` | | melonx | `help`, `transfer`, `mods`, `gamecrash`, `requirements`, `error`, `26` |
| miscellaneous | `keanu`, `labubu`, `piracy`, `tryitandsee`, `rickroll`, `dontasktoask`, `support`| | miscellaneous | `keanu`, `labubu`, `piracy`, `tryitandsee`, `rickroll`, `dontasktoask`, `support`|
| utilities | `translate`, `codepreview`, `dictionary` | | utilities | `translate`, `codepreview`, `dictionary` |
| media | `download`, `mcquote`, `img2gif` | | media | `download`, `mcquote`, `img2gif` |

View File

@@ -14,12 +14,13 @@ def afc_command():
color=0x8e82f9, color=0x8e82f9,
description=( description=(
'# AFC Connection Failure\n\n---\n\n' + '# AFC Connection Failure\n\n---\n\n' +
'1. Make sure StosVPN is connected\n' + '1. Make sure Wi-Fi is connected to a stable network\n' +
'2. If issue still persists, generate and import a new pairing file using `idevice_pair`. See [Pairing File instructions](https://docs.sidestore.io/docs/installation/pairing-file) for details' '2. Make sure StosVPN is connected and updated\n' +
'3. If issue still persists, generate and import a new pairing file using `idevice_pair`. See [Pairing File instructions](https://docs.sidestore.io/docs/installation/pairing-file) for details'
) )
) )
embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true") embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true")
embed.set_footer(text=f'Last Edited by neoarz') embed.set_footer(text=f'Last Edited by CelloSerenity')
embed.timestamp = discord.utils.utcnow() embed.timestamp = discord.utils.utcnow()
view = discord.ui.View() view = discord.ui.View()

View File

@@ -24,15 +24,15 @@ def code_command():
'2. **For iOS versions 18.1 and above:**\n' + '2. **For iOS versions 18.1 and above:**\n' +
' - Visit [iCloud](https://www.icloud.com) on a web browser\n' + ' - Visit [iCloud](https://www.icloud.com) on a web browser\n' +
' - Click "Sign In"\n' + ' - Click "Sign In"\n' +
' - When prompted, you will see two options: "Sign In" and "Use Different Apple Account"\n' + ' - On an Apple device, you may see two options: "Sign In" and "Use Different Apple Account"\n' +
' - Select the bottom option, "Use Different Apple Account"\n' + ' - Select the bottom option, "Use Different Apple Account"\n' +
' - Enter your Apple ID and password\n' + ' - Enter your Apple ID and password, DO NOT USE A PASSKEY\n' +
' - Apple will send you a verification code\n' + ' - Apple will send you a verification code\n' +
' - Use this code in Sidestore to complete the sign-in process\n' ' - Use this code in SideStore to complete the sign-in process\n'
) )
) )
embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true") embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true")
embed.set_footer(text=f'Last Edited by neoarz') embed.set_footer(text=f'Last Edited by CelloSerenity')
embed.timestamp = discord.utils.utcnow() embed.timestamp = discord.utils.utcnow()
view = discord.ui.View() view = discord.ui.View()

View File

@@ -13,17 +13,20 @@ def crash_command():
embed = discord.Embed( embed = discord.Embed(
color=0x8e82f9, color=0x8e82f9,
description=( description=(
'# Sidestore Crashing After Refresh\n\n---\n\n' + '# SideStore Crashing After Refresh\n\n---\n\n' +
'1. Delete your current SideStore.\n' + 'First, to try and save your data:\n' +
'2. Reinstall with AltServer.\n' + "1. DON'T DELETE SIDESTORE, reinstall with AltServer's `Sideload .ipa`.\n" +
'3. Select the pairing file and sign into SideStore.\n' + "If that doesn't work:\n" +
'4. Download the SideStore .ipa file, and save it to your Files app.\n' +
'5. Import the "Sidestore.ipa" file into SideStore, just like how you import any other IPA.\n\n' + '1. Delete your current SideStore. Reinstall with AltServer.\n' +
'2. Import your pairing file and sign into SideStore.\n' +
'3. Download the SideStore .ipa file, and save it to your Files app.\n' +
'4. Import the "Sidestore.ipa" file into SideStore, just like how you import any other IPA.\n\n' +
'This process ensures SideStore is refreshed without issues.' 'This process ensures SideStore is refreshed without issues.'
) )
) )
embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true") embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true")
embed.set_footer(text=f'Last Edited by neoarz') embed.set_footer(text=f'Last Edited by CelloSerenity')
embed.timestamp = discord.utils.utcnow() embed.timestamp = discord.utils.utcnow()
view = discord.ui.View() view = discord.ui.View()

View File

@@ -13,8 +13,8 @@ def half_command():
embed = discord.Embed( embed = discord.Embed(
color=0x8e82f9, color=0x8e82f9,
description=( description=(
'# Sidestore/IPAs Stuck Halfway Through Installing or Refreshing\n\n---\n' + '# SideStore/IPAs Stuck Halfway Through Installing or Refreshing\n\n---\n' +
'### Make Sure You are on the Latest Version of SideStore\n\n' + '- Make sure you are on the latest version of SideStore\n' +
'- Restart SideStore\n' + '- Restart SideStore\n' +
'- Restart device\n' + '- Restart device\n' +
'- Clear Cache\n' + '- Clear Cache\n' +
@@ -26,7 +26,7 @@ def half_command():
) )
) )
embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true") embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true")
embed.set_footer(text=f'Last Edited by neoarz') embed.set_footer(text=f'Last Edited by CelloSerenity')
embed.timestamp = discord.utils.utcnow() embed.timestamp = discord.utils.utcnow()
view = discord.ui.View() view = discord.ui.View()

View File

@@ -22,16 +22,16 @@ def pairing_command():
' - Rename the file to `ALTPairingFile.mobiledevicepairing`\n' + ' - Rename the file to `ALTPairingFile.mobiledevicepairing`\n' +
' - Try moving the pairing file to the root directory of the SideStore folder in the Files app under "On My iPhone/iPad"\n\n' + ' - Try moving the pairing file to the root directory of the SideStore folder in the Files app under "On My iPhone/iPad"\n\n' +
'3. **Certificate Signing:**\n' + '3. **Certificate Signing:**\n' +
" When signing Sidestore with certain certificates, you won't be able to select the pairing file from within the app\n" + " When signing SideStore with certain certificates, you won't be able to select the pairing file from within the app\n" +
' - Try the fix mentioned above\n' + ' - Try the fix mentioned above\n' +
' - If you do not see the Sidestore folder in the Files app:\n' + ' - If you do not see the SideStore folder in the Files app:\n' +
' • Connect your phone to your computer\n' + ' • Connect your phone to your computer\n' +
' • Drag and drop the pairing file into the Sidestore app\'s files section\n' + ' • Drag and drop the pairing file into the SideStore app\'s files section\n' +
' • Ensure the file is renamed to `ALTPairingFile.mobiledevicepairing`\n' ' • Ensure the file is renamed to `ALTPairingFile.mobiledevicepairing`\n'
) )
) )
embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true") embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true")
embed.set_footer(text=f'Last Edited by neoarz') embed.set_footer(text=f'Last Edited by CelloSerenity')
embed.timestamp = discord.utils.utcnow() embed.timestamp = discord.utils.utcnow()
view = discord.ui.View() view = discord.ui.View()

View File

@@ -13,7 +13,7 @@ def server_command():
embed = discord.Embed( embed = discord.Embed(
color=0x8e82f9, color=0x8e82f9,
description=( description=(
'# Sidestore Freezing or Displaying an Error Code During Sign-In\n\n---\n\n' + '# SideStore Freezing or Displaying an Error Code During Sign-In\n\n---\n\n' +
'1. **Change the Anisette Server:**\n' + '1. **Change the Anisette Server:**\n' +
' The most common solution is to switch to a different Anisette server. Do this:\n' + ' The most common solution is to switch to a different Anisette server. Do this:\n' +
' - Open Sidestore settings\n' + ' - Open Sidestore settings\n' +
@@ -25,7 +25,7 @@ def server_command():
) )
) )
embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true") embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true")
embed.set_footer(text=f'Last Edited by neoarz') embed.set_footer(text=f'Last Edited by CelloSerenity')
embed.timestamp = discord.utils.utcnow() embed.timestamp = discord.utils.utcnow()
view = discord.ui.View() view = discord.ui.View()

View File

@@ -14,12 +14,12 @@ def udid_command():
color=0x8e82f9, color=0x8e82f9,
description=( description=(
'# SideStore Could Not Determine Device UDID\n\n---\n\n' + '# SideStore Could Not Determine Device UDID\n\n---\n\n' +
'This error usually occurs when the pairing file is corrupted. Please generate a new pairing file and try again.\n\n' + 'This error usually occurs when the pairing file is corrupted. Please create a new pairing file using `idevice_pair` and try again.\n\n' +
'If you forgot how to generate a new pairing file, you can refer to the documentation below.' 'If you forgot how to generate a new pairing file, you can refer to the documentation below.'
) )
) )
embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true") embed.set_author(name="SideStore", icon_url="https://github.com/SideStore/assets/blob/main/icons/classic/Default.png?raw=true")
embed.set_footer(text=f'Last Edited by neoarz') embed.set_footer(text=f'Last Edited by CelloSerenity')
embed.timestamp = discord.utils.utcnow() embed.timestamp = discord.utils.utcnow()
view = discord.ui.View() view = discord.ui.View()