diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 5dd832f..a8d0166 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -3,7 +3,7 @@ on:
branches: [ "master" ]
env:
- VERSION: '1.6.1.${{ github.run_number }}'
+ VERSION: '1.6.2.${{ github.run_number }}'
jobs:
build:
diff --git a/SevenZip/SevenZipBase.cs b/SevenZip/SevenZipBase.cs
index d47b73e..44350bd 100644
--- a/SevenZip/SevenZipBase.cs
+++ b/SevenZip/SevenZipBase.cs
@@ -216,7 +216,7 @@ internal void CheckedExecute(int hresult, string message, CallbackBase handler)
default:
exception = new SevenZipException(
$"Execution has failed due to an internal SevenZipSharp issue (0x{hresult:x} / {hresult}).\n" +
- "Please report it to https://github.com/squid-box/SevenZipSharp/issues/, include the release number, 7z version used, and attach the archive.");
+ "You might find more info at https://github.com/squid-box/SevenZipSharp/issues/, but this library is no longer actively supported.");
break;
}
@@ -224,9 +224,7 @@ internal void CheckedExecute(int hresult, string message, CallbackBase handler)
}
else
{
- ThrowException(handler,
- new SevenZipException(message + hresult.ToString(CultureInfo.InvariantCulture) +
- '.'));
+ ThrowException(handler, new SevenZipException(message + hresult.ToString(CultureInfo.InvariantCulture) + '.'));
}
}
else
diff --git a/changelog.md b/changelog.md
index 6e1c10e..a7f7cd0 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,24 @@
# Changelog
+## 1.6.2 (2024-04-10)
+- Ensuring streams provided are at the beginning of the file, thanks to GitHub user fgimian.
+- Fixed an issues where SFX archives would not be correctly detected, thanks to GitHub user fgimian.
+- Added support for APFS format, thanks to GitHub user elihwyma.
+- Added support for Wim format, thanks to GitHub user pysj.
+
+## 1.6.1 (2023-04-04)
+- Fixed broken asynchronous extraction.
+
+## 1.6.0 (2023-03-31)
+- Added option to leave streams open after extraction, thanks to GitHub user acrilly-msft.
+- Added support for GPT and NTFS formats, thanks to GitHub user acrilly-msft.
+- Added support for the CPIO format, thanks to GitHub user doug24.
+- Changed how the Unique ID's are generated, thanks to GitHub user RoadTrain.
+- Fixed an issue with multi-volume archives of more than 1000 parts, thanks to GitHub user in1gma.
+- Fixed an issue when extracting from a read-only file, thanks to GitHub user benjicoh.
+- Fixed an issue with appending to archives with encrypted headers, thanks to GitHub user amarendrabiorad.
+- Fixed an issue when appending to encrypted archives, using streams.
+
## 1.5.2 (2023-03-22)
- Fixed an issue when seeking in streams with SeekOrigin.End, thanks to GitHub user bneidhold.
- Fixed an issue when checking multi-volume 7z archives, thanks to GitHub user panda73111.
diff --git a/package.lite.nuspec b/package.lite.nuspec
index 0098baa..342ebdd 100644
--- a/package.lite.nuspec
+++ b/package.lite.nuspec
@@ -11,7 +11,12 @@
LGPL-3.0-only
https://github.com/squid-box/SevenZipSharp
7z sevenzip sevenzipsharp 7-zip
- Fixed broken asynchronous extraction.
+
+ Ensuring streams provided are at the beginning of the file, thanks to GitHub user fgimian.
+ Fixed an issues where SFX archives would not be correctly detected, thanks to GitHub user fgimian.
+ Added support for APFS format, thanks to GitHub user elihwyma.
+ Added support for Wim format, thanks to GitHub user pysj.
+
diff --git a/package.regular.nuspec b/package.regular.nuspec
index 469dfec..0438aa6 100644
--- a/package.regular.nuspec
+++ b/package.regular.nuspec
@@ -11,7 +11,12 @@
LGPL-3.0-only
https://github.com/squid-box/SevenZipSharp
7z sevenzip sevenzipsharp 7-zip
- Fixed broken asynchronous extraction.
+
+ Ensuring streams provided are at the beginning of the file, thanks to GitHub user fgimian.
+ Fixed an issues where SFX archives would not be correctly detected, thanks to GitHub user fgimian.
+ Added support for APFS format, thanks to GitHub user elihwyma.
+ Added support for Wim format, thanks to GitHub user pysj.
+
diff --git a/readme.md b/readme.md
index 9a5f898..f47a7a8 100644
--- a/readme.md
+++ b/readme.md
@@ -1,5 +1,22 @@
This is a fork from [tomap's fork](https://github.com/tomap/SevenZipSharp) of the [original CodePlex project](https://archive.codeplex.com/?p=sevenzipsharp).
+-------------------------------------------------------------
+
+-------------------------------------------------------------
+
+-------------------------------------------------------------
+
+# Project Archived
+As of 2024-04-10, I've decided to officially release the final version of this fork - 1.6.2 - and archive the project. I myself don't use it anymore, and the sporadic bursts of activity from me aren't useful and I have a hard time even doing good code reviews on submitted code as I'm not actively working on this anymore.
+
+The bugs that exist will remain, feel free to fork this repository (as I once did from tomap) if you want to fix something.
+
+-------------------------------------------------------------
+
+-------------------------------------------------------------
+
+-------------------------------------------------------------
+
## Continuous Integration
| Squid-Box.SevenZipSharp | Squid-Box.SevenZipSharp.Lite |