From 79136db1621a9947e2cfbce806565f0a6fedf7fd Mon Sep 17 00:00:00 2001 From: huanghongxun Date: Tue, 19 Mar 2019 11:11:59 +0800 Subject: [PATCH] Lower XZ preset --- HMCL/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HMCL/build.gradle b/HMCL/build.gradle index afa896d7c..16d1bdb20 100644 --- a/HMCL/build.gradle +++ b/HMCL/build.gradle @@ -140,7 +140,7 @@ task makePack(dependsOn: jar) { task makePackXz(dependsOn: makePack) doLast { def packXz = new File(makePack.outputPath.parentFile, makePack.outputPath.name + ".xz") - new XZOutputStream(packXz.newOutputStream(), new LZMA2Options(6)).withCloseable { it << makePack.outputPath.bytes } + new XZOutputStream(packXz.newOutputStream(), new LZMA2Options(5)).withCloseable { it << makePack.outputPath.bytes } createChecksum(packXz) }