1 Commits

Author SHA1 Message Date
8bab06606e Imported MicronSync v.1.3.0.3 ALPHA 1
- Excluded "Program Files" from restricted backup/restore locations.
2019-03-05 21:35:28 +00:00
5 changed files with 9 additions and 7 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
[Enhancements] [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]------------------------------------------------------------------------------- [MicronSync 1.3.0.2]-------------------------------------------------------------------------------
[Bug Fixes] [Bug Fixes]
+6 -5
View File
@@ -14,6 +14,7 @@ namespace MicronSync
NewRegKeyUI_CorrectKey, NewRegKeyUI_CorrectKey,
MainWindow_SaveChanges, MainWindow_SaveChanges,
MainWindow_LoadIncompatible, MainWindow_LoadIncompatible,
MainWindow_SZNotInstalled,
} }
public enum errCodes public enum errCodes
@@ -36,7 +37,6 @@ namespace MicronSync
Config_BadFile, Config_BadFile,
MainWindow_BadExplorePath, MainWindow_BadExplorePath,
MainWindow_EmptyExplorePath, MainWindow_EmptyExplorePath,
MainWindow_SZNotInstalled,
} }
/// <summary> /// <summary>
@@ -120,10 +120,6 @@ namespace MicronSync
MessageBox.Show($"Cannot browse to an empty path.", "MicronSync", MessageBox.Show($"Cannot browse to an empty path.", "MicronSync",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
break; 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", _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); MessageBoxButtons.OK, MessageBoxIcon.Warning);
break; 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; return _dialogResult;
} }
+1 -1
View File
@@ -19,8 +19,8 @@
<requestedExecutionLevel level="asInvoker" uiAccess="false" /> <requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges> </requestedPrivileges>
<applicationRequestMinimum> <applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" /> <defaultAssemblyRequest permissionSetReference="Custom" />
<PermissionSet ID="Custom" SameSite="site" Unrestricted="true" />
</applicationRequestMinimum> </applicationRequestMinimum>
</security> </security>
</trustInfo> </trustInfo>
Binary file not shown.
Binary file not shown.