Imported MicronSync v.1.3.0.3 ALPHA 1

- Excluded "Program Files" from restricted backup/restore locations.
This commit is contained in:
2019-03-05 21:35:28 +00:00
parent a5aed4649b
commit 8bab06606e
5 changed files with 9 additions and 7 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
[Enhancements]
- 7-zip is no longer required to be installed. MicronSync comes with the required dependencies.
- "Program Files" is no longer a restricted backup/restore location. However please use at your own
risk: backing up tightly system-integrated software is not supported.
[MicronSync 1.3.0.2]-------------------------------------------------------------------------------
[Bug Fixes]
+6 -5
View File
@@ -14,6 +14,7 @@ namespace MicronSync
NewRegKeyUI_CorrectKey,
MainWindow_SaveChanges,
MainWindow_LoadIncompatible,
MainWindow_SZNotInstalled,
}
public enum errCodes
@@ -36,7 +37,6 @@ namespace MicronSync
Config_BadFile,
MainWindow_BadExplorePath,
MainWindow_EmptyExplorePath,
MainWindow_SZNotInstalled,
}
/// <summary>
@@ -120,10 +120,6 @@ namespace MicronSync
MessageBox.Show($"Cannot browse to an empty path.", "MicronSync",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
break;
case errCodes.MainWindow_SZNotInstalled:
MessageBox.Show("7z.exe/7z.dll can not be found in the working directory. Please ensure they both exist and try again.", "MicronSync",
MessageBoxButtons.OK, MessageBoxIcon.Error);
break;
}
}
@@ -164,6 +160,11 @@ namespace MicronSync
_dialogResult = MessageBox.Show($"You are trying load a legacy config file (v{info}) which is incompatible with this version of MicronSync.\nPlease load a config file which is at least of version 1.2.0.0 or create a new one, sorry for any inconvenience caused!", "MicronSync - Incompatible config",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
break;
case msgCodes.MainWindow_SZNotInstalled:
_dialogResult = MessageBox.Show("7-Zip is not currently installed but is required for MicronSync to run. Would you like to be taken to the download page?", "MicronSync",
MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation);
break;
}
return _dialogResult;
}
+1 -1
View File
@@ -19,8 +19,8 @@
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
<PermissionSet ID="Custom" SameSite="site" Unrestricted="true" />
</applicationRequestMinimum>
</security>
</trustInfo>
Binary file not shown.
Binary file not shown.