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
{{ message }}
This repository has been archived by the owner on Jul 1, 2020. It is now read-only.
Hi I tried following along with the documentation I created my own patch and uploaded the patch to google drive and updated the VERSION_INFO_URL to the new versioninfo.info
The output of the log is
...Checking if files are up-to-date...
...New version available...
An update is available! https://drive.google.com/uc?id=[ID HERE]&export=download
...Retrieving version info...
...Checking if files are up-to-date...
...Calculating new or changed files...
...Calculating files to download...
...Downloading 1 new or updated file(s)...
...Updating 1 file(s)...
1/1 Downloading: MOM Radio Launcher.exe (0.15MB)
...Calculating new or changed files...
The thread 0x760 has exited with code 0 (0x0).
...Downloading patch: Installer.patch...
ERROR: Installer.patch could not be downloaded
Operation failed...
The program '[24540] MOM Radio Launcher.exe' has exited with code -1 (0xffffffff).
I can't figure out where to even look to attempt to debug this one.
The text was updated successfully, but these errors were encountered:
private static void CheckForUpdates(SimplePatchTool patcher)
{
if (patcher.CheckForUpdates(false)) // false: each file is checked one-by-one to see if the app is up-to-date
{
WaitForPatcher(patcher);//Failing
if (patcher.Result == PatchResult.AlreadyUpToDate)
Console.WriteLine("App is up-to-date!");
else if (patcher.Result == PatchResult.Failed)
Console.WriteLine("Operation failed...");//Here
else
{
The log from the spt_logs is
=== 05/08/2020 15:37:52 ===
...Retrieving version info...
...Checking if files are up-to-date...
Preferred patch method RepairPatch: 0.15MB
Preferred patch method InstallerPatch: 108.08MB
Applying repair patch
...Calculating new or changed files...
...Calculating files to download...
...Downloading 1 new or updated file(s)...
...Updating 1 file(s)...
1/1 Downloading: MOM Radio Launcher.exe (0.15MB)
DownloadError: ERROR: MOM Radio Launcher.exe could not be downloaded
Applying installer patch
...Calculating new or changed files...
...Downloading patch: Installer.patch...
DownloadError: ERROR: Installer.patch could not be downloaded
ERROR: Installer.patch could not be downloaded
Hi I tried following along with the documentation I created my own patch and uploaded the patch to google drive and updated the VERSION_INFO_URL to the new versioninfo.info
The output of the log is
I can't figure out where to even look to attempt to debug this one.
The text was updated successfully, but these errors were encountered: