Skip to content

Commit 483aaa1

Browse files
committed
Restructure Image now supports 1.44M disks formatted as 720K disks
Database updates
1 parent 9373d96 commit 483aaa1

File tree

6 files changed

+781
-65
lines changed

6 files changed

+781
-65
lines changed

DiskImageTool/DiskImageTool.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<ProductName>DiskImageTool</ProductName>
3232
<PublisherName>Digitoxin</PublisherName>
3333
<ApplicationRevision>0</ApplicationRevision>
34-
<ApplicationVersion>2.10.0.%2a</ApplicationVersion>
34+
<ApplicationVersion>2.11.0.%2a</ApplicationVersion>
3535
<UseApplicationTrust>false</UseApplicationTrust>
3636
<PublishWizardCompleted>true</PublishWizardCompleted>
3737
<BootstrapperEnabled>true</BootstrapperEnabled>

DiskImageTool/FloppyDB.vb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,12 @@ Public Class FloppyDB
317317
_TitleDictionary.Add(md5, FloppyData)
318318
End If
319319
End If
320+
If DirectCast(Node, Xml.XmlElement).HasAttribute("md5_alt") Then
321+
Dim md5 As String = Node.Attributes("md5_alt").Value
322+
If Not _TitleDictionary.ContainsKey(md5) Then
323+
_TitleDictionary.Add(md5, FloppyData)
324+
End If
325+
End If
320326
If Node.HasChildNodes Then
321327
For Each ChildNode As Xml.XmlNode In Node.ChildNodes
322328
ParseNode(ChildNode, FloppyData)

0 commit comments

Comments
 (0)