You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***`--lz4`** : Use lz4 instead of gzip for better compression. The lz4 command must be available in the command path. It is recommended that the archive extension be set to something like '.lz4.run' for the archive, so that potential users know that they'll need lz4 to extract it.
87
87
***`--zstd`** : Use zstd instead of gzip for better compression. The zstd command must be available in the command path. It is recommended that the archive extension be set to something like '.zstd.run' for the archive, so that potential users know that they'll need zstd to extract it.
88
88
***`--pigz`** : Use pigz for compression.
89
-
***`--base64`** : Encode the archive to ASCII in Base64 format instead of compressing (base64 command required).
90
-
***`--gpg-encrypt`** : Encrypt the archive using `gpg -ac -z $COMPRESS_LEVEL`. This will prompt for a password to encrypt with. Assumes that potential users have `gpg` installed.
91
-
***`--ssl-encrypt`** : Encrypt the archive using `openssl aes-256-cbc -a -salt`. This will prompt for a password to encrypt with. Assumes that the potential users have the OpenSSL tools installed.
89
+
***`--base64`** : Base64-encode the final compressed archive (base64 command required). This is applied after compression and can be combined with any compressor.
90
+
***`--gpg-encrypt`** : Encrypt the archive using `gpg -ac -z $COMPRESS_LEVEL`. This is applied after compression. Assumes that potential users have `gpg` installed.
91
+
***`--ssl-encrypt`** : Encrypt the archive using `openssl aes-256-cbc -a -salt`. This is applied after compression. Assumes that the potential users have the OpenSSL tools installed.
92
92
***`--compress`** : Use the UNIX `compress` command to compress the data. This should be the default on all platforms that don't have gzip available.
93
93
***`--nocomp`** : Do not use any compression for the archive, which will then be an uncompressed TAR.
94
94
***`--complevel`** : Specify the compression level for gzip, bzip2, pbzip2, zstd, xz, lzo or lz4. (defaults to 9)
@@ -189,13 +189,13 @@ I will gladly consider merging your pull requests on the [GitHub][10] repository
189
189
190
190
## Download
191
191
192
-
Get the latest official distribution [on Github here][9] (version 2.7.0).
192
+
Get the latest official distribution [on Github here][9] (version 2.7.1).
193
193
194
194
The latest development version can be grabbed from [GitHub][10]. Feel free to submit any patches there through the fork and pull request process.
195
195
196
196
## Changelog
197
197
198
-
The full release history has moved to `CHANGELOG.md`.
198
+
The full release history has moved to [`CHANGELOG.md`](https://makeself.io/changes).
199
199
200
200
## Links
201
201
@@ -224,7 +224,7 @@ This project is now hosted on GitHub. Feel free to submit patches and bug report
0 commit comments