Skip to content

Commit 59b1dea

Browse files
authored
Merge pull request #481 from besteon/dev
8.7.1 Patch Release
2 parents fe69ae8 + 8832095 commit 59b1dea

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

UpdateOrInstall.lua

+5-5
Original file line numberDiff line numberDiff line change
@@ -251,9 +251,10 @@ function UpdateOrInstall.updateFiles(archiveFolderPath)
251251

252252
local result = os.execute(command)
253253
if not (result == true or result == 0) then -- true / 0 = successful
254-
print("> ERROR: " .. err1)
254+
print("> WARNING: " .. err1)
255255
print("> " .. err2)
256-
return false
256+
-- Always return true now that the new XCOPY succeeds regardless of error
257+
return true
257258
end
258259

259260
return true
@@ -337,14 +338,13 @@ function UpdateOrInstall.buildDownloadExtractCommand(tarUrl, archive, extractedF
337338
end
338339

339340
-- Returns a string of batch commands to run based on the operating system, also returns error messages
340-
-- TODO: Known issue is XCOPY seems to fail if Tracker is kept on OneDrive or in a secure folder
341341
function UpdateOrInstall.buildCopyFilesCommand(extractedFolder, isOnWindows)
342342
local messages = {
343343
filesready = "New release files downloaded and ready for update.",
344344
updating = "Applying the update, copying over files.",
345345
completed = "Version update completed successfully.",
346-
error1 = "Unable to copy over and update Tracker files.",
347-
error2 = string.format('Try restarting the emulator and loading ONLY the "%s" script.', UpdateOrInstall.thisFileName),
346+
error1 = "Some Tracker image files were skipped during the update, but everything will still work just fine.",
347+
error2 = string.format("You can restore these files by restarting the emulator and loading the '%s' script.", UpdateOrInstall.thisFileName),
348348
}
349349

350350
local batchCommands = {}

ironmon_tracker/Main.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Main = {}
22

33
-- The latest version of the tracker. Should be updated with each PR.
4-
Main.Version = { major = "8", minor = "7", patch = "0" }
4+
Main.Version = { major = "8", minor = "7", patch = "1" }
55

66
Main.CreditsList = { -- based on the PokemonBizhawkLua project by MKDasher
77
CreatedBy = "Besteon",

0 commit comments

Comments
 (0)