From 5624faebe7d50c6eb8383b09590c5780f8cd1637 Mon Sep 17 00:00:00 2001 From: Nguyen Hoang Tuan <38831897+JustMangoT@users.noreply.github.com> Date: Tue, 31 Jan 2023 21:00:58 +0700 Subject: [PATCH] Modrinth per project version type declaration (#1939) --- Dockerfile | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51d35700..1cf70546 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ RUN easy-add --var os=${TARGETOS} --var arch=${TARGETARCH}${TARGETVARIANT} \ --var version=0.1.1 --var app=maven-metadata-release --file {{.app}} \ --from https://github.com/itzg/{{.app}}/releases/download/{{.version}}/{{.app}}_{{.version}}_{{.os}}_{{.arch}}.tar.gz -ARG MC_HELPER_VERSION=1.24.19 +ARG MC_HELPER_VERSION=1.24.20 ARG MC_HELPER_BASE_URL=https://github.com/itzg/mc-image-helper/releases/download/${MC_HELPER_VERSION} RUN curl -fsSL ${MC_HELPER_BASE_URL}/mc-image-helper-${MC_HELPER_VERSION}.tgz \ | tar -C /usr/share -zxf - \ diff --git a/README.md b/README.md index 155c9e83..939f36e5 100644 --- a/README.md +++ b/README.md @@ -793,9 +793,9 @@ For example, the following will auto-download the [EssentialsX](https://www.spig | +-- project slug ``` - Also, specific version can be declared using colon symbol and version id after the project slug. For instance: + Also, specific version/type can be declared using colon symbol and version id/type after the project slug. The version id can be found at 'Metadata' section. Valid version types are `release`, `beta`, `alpha`. For instance: ``` - -e MODRINTH_PROJECTS=fabric-api,fabric-api:PbVeub96 + -e MODRINTH_PROJECTS=fabric-api,fabric-api:PbVeub96,fabric-api:beta ``` - **MODRINTH_DOWNLOAD_OPTIONAL_DEPENDENCIES**=true : required dependencies of the project will _always_ be downloaded and optional dependencies can also be downloaded by setting this to `true` - **MODRINTH_ALLOWED_VERSION_TYPE**=release : the version type is used to determine the newest version to use from each project. The allowed values are `release`, `beta`, `alpha`.