Compare commits

..

No commits in common. "973d8872b6dd4651d650835112a47795ea9e0026" and "8e8d7d534f2de1da4137044160fba5ff1ff3a4f8" have entirely different histories.

3 changed files with 4 additions and 4 deletions

View File

@ -175,8 +175,8 @@ public static class FileHelper
var problemNames = new Dictionary<string, PathCheckType>()
{
{ "Desktop", PathCheckType.EndsWith },
{ "Documents", PathCheckType.EndsWith },
{ "Desktop", PathCheckType.Contains },
{ "scoped_dir", PathCheckType.Contains },
{ "Downloads", PathCheckType.Contains },
{ "OneDrive", PathCheckType.Contains },

View File

@ -36,7 +36,7 @@ public class InitializationTask : InstallerTaskBase
if (File.Exists(Path.Join(_data.TargetInstallPath, "EscapeFromTarkov.exe")))
{
return Result.FromError("Installer is located in a folder that has existing game files. Please make sure the installer is in an empty folder as per the guide");
return Result.FromError("Installer is located in a folder that has existing game files. Please make sure the installer is in a fresh folder as per the guide");
}
return Result.FromSuccess($"Current Game Version: {_data.OriginalGameVersion}");

View File

@ -9,8 +9,8 @@
<PackageIcon>icon.ico</PackageIcon>
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
<Configurations>Debug;Release;TEST</Configurations>
<AssemblyVersion>2.55</AssemblyVersion>
<FileVersion>2.55</FileVersion>
<AssemblyVersion>2.54</AssemblyVersion>
<FileVersion>2.54</FileVersion>
<Company>SPT-AKI</Company>
</PropertyGroup>