Skip to content

Commit

Permalink
Update to 0.12.3
Browse files Browse the repository at this point in the history
This release fixes problems with compilation of neverwinter.nim and the
outdated glob dependency in docker. It's an ugly temporary fix until the
upstream issues are resolved.
  • Loading branch information
squattingmonk committed Oct 22, 2020
1 parent ab31e31 commit 1e6f41b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# nasher changelog

## 0.12.3: October 21, 2020

This release fixes problems with compilation of neverwinter.nim and the
outdated glob dependency in docker. It's an ugly temporary fix until the
upstream issues are resolved.

---

Details: https://github.com/squattingmonk/nasher.nim/compare/0.12.2...0.12.3


## 0.12.2: October 20, 2020

### Use copy of cache directory to filter and pack
Expand Down
13 changes: 7 additions & 6 deletions dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ COPY --from=nwnsc /nwn /nwn
RUN dpkg --add-architecture i386 \
&& apt update \
&& apt upgrade -y \
&& apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 -y \
&& choosenim update 1.2.0 \
&& nimble install nasher@#0.12.2 -y \
&& nasher config --nssFlags:"-n /nwn/data -o" \
&& nasher config --installDir:"/nasher/install"
RUN nasher config --userName:"nasher"
&& apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 -y
RUN curl https://nim-lang.org/choosenim/init.sh -sSf | sh -s -- -y
ENV PATH="/root/.nimble/bin:${PATH}"
RUN choosenim update 1.2.0 \
&& nimble install nasher@#0.12.3 -y \
&& nasher config --nssFlags:"-n /nwn/data -o" \
&& nasher config --installDir:"/nasher/install" \
&& nasher config --userName:"nasher"
WORKDIR /nasher
RUN bash -c 'mkdir -pv /nasher/install/{modules,erf,hak,tlk}'
ENTRYPOINT [ "nasher" ]
Expand Down
2 changes: 1 addition & 1 deletion nasher.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.12.2"
version = "0.12.3"
author = "Michael A. Sinclair"
description = "A build tool for Neverwinter Nights projects"
license = "MIT"
Expand Down

0 comments on commit 1e6f41b

Please sign in to comment.