-
Notifications
You must be signed in to change notification settings - Fork 271
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,791 changed files
with
62,285 additions
and
1 deletion.
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,27 @@ | ||
--- | ||
name: 1.16.3 Standalone Bug | ||
about: For bugs that occur with Biomes O' Plenty for 1.16.3. We do not support older versions! | ||
title: '' | ||
labels: bug-minor | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Bug Report | ||
|
||
[ Lines between [ ] (square brackets) should be removed before posting. ]</br> | ||
|
||
### What's the issue you encountered? | ||
|
||
[ Describe the issue in detail and what you were doing beforehand. ]</br> | ||
|
||
### How can the issue be reproduced? | ||
|
||
[ Include a detailed step by step process for recreating your issue with only Biomes O' Plenty installed. ]</br> | ||
|
||
### Logs | ||
|
||
[ Please include any relevant logs here. This can be done by dragging and dropping your log files into the issue. ]</br> | ||
|
||
### Mod Version | ||
[ Please put the version of the mod you were using here. ]</br> |
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,23 @@ | ||
--- | ||
name: 1.16.3 Standalone Crash | ||
about: For crashes that occur with Biomes O' Plenty for 1.16.3. We do not support older versions! | ||
title: '' | ||
labels: crash | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Bug Report | ||
|
||
[ Lines between [ ] (square brackets) should be removed before posting. ]</br> | ||
|
||
### How can the crash be reproduced? | ||
|
||
[ Include a detailed step by step process for recreating your crash with only Biomes O' Plenty installed. ]</br> | ||
|
||
### Crash Report and Logs | ||
|
||
[ Please include your crash report and logs here. This can be done by dragging and dropping your log files and crash report files into the issue. ]</br> | ||
|
||
### Mod Version | ||
[ Please put the version of the mod you were using here. ]</br> |
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,20 @@ | ||
--- | ||
name: 1.16.3 Feature Request | ||
about: Feature requests for Biomes O' Plenty for 1.16.3. We do not support older versions! | ||
title: '' | ||
labels: feature | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Feature Request | ||
|
||
[ Lines between [ ] (square brackets) should be removed before posting. ]</br> | ||
|
||
### What feature are you suggesting? | ||
|
||
[ Provide an overview of the feature being suggested. ]</br> | ||
|
||
### Why should it be added? | ||
|
||
[ Describe the benefits of implementing this feature. ]</br> |
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Glitchfiend Discord | ||
url: https://discord.gg/GyyzU6T | ||
about: Please ask general questions here instead of opening issues for them. |
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,28 @@ | ||
/build/ | ||
/bin/ | ||
/out/ | ||
/Mixin/ | ||
/repo/ | ||
/run/ | ||
/logs/ | ||
.idea/* | ||
/.gradle/ | ||
/.settings/ | ||
/.classpath | ||
/.project | ||
|
||
# OS generated files | ||
*.DS_Store | ||
|
||
# IntelliJ project files | ||
*.iml | ||
*.ipr | ||
*.iws | ||
|
||
*.launch | ||
mappings/.gradle/ | ||
#mappings/mcp/ | ||
mappings/build/ | ||
mappings/*.csv | ||
mappings/.project | ||
mappings/last_updated.json |
Empty file.
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,60 @@ | ||
@Library('forge-shared-library')_ | ||
|
||
pipeline { | ||
options { | ||
disableConcurrentBuilds() | ||
} | ||
agent { | ||
docker { | ||
image 'gradle:jdk8' | ||
args '-v forgegc:/home/gradle/.gradle/' | ||
} | ||
} | ||
environment { | ||
GRADLE_ARGS = '--no-daemon --console=plain' // No daemon for now as FG3 kinda derps. //'-Dorg.gradle.daemon.idletimeout=5000' | ||
JENKINS_HEAD = 'https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png' | ||
} | ||
|
||
stages { | ||
stage('fetch') { | ||
steps { | ||
checkout scm | ||
} | ||
} | ||
stage('setup') { | ||
steps { | ||
withGradle { | ||
sh './gradlew ${GRADLE_ARGS} --refresh-dependencies' | ||
} | ||
script { | ||
env.MYVERSION = sh(returnStdout: true, script: './gradlew :properties -q | grep "^version:" | awk \'{print $2}\'').trim() | ||
} | ||
} | ||
} | ||
stage('changelog') { | ||
when { | ||
not { | ||
changeRequest() | ||
} | ||
} | ||
steps { | ||
writeChangelog(currentBuild, "build/BiomesOPlenty-${env.MYVERSION}-changelog.txt") | ||
} | ||
} | ||
stage('publish') { | ||
when { | ||
not { | ||
changeRequest() | ||
} | ||
} | ||
environment { | ||
CURSE_API_KEY = credentials('curse-api-key') | ||
} | ||
steps { | ||
withGradle { | ||
sh './gradlew ${GRADLE_ARGS} :uploadArchives curseforge -PcurseApiKey=${CURSE_API_KEY}' | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.