Fix deletion, delete from list, improve patch detection
This commit is contained in:
parent
f522432208
commit
faa88157bb
4 changed files with 37 additions and 17 deletions
|
@ -250,6 +250,8 @@ You may also want to verify the game's files by right clicking the game in Steam
|
|||
return;
|
||||
if (MessageBox.Show("Validating the game's files is useful if the game doesn't start even without mods. Make sure to click Refresh once Steam finished verifying the game. The Steam window that shows the progress might open in the background. Note that you will need to patch the game again using the Play button in order to use mods.\n\nContinue?", "Verify game files", MessageBoxButtons.OKCancel) == DialogResult.Cancel)
|
||||
return;
|
||||
string exe = GetExe();
|
||||
File.Delete(GamePath($@"\{exe.Replace(".exe", "")}_Data\Managed\IllusionInjector.dll")); //Used to check if game is patched
|
||||
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
|
||||
Process.Start("steam://validate/1078000/");
|
||||
else
|
||||
|
|
|
@ -121,6 +121,8 @@ namespace GCMM
|
|||
}
|
||||
|
||||
public void UninstallMod(ModInfo mod)
|
||||
{
|
||||
try
|
||||
{
|
||||
LoadFileList(mod);
|
||||
if (mod.ModFiles.Count == 0) //A single DLL
|
||||
|
@ -131,13 +133,24 @@ namespace GCMM
|
|||
{
|
||||
File.Delete(file);
|
||||
var parent = Directory.GetParent(file);
|
||||
if (!parent.EnumerateFiles().Any())
|
||||
if (!parent.EnumerateFileSystemInfos().Any())
|
||||
parent.Delete(); //May delete the Plugins dir if empty
|
||||
}
|
||||
}
|
||||
File.Delete(mod.Name + ".json");
|
||||
mod.Version = null; //Not installed
|
||||
if (mod.Author != null)
|
||||
AddUpdateModInList(mod); //Update list
|
||||
else
|
||||
{
|
||||
mods.Remove(mod.Name);
|
||||
modlist.Items[mod.Name].Remove();
|
||||
}
|
||||
}
|
||||
catch (Exception e) when (e is UnauthorizedAccessException || e is IOException)
|
||||
{
|
||||
MessageBox.Show("Could not remove mod files! Make sure the game isn't running.\n" + e.Message);
|
||||
}
|
||||
}
|
||||
|
||||
public async Task UpdateAPI()
|
||||
|
|
|
@ -175,12 +175,17 @@ namespace GCMM
|
|||
|
||||
public void CheckUninstalledMods(HashSet<string> installed)
|
||||
{
|
||||
List<string> delete = new List<string>();
|
||||
foreach (string name in mods.Keys.Except(installed))
|
||||
{
|
||||
var mod = mods[name];
|
||||
mod.Version = null;
|
||||
if (mod.Author != null)
|
||||
AddUpdateModInList(mod);
|
||||
}
|
||||
else
|
||||
delete.Add(name);
|
||||
}
|
||||
delete.ForEach(name => { mods.Remove(name); modlist.Items[name].Remove(); });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ namespace GCMM
|
|||
playbtn.Text = pnp;
|
||||
return GameState.NoPatcher;
|
||||
}
|
||||
if (gcipa.Updatable)
|
||||
if (gcipa.Updatable && !(gcipa.Version == new Version(1, 0, 0, 0) && gcipa.LatestVersion == new Version(4, 0, 0, 0)))
|
||||
{
|
||||
status.Text = "Status: Patcher outdated\nClicking play will update it";
|
||||
playbtn.Text = pnp;
|
||||
|
@ -54,7 +54,8 @@ namespace GCMM
|
|||
}
|
||||
if (File.GetLastWriteTime(GamePath($@"\{gc}_Data\Managed\Assembly-CSharp.dll"))
|
||||
> //If the file was updated at least 2 minutes after patching
|
||||
Directory.GetLastWriteTime(backup).AddMinutes(2))
|
||||
Directory.GetLastWriteTime(backup).AddMinutes(2)
|
||||
|| !File.Exists(GamePath($@"\{gc}_Data\Managed\IllusionInjector.dll")))
|
||||
{
|
||||
status.Text = nopatch;
|
||||
playbtn.Text = pnp;
|
||||
|
@ -89,7 +90,6 @@ namespace GCMM
|
|||
EndWork();
|
||||
return;
|
||||
}
|
||||
string releases = "/api/v1/repos/modtainers/GCIPA/releases";
|
||||
this.status.Text = "Status: Patching...";
|
||||
using (WebClient client = GetClient())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue