From 340e91975fa769354358a1a70df6a957dab1fd4b Mon Sep 17 00:00:00 2001 From: "Michael A. Sinclair" Date: Fri, 25 Jun 2021 22:42:32 -0500 Subject: [PATCH] chore: update to 0.15.1 --- CHANGELOG.md | 16 ++++++++++++++++ dockerfile | 2 +- nasher.nimble | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a4fab9..7ca7234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # nasher changelog +## 0.15.1: June 25, 2021 + +- Corrected a copy-paste error in format checking that prevented nwnt files + from being properly converted. + ([#82](https://github.com/squattingmonk/nasher/pull/82)) +- Fixed an issue that prevented `.ncs` files from being detected after + compilation. +- Files are now properly installed to `$NWN_HOME` rather than `$NWN_ROOT`. +- Nasher now warns if it can't resolve the `$NWN_ROOT` environment variable + rather than erroring out. This prevented the docker build from compiling. + +--- + +Details: https://github.com/squattingmonk/nasher/compare/0.15.0...0.15.1 + + ## 0.15.0: June 23, 2021 ### Support for Beamdog and GOG installs diff --git a/dockerfile b/dockerfile index 19e8f4e..0efaf18 100644 --- a/dockerfile +++ b/dockerfile @@ -9,7 +9,7 @@ RUN dpkg --add-architecture i386 \ && apt upgrade -y \ && apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 -y \ && rm -fr /var/lib/apt/lists/* /root/.cache/* /usr/share/doc/* /var/cache/man/* -ARG NASHER_VERSION="0.15.0" +ARG NASHER_VERSION="0.15.1" ENV PATH="/root/.nimble/bin:$PATH" RUN nimble install nasher@#${NASHER_VERSION} -y RUN nasher config --nssFlags:"-n /nwn/data -o" \ diff --git a/nasher.nimble b/nasher.nimble index 95fe9cd..a9d8073 100644 --- a/nasher.nimble +++ b/nasher.nimble @@ -1,6 +1,6 @@ # Package -version = "0.15.0" +version = "0.15.1" author = "Michael A. Sinclair" description = "A build tool for Neverwinter Nights projects" license = "MIT"