Skip to content

Commit 1241a1f

Browse files
committed
feat: support EnsWilde & ByeTunes for pairing file
1 parent 1c0a10f commit 1241a1f

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

crates/plume_types/src/options.rs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ pub enum SignerApp {
157157
LiveContainerAndSideStore,
158158
StikDebug,
159159
SparseBox,
160+
EnsWilde,
161+
ByeTunes,
160162
}
161163

162164
impl std::fmt::Display for SignerApp {
@@ -172,6 +174,8 @@ impl std::fmt::Display for SignerApp {
172174
LiveContainer | LiveContainerAndSideStore => "LiveContainer",
173175
StikDebug => "StikDebug",
174176
SparseBox => "SparseBox",
177+
EnsWilde => "EnsWilde",
178+
ByeTunes => "ByeTunes",
175179
};
176180
write!(f, "{}", name)
177181
}
@@ -193,6 +197,8 @@ impl SignerApp {
193197
("com.rileytestut.AltStore", SignerApp::AltStore),
194198
("com.stik.sj", SignerApp::StikDebug),
195199
("com.kdt.SparseBox", SignerApp::SparseBox),
200+
("com.yangjiii.EnsWilde", SignerApp::EnsWilde),
201+
("com.EduAlexxis.MusicManager", SignerApp::ByeTunes),
196202
];
197203

198204
for &(known_id, app) in KNOWN_APPS {
@@ -233,6 +239,8 @@ impl SignerApp {
233239
("protokolle", SignerApp::Protokolle),
234240
("stikdebug", SignerApp::StikDebug),
235241
("sparsebox", SignerApp::SparseBox),
242+
("enswilde", SignerApp::EnsWilde),
243+
("byetunes", SignerApp::ByeTunes),
236244
];
237245

238246
for &(needle, app) in KNOWN_APP_NAMES {
@@ -257,13 +265,14 @@ impl SignerApp {
257265
pub fn pairing_file_path(&self) -> Option<&'static str> {
258266
use SignerApp::*;
259267
match self {
260-
Antrag | Feather | Protokolle | StikDebug | SparseBox => {
268+
Antrag | Feather | Protokolle | StikDebug | SparseBox | EnsWilde => {
261269
Some("/Documents/pairingFile.plist")
262270
}
263271
SideStore => Some("/Documents/ALTPairingFile.mobiledevicepairing"),
264272
LiveContainerAndSideStore | LiveContainer => {
265273
Some("/Documents/SideStore/Documents/ALTPairingFile.mobiledevicepairing")
266274
}
275+
ByeTunes => Some("/Documents/pairing file/pairingFile.plist"),
267276
_ => None,
268277
}
269278
}

0 commit comments

Comments
 (0)