From ce3e941e1cfc8a0beed28bd9e35725a02fcbed7b Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 4 Jun 2017 23:09:27 +0100 Subject: [PATCH] Version bumped to 3.4.99.0. --- Changelog.md | 26 ++++++++++++++++++- .../DiscImageChef.Checksums.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- .../DiscImageChef.CommonTypes.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- .../DiscImageChef.Console.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- DiscImageChef.Core/DiscImageChef.Core.csproj | 2 +- DiscImageChef.Core/Properties/AssemblyInfo.cs | 2 +- .../DiscImageChef.Decoders.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- .../DiscImageChef.Devices.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- .../DiscImageChef.DiscImages.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- .../DiscImageChef.Filesystems.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- .../DiscImageChef.Filters.csproj | 2 +- .../DiscImageChef.Helpers.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- .../DiscImageChef.Interop.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- .../DiscImageChef.Metadata.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- .../DiscImageChef.Partitions.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- DiscImageChef.Server/ChangeLog | 5 ++++ .../DiscImageChef.Server.csproj | 3 ++- .../Properties/AssemblyInfo.cs | 2 +- .../DiscImageChef.Settings.csproj | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- DiscImageChef.sln | 2 +- DiscImageChef/AssemblyInfo.cs | 4 +-- DiscImageChef/ChangeLog | 4 +++ DiscImageChef/DiscImageChef.csproj | 4 +-- README.md | 6 +++-- 36 files changed, 85 insertions(+), 49 deletions(-) diff --git a/Changelog.md b/Changelog.md index 08aa86ce..5d981ffd 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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. diff --git a/DiscImageChef.Checksums/DiscImageChef.Checksums.csproj b/DiscImageChef.Checksums/DiscImageChef.Checksums.csproj index fade8bb7..cc6d2ad1 100644 --- a/DiscImageChef.Checksums/DiscImageChef.Checksums.csproj +++ b/DiscImageChef.Checksums/DiscImageChef.Checksums.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Checksums DiscImageChef.Checksums - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Checksums/Properties/AssemblyInfo.cs b/DiscImageChef.Checksums/Properties/AssemblyInfo.cs index b5ffac7a..ad62a07d 100644 --- a/DiscImageChef.Checksums/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Checksums/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.CommonTypes/DiscImageChef.CommonTypes.csproj b/DiscImageChef.CommonTypes/DiscImageChef.CommonTypes.csproj index 7922af39..db670a16 100644 --- a/DiscImageChef.CommonTypes/DiscImageChef.CommonTypes.csproj +++ b/DiscImageChef.CommonTypes/DiscImageChef.CommonTypes.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.CommonTypes DiscImageChef.CommonTypes - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.CommonTypes/Properties/AssemblyInfo.cs b/DiscImageChef.CommonTypes/Properties/AssemblyInfo.cs index 39a27c45..dc28f81b 100644 --- a/DiscImageChef.CommonTypes/Properties/AssemblyInfo.cs +++ b/DiscImageChef.CommonTypes/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Console/DiscImageChef.Console.csproj b/DiscImageChef.Console/DiscImageChef.Console.csproj index daf744b1..7de9abf5 100644 --- a/DiscImageChef.Console/DiscImageChef.Console.csproj +++ b/DiscImageChef.Console/DiscImageChef.Console.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Console DiscImageChef.Console - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Console/Properties/AssemblyInfo.cs b/DiscImageChef.Console/Properties/AssemblyInfo.cs index dc45616e..53cbdd09 100644 --- a/DiscImageChef.Console/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Console/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Core/DiscImageChef.Core.csproj b/DiscImageChef.Core/DiscImageChef.Core.csproj index 3911a003..5894337d 100644 --- a/DiscImageChef.Core/DiscImageChef.Core.csproj +++ b/DiscImageChef.Core/DiscImageChef.Core.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Core DiscImageChef.Core - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Core/Properties/AssemblyInfo.cs b/DiscImageChef.Core/Properties/AssemblyInfo.cs index b731161a..b8306a33 100644 --- a/DiscImageChef.Core/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Core/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Decoders/DiscImageChef.Decoders.csproj b/DiscImageChef.Decoders/DiscImageChef.Decoders.csproj index 04bc04be..30900c80 100644 --- a/DiscImageChef.Decoders/DiscImageChef.Decoders.csproj +++ b/DiscImageChef.Decoders/DiscImageChef.Decoders.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Decoders DiscImageChef.Decoders - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Decoders/Properties/AssemblyInfo.cs b/DiscImageChef.Decoders/Properties/AssemblyInfo.cs index a7ce8432..9eb68665 100644 --- a/DiscImageChef.Decoders/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Decoders/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Devices/DiscImageChef.Devices.csproj b/DiscImageChef.Devices/DiscImageChef.Devices.csproj index 681e2651..c976872a 100644 --- a/DiscImageChef.Devices/DiscImageChef.Devices.csproj +++ b/DiscImageChef.Devices/DiscImageChef.Devices.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Devices DiscImageChef.Devices - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Devices/Properties/AssemblyInfo.cs b/DiscImageChef.Devices/Properties/AssemblyInfo.cs index 6db2e5df..5ff7441b 100644 --- a/DiscImageChef.Devices/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Devices/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.DiscImages/DiscImageChef.DiscImages.csproj b/DiscImageChef.DiscImages/DiscImageChef.DiscImages.csproj index 4311124d..91970d75 100644 --- a/DiscImageChef.DiscImages/DiscImageChef.DiscImages.csproj +++ b/DiscImageChef.DiscImages/DiscImageChef.DiscImages.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.DiscImages DiscImageChef.DiscImages - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.DiscImages/Properties/AssemblyInfo.cs b/DiscImageChef.DiscImages/Properties/AssemblyInfo.cs index eb5c9726..700e67a4 100644 --- a/DiscImageChef.DiscImages/Properties/AssemblyInfo.cs +++ b/DiscImageChef.DiscImages/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Filesystems/DiscImageChef.Filesystems.csproj b/DiscImageChef.Filesystems/DiscImageChef.Filesystems.csproj index cff43d7c..cac9b6b2 100644 --- a/DiscImageChef.Filesystems/DiscImageChef.Filesystems.csproj +++ b/DiscImageChef.Filesystems/DiscImageChef.Filesystems.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Filesystems DiscImageChef.Filesystems - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Filesystems/Properties/AssemblyInfo.cs b/DiscImageChef.Filesystems/Properties/AssemblyInfo.cs index ba8b14b0..9bf99d92 100644 --- a/DiscImageChef.Filesystems/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Filesystems/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Filters/DiscImageChef.Filters.csproj b/DiscImageChef.Filters/DiscImageChef.Filters.csproj index fcd346fd..02c4c08f 100644 --- a/DiscImageChef.Filters/DiscImageChef.Filters.csproj +++ b/DiscImageChef.Filters/DiscImageChef.Filters.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Filters DiscImageChef.Filters - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Helpers/DiscImageChef.Helpers.csproj b/DiscImageChef.Helpers/DiscImageChef.Helpers.csproj index 038f95d8..b20970cb 100644 --- a/DiscImageChef.Helpers/DiscImageChef.Helpers.csproj +++ b/DiscImageChef.Helpers/DiscImageChef.Helpers.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Helpers DiscImageChef.Helpers - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Helpers/Properties/AssemblyInfo.cs b/DiscImageChef.Helpers/Properties/AssemblyInfo.cs index 07739d45..a10709ab 100644 --- a/DiscImageChef.Helpers/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Helpers/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Interop/DiscImageChef.Interop.csproj b/DiscImageChef.Interop/DiscImageChef.Interop.csproj index 806fee41..12aa4eee 100644 --- a/DiscImageChef.Interop/DiscImageChef.Interop.csproj +++ b/DiscImageChef.Interop/DiscImageChef.Interop.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Interop DiscImageChef.Interop - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Interop/Properties/AssemblyInfo.cs b/DiscImageChef.Interop/Properties/AssemblyInfo.cs index 306841c9..a72944c3 100644 --- a/DiscImageChef.Interop/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Interop/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Metadata/DiscImageChef.Metadata.csproj b/DiscImageChef.Metadata/DiscImageChef.Metadata.csproj index af3d6fbb..273d61ae 100644 --- a/DiscImageChef.Metadata/DiscImageChef.Metadata.csproj +++ b/DiscImageChef.Metadata/DiscImageChef.Metadata.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Metadata DiscImageChef.Metadata - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Metadata/Properties/AssemblyInfo.cs b/DiscImageChef.Metadata/Properties/AssemblyInfo.cs index 8b6ff7e7..a7e93565 100644 --- a/DiscImageChef.Metadata/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Metadata/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Partitions/DiscImageChef.Partitions.csproj b/DiscImageChef.Partitions/DiscImageChef.Partitions.csproj index 29b8376e..5ca74f5e 100644 --- a/DiscImageChef.Partitions/DiscImageChef.Partitions.csproj +++ b/DiscImageChef.Partitions/DiscImageChef.Partitions.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Partitions DiscImageChef.Partitions - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Partitions/Properties/AssemblyInfo.cs b/DiscImageChef.Partitions/Properties/AssemblyInfo.cs index 9a60e874..220f2baf 100644 --- a/DiscImageChef.Partitions/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Partitions/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Server/ChangeLog b/DiscImageChef.Server/ChangeLog index f03d841a..dc6dfabe 100644 --- a/DiscImageChef.Server/ChangeLog +++ b/DiscImageChef.Server/ChangeLog @@ -1,3 +1,8 @@ +2017-06-04 Natalia Portillo + + * AssemblyInfo.cs: + * DiscImageChef.Server.csproj: Version bumped to 3.4.99.0. + 2017-06-04 Natalia Portillo * Default.aspx: diff --git a/DiscImageChef.Server/DiscImageChef.Server.csproj b/DiscImageChef.Server/DiscImageChef.Server.csproj index 41dcb499..f8319323 100644 --- a/DiscImageChef.Server/DiscImageChef.Server.csproj +++ b/DiscImageChef.Server/DiscImageChef.Server.csproj @@ -10,8 +10,9 @@ Library DiscImageChef.Server DiscImageChef.Server - 3.3.99.0 + 3.4.99.0 v4.6.1 + false true diff --git a/DiscImageChef.Server/Properties/AssemblyInfo.cs b/DiscImageChef.Server/Properties/AssemblyInfo.cs index f4ee4caa..1f7ebc5a 100644 --- a/DiscImageChef.Server/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Server/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.Settings/DiscImageChef.Settings.csproj b/DiscImageChef.Settings/DiscImageChef.Settings.csproj index b0dc310d..d47e3de4 100644 --- a/DiscImageChef.Settings/DiscImageChef.Settings.csproj +++ b/DiscImageChef.Settings/DiscImageChef.Settings.csproj @@ -9,7 +9,7 @@ Library DiscImageChef.Settings DiscImageChef.Settings - 3.3.99.0 + 3.4.99.0 false diff --git a/DiscImageChef.Settings/Properties/AssemblyInfo.cs b/DiscImageChef.Settings/Properties/AssemblyInfo.cs index 8c12196c..963cf57a 100644 --- a/DiscImageChef.Settings/Properties/AssemblyInfo.cs +++ b/DiscImageChef.Settings/Properties/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef.sln b/DiscImageChef.sln index 4904702d..d9cdcea9 100644 --- a/DiscImageChef.sln +++ b/DiscImageChef.sln @@ -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 diff --git a/DiscImageChef/AssemblyInfo.cs b/DiscImageChef/AssemblyInfo.cs index c45e674b..d2594e4f 100644 --- a/DiscImageChef/AssemblyInfo.cs +++ b/DiscImageChef/AssemblyInfo.cs @@ -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. diff --git a/DiscImageChef/ChangeLog b/DiscImageChef/ChangeLog index 16cd6c9b..59a105ac 100644 --- a/DiscImageChef/ChangeLog +++ b/DiscImageChef/ChangeLog @@ -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. diff --git a/DiscImageChef/DiscImageChef.csproj b/DiscImageChef/DiscImageChef.csproj index bd9c122d..56ed8908 100644 --- a/DiscImageChef/DiscImageChef.csproj +++ b/DiscImageChef/DiscImageChef.csproj @@ -9,7 +9,7 @@ Exe DiscImageChef DiscImageChef - 3.3.99.0 + 3.4.99.0 True @@ -83,7 +83,7 @@ - + diff --git a/README.md b/README.md index 68ff8acb..dfa4caa3 100644 --- a/README.md +++ b/README.md @@ -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 [![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 =====