|
"portable": { |
|
"artifactName": "${productName}.${version}.${ext}" |
|
}, |
|
"win": { |
|
"target": [ |
|
{ |
|
"target": "nsis", |
|
"arch": [ |
|
"x64", |
|
"ia32" |
|
] |
|
}, |
|
{ |
|
"target": "portable" |
|
} |
|
], |
|
"extraResources": [ |
|
{ |
|
"from": ".resources/win/bin", |
|
"to": "win/bin", |
|
"filter": [ |
|
"**/*" |
|
] |
|
} |
|
] |
|
}, |
I was wondering if you would be able to add releases for ExifCleaner for x64, ia32 and arm64 with target: 7z?
I was adding support for ExifCleaner 4.2.1 in Scoop (PR 18619) and the problem is that the NSIS installer ships with x64 and ia32 versions but compressed separately. So the installer is very large. It'd be better to have separate portable, uncompressed/dir releases for the different architectures. This way, the installation with scoop is fast, and ExifCleaner does not start with a large delay. (The portable release currently extracts the entire 500MB of executables and DLLs into a temporary directory, which is a pain.)
Many thanks!
exifcleaner/package.json
Lines 149 to 174 in 8d47a1c
I was wondering if you would be able to add releases for ExifCleaner for
x64,ia32andarm64withtarget: 7z?I was adding support for ExifCleaner 4.2.1 in Scoop (PR 18619) and the problem is that the NSIS installer ships with
x64andia32versions but compressed separately. So the installer is very large. It'd be better to have separate portable, uncompressed/dir releases for the different architectures. This way, the installation with scoop is fast, and ExifCleaner does not start with a large delay. (The portable release currently extracts the entire 500MB of executables and DLLs into a temporary directory, which is a pain.)Many thanks!