DiscUtilsGD 2.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package DiscUtilsGD --version 2.1.0                
NuGet\Install-Package DiscUtilsGD -Version 2.1.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DiscUtilsGD" Version="2.1.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DiscUtilsGD --version 2.1.0                
#r "nuget: DiscUtilsGD, 2.1.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DiscUtilsGD as a Cake Addin
#addin nuget:?package=DiscUtilsGD&version=2.1.0

// Install DiscUtilsGD as a Cake Tool
#tool nuget:?package=DiscUtilsGD&version=2.1.0                

GDIbuilder

A utility to assist with building, modifying or extracting Dreamcast .gdi images.

In build mode, when provided with a folder of data files, the IP.BIN bootsector, and optional raw CDDA tracks, this tool will automatically generate the data track(s) for the high density area of a GD-ROM image. It also generates the track TOC which is written into the bootsector.

In patch mode, when provided with an existing .gdi and a folder containing data files, this tool can create a modified copy of an existing disc. Files in the data folder in the same location as the original disc will be replaced in the copy, and files that don't exist in the original will be added.

In navigate or extract mode, the contents of the high density area of a disc image can be viewed. These files along with IP.BIN can also be extracted.

A bootable GD-ROM requires the primary executable (usually called 1ST_READ.BIN) to be placed at the end of the final data track or it will not be loaded by the console. This requirement does not exist for MIL-CD's.

In addition to graphical UI's for Windows, macOS and Linux, a command line verison of the tool called buildgdi is also available and capapble of building, patching or extracting.

ISO9660 code was forked from .NET DiscUtils, with a number of modifications made:

  • When Joilet is disabled (which it is for this tool), don't output supplementary file tables
  • Reversed the order that DiscUtils outputs the ISO sections. (Directory Tables come before files now)
  • Fixed bug in non-joilet filename output. Filenames were not being appended with ;1 like they should be.
  • Added Start LBA offset for entire image
  • Added End LBA offset for entire image. Image will be padded to desired size.
  • Added End of last file LBA, if set all files will be pushed back in the image to this location.
  • Added properties to set most of the text identifiers (Application, Volume Set, Preparer, etc.)
  • Omitted some stuff not being used by this application, such as other image formats and filesystems.
  • Added cancellation token support for disc building, allowing the build process to be terminated early.
  • Added a GDReader class which extends CDReader and allows the high density area of GDI's to be read.

The fork of .NET DiscUtils is available as a Nuget package for other developers to read and write .gdi from other applications without needing to use the buildgdi command line tool. For example usage of the library via the Nuget package, see the Program.cs in the buildgdi folder. This command line tool performs all of the basic operations of the library.

Acknowledgements

Thanks to the following people for providing feedback:

  • PkR
  • derek
  • MetalliC
  • VincentNL
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.1 64 1/18/2025
2.1.0 103 12/31/2024
2.0.0 109 12/4/2024

Version 2.1 fixes a critical bug that caused discs with more than 492MB of data in the high density area to be unbootable.