mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Version bumped to 3.4.99.0.
This commit is contained in:
26
Changelog.md
26
Changelog.md
@@ -1,8 +1,11 @@
|
|||||||
# [4.0.0.0-beta] - 2017-05-19
|
# [4.0.0.0-beta] - 2017-06-04
|
||||||
## Added
|
## Added
|
||||||
### - Create Sidecar command
|
### - Create Sidecar command
|
||||||
- Use dump drive information from images that support it.
|
- Use dump drive information from images that support it.
|
||||||
|
|
||||||
|
### - Decoders
|
||||||
|
- Xbox DMI
|
||||||
|
|
||||||
### - Devices
|
### - Devices
|
||||||
- MMC
|
- MMC
|
||||||
- PCMCIA block devices
|
- PCMCIA block devices
|
||||||
@@ -36,6 +39,10 @@
|
|||||||
### - DiskCopy 4.2 disk image
|
### - DiskCopy 4.2 disk image
|
||||||
- Use resource fork to get DiskCopy version used to create them.
|
- Use resource fork to get DiskCopy version used to create them.
|
||||||
|
|
||||||
|
### - Dumping
|
||||||
|
- Raw dump of DVD with Matshita recorders
|
||||||
|
- XGD with Kreon drives
|
||||||
|
|
||||||
### - Filesystems
|
### - Filesystems
|
||||||
- Apple DOS.
|
- Apple DOS.
|
||||||
- CP/M.
|
- CP/M.
|
||||||
@@ -81,6 +88,7 @@
|
|||||||
- IOMEGA Clik! (aka PocketZip)
|
- IOMEGA Clik! (aka PocketZip)
|
||||||
- NEC floppies.
|
- NEC floppies.
|
||||||
- SHARP floppies.
|
- SHARP floppies.
|
||||||
|
- XGD3
|
||||||
|
|
||||||
### - Partitions
|
### - Partitions
|
||||||
- Acorn FileCore.
|
- Acorn FileCore.
|
||||||
@@ -93,6 +101,9 @@
|
|||||||
- SGI Disk Volume Headers.
|
- SGI Disk Volume Headers.
|
||||||
- UNIX disklabels.
|
- UNIX disklabels.
|
||||||
|
|
||||||
|
### - Statistics
|
||||||
|
- Added version and operating system statistics.
|
||||||
|
|
||||||
## Fixes
|
## Fixes
|
||||||
### - AmigaDOS filesystem
|
### - AmigaDOS filesystem
|
||||||
- Detection on hard disks or with clusters bigger than 1 sector.
|
- Detection on hard disks or with clusters bigger than 1 sector.
|
||||||
@@ -106,12 +117,21 @@
|
|||||||
- CD+G data return.
|
- CD+G data return.
|
||||||
- Prevent reading binary files.
|
- Prevent reading binary files.
|
||||||
|
|
||||||
|
### - Device reports
|
||||||
|
- Call ATA READ LONG last, as it confuses some drives
|
||||||
|
- Try SCSI READ LONG (10) until max block size (65535)
|
||||||
|
|
||||||
### - DiskCopy 4.2
|
### - DiskCopy 4.2
|
||||||
- Track order for Lisa and Macintosh Twiggy
|
- Track order for Lisa and Macintosh Twiggy
|
||||||
|
|
||||||
### - Dreamcast GDI images
|
### - Dreamcast GDI images
|
||||||
- Prevent reading binary files.
|
- Prevent reading binary files.
|
||||||
|
|
||||||
|
### - Dumping
|
||||||
|
- Streaming Devices now store block size changes in metadata sidecar.
|
||||||
|
- Calculation of streaming device dumping speed.
|
||||||
|
- Optical media with 2048 bytes/sector now get ".iso" file extension.
|
||||||
|
|
||||||
### - FAT filesystem
|
### - FAT filesystem
|
||||||
- Behaviour with some non-compliant media descriptors.
|
- Behaviour with some non-compliant media descriptors.
|
||||||
|
|
||||||
@@ -124,6 +144,10 @@
|
|||||||
### - ProDOS filesystem
|
### - ProDOS filesystem
|
||||||
- Volume size.
|
- Volume size.
|
||||||
|
|
||||||
|
### - SCSI decoding
|
||||||
|
- Handling of modes 02h and 04h smaller than expected.
|
||||||
|
- Handling of EVPDs smaller than length field.
|
||||||
|
|
||||||
## Changes
|
## Changes
|
||||||
- Added a public changelog.
|
- Added a public changelog.
|
||||||
- Added support for filters.
|
- Added support for filters.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Checksums</RootNamespace>
|
<RootNamespace>DiscImageChef.Checksums</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Checksums</AssemblyName>
|
<AssemblyName>DiscImageChef.Checksums</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
// Information about this assembly is defined by the following attributes.
|
// Information about this assembly is defined by the following attributes.
|
||||||
@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.CommonTypes</RootNamespace>
|
<RootNamespace>DiscImageChef.CommonTypes</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.CommonTypes</AssemblyName>
|
<AssemblyName>DiscImageChef.CommonTypes</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
// Information about this assembly is defined by the following attributes.
|
// Information about this assembly is defined by the following attributes.
|
||||||
@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Console</RootNamespace>
|
<RootNamespace>DiscImageChef.Console</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Console</AssemblyName>
|
<AssemblyName>DiscImageChef.Console</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /***************************************************************************
|
// /***************************************************************************
|
||||||
// The Disc Image Chef
|
// The Disc Image Chef
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
@@ -54,7 +54,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Core</RootNamespace>
|
<RootNamespace>DiscImageChef.Core</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Core</AssemblyName>
|
<AssemblyName>DiscImageChef.Core</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Decoders</RootNamespace>
|
<RootNamespace>DiscImageChef.Decoders</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Decoders</AssemblyName>
|
<AssemblyName>DiscImageChef.Decoders</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
// Information about this assembly is defined by the following attributes.
|
// Information about this assembly is defined by the following attributes.
|
||||||
@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Devices</RootNamespace>
|
<RootNamespace>DiscImageChef.Devices</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Devices</AssemblyName>
|
<AssemblyName>DiscImageChef.Devices</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
// Information about this assembly is defined by the following attributes.
|
// Information about this assembly is defined by the following attributes.
|
||||||
@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.DiscImages</RootNamespace>
|
<RootNamespace>DiscImageChef.DiscImages</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.DiscImages</AssemblyName>
|
<AssemblyName>DiscImageChef.DiscImages</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
// Information about this assembly is defined by the following attributes.
|
// Information about this assembly is defined by the following attributes.
|
||||||
@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Filesystems</RootNamespace>
|
<RootNamespace>DiscImageChef.Filesystems</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Filesystems</AssemblyName>
|
<AssemblyName>DiscImageChef.Filesystems</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
// Information about this assembly is defined by the following attributes.
|
// Information about this assembly is defined by the following attributes.
|
||||||
@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Filters</RootNamespace>
|
<RootNamespace>DiscImageChef.Filters</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Filters</AssemblyName>
|
<AssemblyName>DiscImageChef.Filters</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Helpers</RootNamespace>
|
<RootNamespace>DiscImageChef.Helpers</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Helpers</AssemblyName>
|
<AssemblyName>DiscImageChef.Helpers</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
// Information about this assembly is defined by the following attributes.
|
// Information about this assembly is defined by the following attributes.
|
||||||
@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Interop</RootNamespace>
|
<RootNamespace>DiscImageChef.Interop</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Interop</AssemblyName>
|
<AssemblyName>DiscImageChef.Interop</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
// Information about this assembly is defined by the following attributes.
|
// Information about this assembly is defined by the following attributes.
|
||||||
@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Metadata</RootNamespace>
|
<RootNamespace>DiscImageChef.Metadata</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Metadata</AssemblyName>
|
<AssemblyName>DiscImageChef.Metadata</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /***************************************************************************
|
// /***************************************************************************
|
||||||
// The Disc Image Chef
|
// The Disc Image Chef
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
@@ -54,7 +54,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Partitions</RootNamespace>
|
<RootNamespace>DiscImageChef.Partitions</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Partitions</AssemblyName>
|
<AssemblyName>DiscImageChef.Partitions</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
// Information about this assembly is defined by the following attributes.
|
// Information about this assembly is defined by the following attributes.
|
||||||
@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2017-06-04 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
|
* AssemblyInfo.cs:
|
||||||
|
* DiscImageChef.Server.csproj: Version bumped to 3.4.99.0.
|
||||||
|
|
||||||
2017-06-04 Natalia Portillo <claunia@claunia.com>
|
2017-06-04 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* Default.aspx:
|
* Default.aspx:
|
||||||
|
|||||||
@@ -10,8 +10,9 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Server</RootNamespace>
|
<RootNamespace>DiscImageChef.Server</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Server</AssemblyName>
|
<AssemblyName>DiscImageChef.Server</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||||
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>DiscImageChef.Settings</RootNamespace>
|
<RootNamespace>DiscImageChef.Settings</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef.Settings</AssemblyName>
|
<AssemblyName>DiscImageChef.Settings</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /***************************************************************************
|
// /***************************************************************************
|
||||||
// The Disc Image Chef
|
// The Disc Image Chef
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
@@ -54,7 +54,7 @@ using System.Runtime.CompilerServices;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -266,6 +266,6 @@ Global
|
|||||||
$31.IncludeDirectoryPaths = True
|
$31.IncludeDirectoryPaths = True
|
||||||
$31.LineAlign = 0
|
$31.LineAlign = 0
|
||||||
description = The Disc Image Chef.
|
description = The Disc Image Chef.
|
||||||
version = 3.3.99.0
|
version = 3.4.99.0
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /***************************************************************************
|
// /***************************************************************************
|
||||||
// The Disc Image Chef
|
// The Disc Image Chef
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
@@ -48,7 +48,7 @@ using System.Reflection;
|
|||||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.3.99.0")]
|
[assembly: AssemblyVersion("3.4.99.0")]
|
||||||
|
|
||||||
// The following attributes are used to specify the signing key for the assembly,
|
// The following attributes are used to specify the signing key for the assembly,
|
||||||
// if desired. See the Mono documentation for more information about signing.
|
// if desired. See the Mono documentation for more information about signing.
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
* AssemblyInfo.cs:
|
||||||
|
* DiscImageChef.csproj:
|
||||||
|
Version bumped to 3.4.99.0.
|
||||||
|
|
||||||
* Commands/ExtractFiles.cs:
|
* Commands/ExtractFiles.cs:
|
||||||
Store and show statistics for "ls" and "extract-files" commands.
|
Store and show statistics for "ls" and "extract-files" commands.
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RootNamespace>DiscImageChef</RootNamespace>
|
<RootNamespace>DiscImageChef</RootNamespace>
|
||||||
<AssemblyName>DiscImageChef</AssemblyName>
|
<AssemblyName>DiscImageChef</AssemblyName>
|
||||||
<ReleaseVersion>3.3.99.0</ReleaseVersion>
|
<ReleaseVersion>3.4.99.0</ReleaseVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||||
<DebugSymbols>True</DebugSymbols>
|
<DebugSymbols>True</DebugSymbols>
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
<inheritsScope />
|
<inheritsScope />
|
||||||
</VersionControlPolicy>
|
</VersionControlPolicy>
|
||||||
<ChangeLogPolicy UpdateMode="ProjectRoot" VcsIntegration="RequireEntry">
|
<ChangeLogPolicy UpdateMode="ProjectRoot" VcsIntegration="RequireEntry">
|
||||||
<MessageStyle LastFilePostfix=":
 " LineAlign="2" IncludeDirectoryPaths="True" />
|
<MessageStyle Header="" Indent="" LastFilePostfix=":
 " LineAlign="2" IncludeDirectoryPaths="True" />
|
||||||
<inheritsSet />
|
<inheritsSet />
|
||||||
<inheritsScope />
|
<inheritsScope />
|
||||||
</ChangeLogPolicy>
|
</ChangeLogPolicy>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
DiscImageChef v3.1.0.0
|
DiscImageChef v3.4.99.0
|
||||||
======================
|
=======================
|
||||||
|
|
||||||
Disc Image Chef (because "swiss-army-knife" is used too much)
|
Disc Image Chef (because "swiss-army-knife" is used too much)
|
||||||
|
|
||||||
@@ -7,6 +7,8 @@ Copyright © 2011-2017 Natalia Portillo <claunia@claunia.com>
|
|||||||
|
|
||||||
[](https://travis-ci.org/claunia/DiscImageChef)[](https://ci.appveyor.com/project/claunia/discimagechef)
|
[](https://travis-ci.org/claunia/DiscImageChef)[](https://ci.appveyor.com/project/claunia/discimagechef)
|
||||||
|
|
||||||
|
You can see statistics and device reports at http://discimagechef.claunia.com
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
=====
|
=====
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user