Add backwards compatibility with Minecraft 1.16.5 (#2)

This commit is contained in:
RuscalWorld 2021-08-06 16:51:40 +03:00
parent ec9349dce0
commit 3dc5c21474
No known key found for this signature in database
GPG key ID: 6655BC5300BB98CB
4 changed files with 10 additions and 10 deletions

View file

@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 16
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '16'
java-version: '8'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew

View file

@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 16
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '16'
java-version: '8'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew

View file

@ -10,7 +10,7 @@ buildscript {
plugins {
id 'com.github.johnrengelman.shadow' version '6.1.0'
id "com.modrinth.minotaur" version "1.1.0"
id 'fabric-loom' version '0.8-SNAPSHOT'
id 'fabric-loom' version '0.6-SNAPSHOT'
id 'maven-publish'
}
@ -22,8 +22,8 @@ repositories {
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
archivesBaseName = project.archives_base_name
version = project.mod_version

View file

@ -2,8 +2,8 @@
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.17
yarn_mappings=1.17+build.13
minecraft_version=1.16.5
yarn_mappings=1.16.5+build.10
loader_version=0.11.3
# Mod Properties
mod_version=1.0.3
@ -11,5 +11,5 @@ maven_group=ru.ruscalworld
archives_base_name=fabricexporter
# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.36.0+1.17
fabric_version=0.36.0+1.16
prometheus_version=0.10.0