Skip to content

Commit

Permalink
2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
opa334 committed Dec 31, 2024
1 parent 74a6b2f commit 87d5881
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Application/Dopamine.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2242,7 +2242,7 @@
"$(PROJECT_DIR)/Dopamine/Dependencies",
"$(PROJECT_DIR)/Dopamine/Resources",
);
MARKETING_VERSION = 2.2.2;
MARKETING_VERSION = 2.3;
PRODUCT_BUNDLE_IDENTIFIER = com.opa334.Dopamine;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down Expand Up @@ -2279,7 +2279,7 @@
"$(PROJECT_DIR)/Dopamine/Dependencies",
"$(PROJECT_DIR)/Dopamine/Resources",
);
MARKETING_VERSION = 2.2.2;
MARKETING_VERSION = 2.3;
PRODUCT_BUNDLE_IDENTIFIER = com.opa334.Dopamine;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down
2 changes: 1 addition & 1 deletion Application/Dopamine/de.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"Settings_iDownload" = "iDownload (Entwickler-Terminal)";
"Settings_Verbose_Logs" = "Detaillierte Logs";
"Settings_Apps_JIT" = "Erlaube JIT in Apps";
"Settings_Allow_Old_arm64e_ABI_Libraries" = "Erlaube veraltete arm64e Bibliotheken";
"Settings_Allow_Old_arm64e_ABI_Libraries" = "Erlaube veraltete arm64e ABI";
"Settings_Jetsam_Multiplier" = "Jetsam Multiplikator";

// Settings Buttons
Expand Down
2 changes: 1 addition & 1 deletion BaseBin/_external/basebin/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.3
6 changes: 6 additions & 0 deletions BaseBin/launchdhook/src/update.m
Original file line number Diff line number Diff line change
Expand Up @@ -203,5 +203,11 @@ void jbupdate_finalize_stage2(const char *prevVersion, const char *newVersion)
#endif
}

if (strcmp(prevVersion, "2.3") < 0 && strcmp(newVersion, "2.3") >= 0) {
// Default value for this pref is true
// Set it during jbupdate if prev version is <2.3 and new version is >=2.3
gSystemInfo.jailbreakSettings.oldAbiSupportEnabled = true;
}

JBFixMobilePermissions();
}

0 comments on commit 87d5881

Please sign in to comment.