Skip to content

Commit

Permalink
port to 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
MelanX committed Jun 9, 2022
1 parent ab509e0 commit 98a032f
Show file tree
Hide file tree
Showing 18 changed files with 337 additions and 246 deletions.
32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

54 changes: 54 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,54 @@
name: Bug Report
description: Report an issue with supported versions of SkyblockUltimaTools
labels: [ bug ]
body:
- type: input
id: mc-version
attributes:
label: Minecraft version
placeholder: eg. 1.19
validations:
required: true
- type: input
id: mod-version
attributes:
label: Skyblock Ultima Tools version
placeholder: eg. 1.19-1.0.0
validations:
required: true
- type: input
id: forge-version
attributes:
label: Forge version
placeholder: eg. 41.0.3
validations:
required: true
- type: input
id: log-file
attributes:
label: The latest.log file
description: |
Please use a paste site such as [gist](https://gist.github.com/) / [pastebin](https://pastebin.com/) / etc.
For more information, see https://git.io/mclogs
validations:
required: true
- type: textarea
id: description
attributes:
label: Issue description
placeholder: A description of the issue.
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to reproduce
placeholder: |
1. First step
2. Second step
3. etc...
- type: textarea
id: additional-information
attributes:
label: Other information
description: Any other relevant information that is related to this issue, such as modpacks, other mods and their versions.
14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,11 @@
name: Feature request
description: Suggest an idea, or enhancement
labels: [ enhancement ]
body:
- type: textarea
id: description
attributes:
label: Describe your idea
placeholder: A clear and reasoned description of your idea.
validations:
required: true
2 changes: 1 addition & 1 deletion Jenkinsfile
Expand Up @@ -20,7 +20,7 @@ pipeline {
stage('Build and Publish') {
steps {
echo 'Building'
sh './gradlew build curseforge modrinth publish'
sh './gradlew build publish curseforge modrinth'
}
}

Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
# Skyblock Ultima Tools

[![CurseForge](http://cf.way2muchnoise.eu/full_315068_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/skyblock-ultima-tools)
[![Curseforge](http://cf.way2muchnoise.eu/versions/For%20MC_315068_all.svg)](https://www.curseforge.com/minecraft/mc-mods/skyblock-ultima-tools)
[![CurseForge](http://cf.way2muchnoise.eu/full_315068_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/skyblock-ultima-tools)

[![Modrinth](https://modrinth-utils.vercel.app/api/badge/versions?id=fM4ceeVu&logo=true)](https://modrinth.com/mod/skyblock-ultima-tools)
[![Modrinth](https://modrinth-utils.vercel.app/api/badge/downloads?id=fM4ceeVu&logo=true)](https://modrinth.com/mod/skyblock-ultima-tools)
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -9,5 +9,5 @@ repositories {
}

dependencies {
implementation fg.deobf("mezz.jei:jei-1.18.2:9.4.1.116")
// implementation fg.deobf("mezz.jei:jei-1.18.2:9.4.1.116")
}
8 changes: 4 additions & 4 deletions gradle.properties
Expand Up @@ -4,17 +4,17 @@ org.gradle.daemon=false
# mod properties
modid=ultimatools
group=de.melanx.ultimatools
base_version=2.1
base_version=3.0

# dependencies
forge_version=1.18.2-40.0.2
forge_version=1.19-41.0.3

# Upload properties
upload_versions=1.18.2
upload_versions=1.19
upload_release=release
modrinth_project=fM4ceeVu
curse_project=315068
curse_optionals=jei
#curse_optionals=jei

# misc
local_maven=/var/www/maven
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip

0 comments on commit 98a032f

Please sign in to comment.