Version bumped to 3.4.99.0.

This commit is contained in:
2017-06-04 23:09:27 +01:00
parent 7105fbb333
commit ce3e941e1c
36 changed files with 85 additions and 49 deletions

View File

@@ -1,8 +1,11 @@
# [4.0.0.0-beta] - 2017-05-19
# [4.0.0.0-beta] - 2017-06-04
## Added
### - Create Sidecar command
- Use dump drive information from images that support it.
### - Decoders
- Xbox DMI
### - Devices
- MMC
- PCMCIA block devices
@@ -36,6 +39,10 @@
### - DiskCopy 4.2 disk image
- Use resource fork to get DiskCopy version used to create them.
### - Dumping
- Raw dump of DVD with Matshita recorders
- XGD with Kreon drives
### - Filesystems
- Apple DOS.
- CP/M.
@@ -81,6 +88,7 @@
- IOMEGA Clik! (aka PocketZip)
- NEC floppies.
- SHARP floppies.
- XGD3
### - Partitions
- Acorn FileCore.
@@ -93,6 +101,9 @@
- SGI Disk Volume Headers.
- UNIX disklabels.
### - Statistics
- Added version and operating system statistics.
## Fixes
### - AmigaDOS filesystem
- Detection on hard disks or with clusters bigger than 1 sector.
@@ -106,12 +117,21 @@
- CD+G data return.
- 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
- Track order for Lisa and Macintosh Twiggy
### - Dreamcast GDI images
- 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
- Behaviour with some non-compliant media descriptors.
@@ -124,6 +144,10 @@
### - ProDOS filesystem
- Volume size.
### - SCSI decoding
- Handling of modes 02h and 04h smaller than expected.
- Handling of EVPDs smaller than length field.
## Changes
- Added a public changelog.
- Added support for filters.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Checksums</RootNamespace>
<AssemblyName>DiscImageChef.Checksums</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
// 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,
// 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.CommonTypes</RootNamespace>
<AssemblyName>DiscImageChef.CommonTypes</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
// 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,
// 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Console</RootNamespace>
<AssemblyName>DiscImageChef.Console</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
// /***************************************************************************
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
@@ -54,7 +54,7 @@ using System.Runtime.CompilerServices;
// The form "{Major}.{Minor}.*" will automatically update the build and 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Core</RootNamespace>
<AssemblyName>DiscImageChef.Core</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -54,7 +54,7 @@ using System.Runtime.CompilerServices;
// The form "{Major}.{Minor}.*" will automatically update the build and 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Decoders</RootNamespace>
<AssemblyName>DiscImageChef.Decoders</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
// 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,
// 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Devices</RootNamespace>
<AssemblyName>DiscImageChef.Devices</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
// 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,
// 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.DiscImages</RootNamespace>
<AssemblyName>DiscImageChef.DiscImages</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
// 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,
// 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Filesystems</RootNamespace>
<AssemblyName>DiscImageChef.Filesystems</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
// 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,
// 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Filters</RootNamespace>
<AssemblyName>DiscImageChef.Filters</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Helpers</RootNamespace>
<AssemblyName>DiscImageChef.Helpers</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
// 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,
// 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Interop</RootNamespace>
<AssemblyName>DiscImageChef.Interop</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
// 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,
// 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Metadata</RootNamespace>
<AssemblyName>DiscImageChef.Metadata</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
// /***************************************************************************
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
@@ -54,7 +54,7 @@ using System.Runtime.CompilerServices;
// The form "{Major}.{Minor}.*" will automatically update the build and 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Partitions</RootNamespace>
<AssemblyName>DiscImageChef.Partitions</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
// 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,
// 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -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>
* Default.aspx:

View File

@@ -10,8 +10,9 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Server</RootNamespace>
<AssemblyName>DiscImageChef.Server</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>

View File

@@ -54,7 +54,7 @@ using System.Runtime.CompilerServices;
// The form "{Major}.{Minor}.*" will automatically update the build and 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -9,7 +9,7 @@
<OutputType>Library</OutputType>
<RootNamespace>DiscImageChef.Settings</RootNamespace>
<AssemblyName>DiscImageChef.Settings</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

View File

@@ -1,4 +1,4 @@
// /***************************************************************************
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
@@ -54,7 +54,7 @@ using System.Runtime.CompilerServices;
// The form "{Major}.{Minor}.*" will automatically update the build and 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -266,6 +266,6 @@ Global
$31.IncludeDirectoryPaths = True
$31.LineAlign = 0
description = The Disc Image Chef.
version = 3.3.99.0
version = 3.4.99.0
EndGlobalSection
EndGlobal

View File

@@ -1,4 +1,4 @@
// /***************************************************************************
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
@@ -48,7 +48,7 @@ using System.Reflection;
// The form "{Major}.{Minor}.*" will automatically update the build and 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,
// if desired. See the Mono documentation for more information about signing.

View File

@@ -1,3 +1,7 @@
* AssemblyInfo.cs:
* DiscImageChef.csproj:
Version bumped to 3.4.99.0.
* Commands/ExtractFiles.cs:
Store and show statistics for "ls" and "extract-files" commands.

View File

@@ -9,7 +9,7 @@
<OutputType>Exe</OutputType>
<RootNamespace>DiscImageChef</RootNamespace>
<AssemblyName>DiscImageChef</AssemblyName>
<ReleaseVersion>3.3.99.0</ReleaseVersion>
<ReleaseVersion>3.4.99.0</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>True</DebugSymbols>
@@ -83,7 +83,7 @@
<inheritsScope />
</VersionControlPolicy>
<ChangeLogPolicy UpdateMode="ProjectRoot" VcsIntegration="RequireEntry">
<MessageStyle LastFilePostfix=":&#xA; " LineAlign="2" IncludeDirectoryPaths="True" />
<MessageStyle Header="" Indent="" LastFilePostfix=":&#xA; " LineAlign="2" IncludeDirectoryPaths="True" />
<inheritsSet />
<inheritsScope />
</ChangeLogPolicy>

View File

@@ -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)
@@ -7,6 +7,8 @@ Copyright © 2011-2017 Natalia Portillo <claunia@claunia.com>
[![Build Status](https://travis-ci.org/claunia/DiscImageChef.svg?branch=master)](https://travis-ci.org/claunia/DiscImageChef)[![Build status](https://ci.appveyor.com/api/projects/status/vim4c8h028pn5oys?svg=true)](https://ci.appveyor.com/project/claunia/discimagechef)
You can see statistics and device reports at http://discimagechef.claunia.com
Usage
=====