Skip to content

Commit

Permalink
Add a changelog and new dist script
Browse files Browse the repository at this point in the history
  • Loading branch information
dpinela committed Jul 18, 2023
1 parent ef5c11e commit 86ca001
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 1.1 (18 July 2023)

New features:

- An `-i` option for the list command, which filters for already-installed mods
- A download progress meter for mods that take longer than about a second to fetch
- The MODLINKSURL environment variable can be set to fetch the modlinks file from an alternative
URL
- Mods that use platform-specific links - such as Pale Court - can now be downloaded

Bug fixes:

- When using the publish command, the expected order of the manifest fields is now preserved
8 changes: 4 additions & 4 deletions dist.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/sh

GOOS=darwin GOARCH=amd64 go build -o hkmod ./cmd/hkmod &&
GOOS=darwin GOARCH=amd64 go build -ldflags=-w -o hkmod ./cmd/hkmod &&
zip -j hkmod-macos-amd64.zip hkmod &&
GOOS=darwin GOARCH=arm64 go build -o hkmod ./cmd/hkmod &&
GOOS=darwin GOARCH=arm64 go build -ldflags=-w -o hkmod ./cmd/hkmod &&
zip -j hkmod-macos-arm64.zip hkmod &&
GOOS=linux GOARCH=amd64 go build -o hkmod ./cmd/hkmod &&
GOOS=linux GOARCH=amd64 go build -ldflags=-w -o hkmod ./cmd/hkmod &&
zip -j hkmod-linux-amd64.zip hkmod &&
GOOS=windows GOARCH=amd64 go build -o hkmod ./cmd/hkmod &&
GOOS=windows GOARCH=amd64 go build -ldflags=-w -o hkmod ./cmd/hkmod &&
zip -j hkmod-windows-amd64.zip hkmod &&
rm hkmod

0 comments on commit 86ca001

Please sign in to comment.