-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support installing other archive formats #2899
Comments
I support this. |
The lack of |
Will winget be able to use this functionality when it releases? |
@denelon I know this is really early but would winget be able to use the new archive support in windows 11 when it releases? I'm not sure how it will be implemented but I'd like to think it will be added to the existing APIs. |
@superusercode yes, we want to see if it's possible to take advantage of the new features in libarchive to support more formats. As soon as we have time to dig into the new Insider version of Windows and figure out the right way to handle this in earlier versions of Windows (back compatibility is tricky) we want this capability. |
+1 for adding |
@denelon Now that this has been released to stable, any chance that you will start looking at this? |
Adding e.g. |
I've been talking with several folks about support for some of the newer formats Windows 11 natively understands. The challenge here is that unless we pull libraries into WinGet or have WinGet install some other dependencies, users on earlier versions of the OS will not be able to install packages depending on the newly supported compression formats. |
what about printing a message that their version of windows doesn't support e.g. tar.gz natively? this wouldn't make the experience of those users worse but it would improve the experience of users that use newer versions of windows |
I understand that locking out a substantial portion of the userbase who are using older versions of Windows is a very suboptimal solution. However, over time, the number of users who are locked out of installing these packages will decrease, as users upgrade to newer versions of Windows. Furthermore, it's not exactly unheard of for Windows to gate new features behind system updates. I feel like most users would understand this limitation as just another consequence of deferring timely updates. |
this also allows interractive only installers to be installed if they are just a wrapper exe with the program files / msi underneath |
A lot of archive types work with Tested
|
I've implemented AMSI to replace pure in #4910, would love some feedback. The default |
Description of the new feature / enhancement
Continuation of #140. See #140 (comment):
Other than
.zip
, most other software binaries are only available by either.7z
and.rar
. Examples:Hopefully
.7z
and.rar
gets added first, they're quite common. Other archive formats such as.tar
,.gz
,.zstd
etc. can be added soon.Proposed technical implementation details
No response
The text was updated successfully, but these errors were encountered: