DiskImager/index.html

113 lines
5.4 KiB
HTML

<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Disk Imager by RomanBelkov</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
</head>
<body>
<section class="page-header">
<h1 class="project-name">Disk Imager</h1>
<h2 class="project-tagline">.NET Windows utility for reading &amp; writing SD cards and USB devices</h2>
<a href="https://github.com/RomanBelkov/DiskImager" class="btn">View code on GitHub</a>
<a href="https://github.com/RomanBelkov/DiskImager/releases/latest" class="btn">Download latest release</a>
<a href="https://github.com/RomanBelkov/DiskImager/wiki" class="btn">View wiki</a>
</section>
<section class="main-content">
<h1>
<a id="description" class="anchor" href="#description" aria-hidden="true"><span class="octicon octicon-link"></span></a>Description</h1>
<p>Licensed under GNU General Public License 3.0 or later.
Some rights reserved. See LICENSE, AUTHORS.</p>
<p>Basically, this utility is a .NET implementation of Win32DiskImager with a couple of features authors wanted to use:</p>
<ul>
<li><p>writing images to a number of SD cards at once</p></li>
<li><p>reads/writes images to/from compressed file formats: ZIP, TGZ, GZ, XZ</p></li>
<li><p>remembers the last file you read/wrote </p></li>
<li><p>unmounts drives after write</p></li>
<li><p>provides more file filters within file dialog for typical image files (.img, .bin, .sdcard)</p></li>
<li><p>it also <em>might</em> be slightly faster when dealing with uncompressed read/write</p></li>
<li><p>friendly User Inteface</p></li>
</ul>
<p>Utility was tested on Windows 7 and Windows 8/8.1/8.1 Pro.</p>
<p>Please feed back any platform testing you do, or any issues you encounter. Thanks.</p>
<p><em>NOTE: This application is under development and could possibly cause damage to your computer drive(s). We cannot take responsibility for any damage caused or losses incurred through use of this utility. Use at own risk!</em></p>
<h2>
<a id="changelog" class="anchor" href="#changelog" aria-hidden="true"><span class="octicon octicon-link"></span></a>ChangeLog</h2>
<p>1.4.0 08/04/2015 RB Simplified UI</p>
<p>1.3.2 25/03/2015 RB Added post-action notification &amp; resolved issue when MBR's with more than one partition were read incorrectly</p>
<p>1.3.1 16/03/2015 RB Added MultiThreaded XZ compression &amp; helping tooltips</p>
<p>1.3.0 19/02/2015 RB Added XZ support</p>
<p>1.2.2 21/01/2015 RB Added 'Remove drives after write' and drew new GUI</p>
<p>1.2.1 14/01/2015 RB Added Russian localization and tweaked GUI a bit.</p>
<p>1.2.0 06/01/2015 RB Added ability to write the same image to many SD simultaneously. Changed the look of GUI. </p>
<p>1.1.0 12/05/14 AJL Updated to use latest SharpZipLib as we were encountering (de-)compression errors with the previous version.
Added the option to truncate the read image based on the partition sizes found in the master boot record on the disk/stick.
Improved logging of sizes read and written.</p>
<p>1.0.3 30/04/14 AJL Added warning dialog box when there's a write error.</p>
<p>1.0.2 09/11/13 AJL Added support for reading and writing directly to compressed formats: .zip, .tgz, .gz</p>
<pre><code>Testing - Windows 8.1 Professional
</code></pre>
<p>1.0.1 08/11/13 AJL Refactoring for cleanup. Fixed issue with SEH exception due to SafeHandle disposal.</p>
<pre><code>Testing - Windows 8.1 Professional
</code></pre>
<p>1.0.0 08/11/13 AJL Initial Commit. Reads and Writes SD cards.</p>
<pre><code>Testing - Windows 8.1 Professional
</code></pre>
<h1>
<a id="contact" class="anchor" href="#contact" aria-hidden="true"><span class="octicon octicon-link"></span></a>Contact</h1>
<p>Roman Belkov - <a href="mailto:romanbelkov@gmail.com">romanbelkov@gmail.com</a></p>
<p>Alex J Lennon - <a href="mailto:ajlennon@dynamicdevices.co.uk">ajlennon@dynamicdevices.co.uk</a></p>
<footer class="site-footer">
<span class="site-footer-owner"><a href="https://github.com/RomanBelkov/DiskImager">Disk Imager</a> is maintained by <a href="https://github.com/RomanBelkov">RomanBelkov</a>.</span>
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a> by <a href="https://twitter.com/jasonlong">Jason Long</a>.</span>
</footer>
</section>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-61496403-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>