From 300a783036e6c8c9b90386182efe13c1370743d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Hrivn=C3=A1k?= Date: Mon, 22 Jul 2024 22:04:01 +0200 Subject: [PATCH] Bump version & update CHANGELOG.md --- CHANGELOG.md | 13 +++++++++++++ build.gradle.kts | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40121626..b58e56ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ ## Unreleased +## v0.13.0 + +- Implemented the CLI Config (`cli-config.json`), an optional file +which can be used to modify the UI aspects of the Pakku CLI. + - It must be located in the [Pakku directory (`.pakku`)](https://juraj-hrivnak.github.io/Pakku/pakku-directory.html). + - The relative path from the `.minecraft` directory should be: `.pakku/cli-config.json`. + - Properties: + - `theme`: can be `default` or `ascii`. (Defaults to `default` 😜.) + - `ansi_level`: can be `none`, `ansi16`, `ansi256` or `truecolor`. + (By default it is automatically detected based on your terminal/CMD.) +- `NoSuchFileException` is now wrapped as `FileNotFound` action error. +- Errors when creating the modpack zip file now return early. + ## v0.12.1 - Fixed exceptions being uncaught when writing output files on export. diff --git a/build.gradle.kts b/build.gradle.kts index 62e7ffe4..7898b4b4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,7 +16,7 @@ plugins { } group = "teksturepako.pakku" -version = "0.12.1" +version = "0.13.0" val nativeEnabled = false