-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |