You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If it doesn't success to get the base diff, then fallback to actually download the whole game
571
+
if(!isSuccess)
572
+
{
573
+
Logger.LogWriteLine($"The current game version: {requestedVersionFrom.ToString()} is too obsolete and incremental update is unavailable. Falling back to full update",LogType.Warning,true);
// If the request pair source is not found, then return false
857
+
if(!requestPairFrom.IsFound)
858
+
{
859
+
Logger.LogWriteLine($"Sophon manifest for source via URL: {requestedUrlFrom} is not found! Return message: {requestPairFrom.ReturnMessage} ({requestPairFrom.ReturnCode})",LogType.Warning,true);
860
+
returnfalse;
861
+
}
862
+
863
+
// If the request pair target is not found, then return false
864
+
if(!requestPairTo.IsFound)
865
+
{
866
+
Logger.LogWriteLine($"Sophon manifest for target via URL: {requestedUrlTo} is not found! Return message: {requestPairTo.ReturnMessage} ({requestPairTo.ReturnCode})",LogType.Warning,true);
867
+
returnfalse;
868
+
}
869
+
766
870
// Ensure that the manifest is ordered based on _gameVoiceLanguageLocaleIdOrdered
Copy file name to clipboardExpand all lines: Hi3Helper.Core/Lang/en_US.json
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -995,7 +995,13 @@
995
995
"CloseOverlay": "Close Overlay",
996
996
997
997
"DbGenerateUid_Title": "Are you sure you wish to change your user ID?",
998
-
"DbGenerateUid_Content": "Changing the current user ID will cause the associated data to be lost if you lose it."
998
+
"DbGenerateUid_Content": "Changing the current user ID will cause the associated data to be lost if you lose it.",
999
+
1000
+
"SophonIncrementUpdateUnavailTitle": "Incremental Update is Unavailable: Version is Too Obsolete!",
1001
+
"SophonIncrementUpdateUnavailSubtitle1": "Your game version: {0}",
1002
+
"SophonIncrementUpdateUnavailSubtitle2": " is too obsolete",
1003
+
"SophonIncrementUpdateUnavailSubtitle3": " and incremental update for your version is not available. However, you could still update your game by re-downloading the entire thing from scratch.",
1004
+
"SophonIncrementUpdateUnavailSubtitle4": "Click \"{0}\" to continue updating the entire thing or click \"{1}\" to cancel the process"
0 commit comments