Skip to content

Commit

Permalink
1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
MelanX committed Jun 22, 2024
1 parent c3a8cef commit f252009
Show file tree
Hide file tree
Showing 24 changed files with 455 additions and 184 deletions.
17 changes: 9 additions & 8 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,29 @@
name: Bug Report
description: Report an issue with supported versions of DefaultWorldType
description: Report an issue with supported versions of Default World Type
labels: [ bug ]
body:
- type: dropdown
id: mc-version
attributes:
label: Minecraft version
options:
- 1.19.3
- 1.20.1
- 1.19.x
- 1.20.x
- 1.21.x
validations:
required: true
- type: input
id: mod-version
attributes:
label: DefaultWorldType version
placeholder: eg. 1.19-3.0.0
label: Default World Type version
placeholder: eg. 1.21-5.0.0
validations:
required: true
- type: input
id: forge-version
attributes:
label: Forge version
placeholder: eg. 41.0.45
label: NeoForge version
placeholder: eg. 21.0.0-beta
validations:
required: true
- type: input
Expand Down Expand Up @@ -53,4 +54,4 @@ body:
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.
description: Any other relevant information that is related to this issue, such as modpacks, other mods and their versions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ body:
label: Describe your idea
placeholder: A clear and reasoned description of your idea.
validations:
required: true
required: true
10 changes: 0 additions & 10 deletions .github/stale.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: publish

on:
push:
branches:
- '**'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 21

- name: Build and publish to maven
uses: gradle/actions/setup-gradle@v3
with:
arguments: clean build publish curseforge modrinth --no-configuration-cache
env:
GIT_COMMIT: ${{ github.sha }}
GIT_PREVIOUS_COMMIT: ${{ github.event.before }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Close stale issues and PRs

on:
schedule:
- cron: '0 */6 * * *'

jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v9
with:
stale-issue-message: The required information were not provided yet. Thus, this was marked as stale.
close-issue-message: None of the required information was ever provided. If this is still an issue, feel free to reopen with the required information, or create a new issue.
only-labels: needs more info
days-before-stale: 7
days-before-close: 3
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,11 @@ build
# other
eclipse
/run*
todo.txt
logs/
/logs

# Files from Forge MDK
forge*changelog.txt
src/generated/resources/.cache
/src/generated/resources/.cache

# CoreMods
*.d.ts
Expand Down
34 changes: 0 additions & 34 deletions Jenkinsfile

This file was deleted.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Default World Type (Forge)
Change the default world type for creating a new world
# Default World Type
Change the default world type for creating a new world in Create World screen

[![Curseforge](http://cf.way2muchnoise.eu/versions/For%20MC_373014_all.svg)](https://www.curseforge.com/minecraft/mc-mods/defaultworldtype)
[![CurseForge](http://cf.way2muchnoise.eu/full_373014_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/defaultworldtype)
[![Curseforge](https://cf.way2muchnoise.eu/versions/For%20MC_373014_all.svg)](https://www.curseforge.com/minecraft/mc-mods/defaultworldtype)
[![CurseForge](https://cf.way2muchnoise.eu/full_373014_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/defaultworldtype)

[![Modrinth](https://img.shields.io/modrinth/game-versions/kZvO1mDq?color=00AF5C&label=modrinth&logo=modrinth)](https://modrinth.com/mod/defaultworldtype)
[![Modrinth](https://img.shields.io/modrinth/dt/kZvO1mDq?color=00AF5C&logo=modrinth)](https://modrinth.com/mod/defaultworldtype)
1 change: 0 additions & 1 deletion build.bat

This file was deleted.

Loading

0 comments on commit f252009

Please sign in to comment.