diff --git a/AUTHORS b/AUTHORS index 714fd8a..05d3615 100644 --- a/AUTHORS +++ b/AUTHORS @@ -2,3 +2,5 @@ Alex J. Lennon - first version of all files Roman Belkov - extensive changes and revisions in Disk.cs, MainForm.cs, MainForm.Designer.cs, Win32DiskAccess.cs, AssemblyInfo.cs + removed Utility.cs, MessageBoxEx.cs because of their complexity when being + obviously redundant diff --git a/DiskImager.Installer/DiskImager.Installer.vdproj b/DiskImager.Installer/DiskImager.Installer.vdproj index e63474d..1a8d269 100644 --- a/DiskImager.Installer/DiskImager.Installer.vdproj +++ b/DiskImager.Installer/DiskImager.Installer.vdproj @@ -11,6 +11,7 @@ "SccLocalPath" = "8:" "SccAuxPath" = "8:" "SccProvider" = "8:" +"BackwardsCompatibleGUIDGeneration" = "8:TRUE" "Hierarchy" { "Entry" @@ -46,13 +47,13 @@ "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6E9AF8EC5D4F379F4D34C8099B9F1E44" + "OwnerKey" = "8:_B1090C5A5662721B31DE535DD9FE3833" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B1090C5A5662721B31DE535DD9FE3833" + "OwnerKey" = "8:_6E9AF8EC5D4F379F4D34C8099B9F1E44" "MsmSig" = "8:_UNDEFINED" } } @@ -187,11 +188,6 @@ "AssemblyAsmDisplayName" = "8:XZ.NET, Version=1.0.0.0, Culture=neutral, processorArchitecture=x86" "ScatterAssemblies" { - "_6E9AF8EC5D4F379F4D34C8099B9F1E44" - { - "Name" = "8:XZ.NET.dll" - "Attributes" = "3:512" - } } "SourcePath" = "8:XZ.NET.dll" "TargetName" = "8:" @@ -218,11 +214,6 @@ "AssemblyAsmDisplayName" = "8:ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, processorArchitecture=MSIL" "ScatterAssemblies" { - "_B1090C5A5662721B31DE535DD9FE3833" - { - "Name" = "8:ICSharpCode.SharpZipLib.dll" - "Attributes" = "3:512" - } } "SourcePath" = "8:ICSharpCode.SharpZipLib.dll" "TargetName" = "8:" @@ -298,15 +289,15 @@ { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:Disk Imager" - "ProductCode" = "8:{7BBABAB6-EC36-43A5-958B-1009330760E1}" - "PackageCode" = "8:{7ED773B2-6F52-46ED-AD6A-FD08665FD478}" + "ProductCode" = "8:{7F9C3BF0-DDA2-4251-A434-E62ED3837FDE}" + "PackageCode" = "8:{21926A01-EA17-49C3-9730-BDDAA5C33F40}" "UpgradeCode" = "8:{A2F957D8-23F6-44DB-A22C-CCA8275E1FCE}" "AspNetVersion" = "8:4.0.30319.0" "RestartWWWService" = "11:FALSE" "RemovePreviousVersions" = "11:FALSE" "DetectNewerInstalledVersion" = "11:TRUE" "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.3.2" + "ProductVersion" = "8:1.4.0" "Manufacturer" = "8:Dynamic Devices" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" diff --git a/DiskImager/Properties/AssemblyInfo.cs b/DiskImager/Properties/AssemblyInfo.cs index d2ea4f3..2388fb8 100644 --- a/DiskImager/Properties/AssemblyInfo.cs +++ b/DiskImager/Properties/AssemblyInfo.cs @@ -47,5 +47,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.3.2.*")] -[assembly: AssemblyFileVersion("1.3.2.0")] +[assembly: AssemblyVersion("1.4.0.*")] +[assembly: AssemblyFileVersion("1.4.0.0")] diff --git a/README.md b/README.md index 1f9d36e..dee8c59 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,12 @@ Some rights reserved. See LICENSE, AUTHORS. The current release can be downloaded [here](https://github.com/RomanBelkov/DiskImager/releases) or [here (old link)](http://www.dynamicdevices.co.uk/downloads/DiskImager.Installer.msi) -Utility was tested on Windows 7 and Windows 8.1 Pro. +Utility was tested on Windows 7 and Windows 8/8.1/8.1 Pro. (Please feed back any platform testing you do, or any issues you encounter. Thanks.) ## Description ## -This utility is a C#.NET implementation of Win32DiskImager with a couple of features authors wanted to use: +This utility is a .NET implementation of Win32DiskImager with a couple of features authors wanted to use: - writing images to a number of SD cards at once @@ -34,15 +34,19 @@ Credits: Inspired by the excellent Win32DiskImager. ## ChangeLog ## +1.4.0 08/04/2015 RB Simplified UI + +1.3.2 25/03/2015 RB Added post-action notification & resolved issue when MBR's with more than one partition were read incorrectly + 1.3.1 16/03/2015 RB Added MultiThreaded XZ compression & helping tooltips 1.3.0 19/02/2015 RB Added XZ support 1.2.2 21/01/2015 RB Added 'Remove drives after write' and drew new GUI -1.2.1 14/01/15 RB Added Russian localization and tweaked GUI a bit. +1.2.1 14/01/2015 RB Added Russian localization and tweaked GUI a bit. -1.2.0 06/01/15 RB Added ability to write the same image to many SD simultaneously. Changed the look of GUI. +1.2.0 06/01/2015 RB Added ability to write the same image to many SD simultaneously. Changed the look of GUI. 1.1.0 12/05/14 AJL Updated to use latest SharpZipLib as we were encountering (de-)compression errors with the previous version.