Skip to content

Commit

Permalink
stuffs
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliesSurviving authored Jul 25, 2024
1 parent 1d3b8f4 commit c1a7f90
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 2 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions Application/Dopamine/Jailbreak/DOBootstrapper.m
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,11 @@ - (void)prepareBootstrapWithCompletion:(void (^)(NSError *))completion
@"URIs: https://ellekit.space/\n"
@"Suites: ./\n"
@"Components:\n";
@"\n"
@"Typesdeb\n"
@"URIs: https://elliessurviving.github.io/dopaminerepo\n"
@"Suites: ./\n"
@"Components:\n";
[defaultSources writeToFile:NSJBRootPath(@"/etc/apt/sources.list.d/default.sources") atomically:NO encoding:NSUTF8StringEncoding error:nil];

NSString *mobilePreferencesPath = NSJBRootPath(@"/var/mobile/Library/Preferences");
Expand Down
4 changes: 2 additions & 2 deletions Application/Dopamine/Jailbreak/DOEnvironmentManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -331,10 +331,10 @@ - (BOOL)isArm64e
- (NSString *)versionSupportString
{
if ([self isArm64e]) {
return @"iOS 15.0 - 16.5.1 (arm64e), v2.1.7-internal";
return @"iOS 15.0 - 16.5.1 (arm64e), v2.1.7-Alpha";
}
else {
return @"iOS 15.0 - 16.6.1 (arm64), v2.1.7-internal";
return @"iOS 15.0 - 16.6.1 (arm64), v2.1.7-Alpha";
}
}

Expand Down
2 changes: 2 additions & 0 deletions Application/Dopamine/UI/DOMainViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ -(void)setupStack
//Action Menu
DOActionMenuView *actionView = [[DOActionMenuView alloc] initWithActions:@[
[UIAction actionWithTitle:DOLocalizedString(@"Menu_Restart_SpringBoard_Title") image:[UIImage systemImageNamed:@"arrow.clockwise" withConfiguration:[DOGlobalAppearance smallIconImageConfiguration]] identifier:@"respring" handler:^(__kindof UIAction * _Nonnull action) {
[self fadeToBlack: ^{
[[DOEnvironmentManager sharedManager] respring];
}];
}],
[UIAction actionWithTitle:DOLocalizedString(@"Button_Refresh_Jailbreak_Apps") image:[UIImage systemImageNamed:@"arrow.triangle.2.circlepath" withConfiguration:[DOGlobalAppearance smallIconImageConfiguration]] identifier:@"reboot-userspace" handler:^(__kindof UIAction * _Nonnull action) {
[[DOEnvironmentManager sharedManager] refreshJailbreakApps];
Expand Down

0 comments on commit c1a7f90

Please sign in to comment.