Skip to content

Commit

Permalink
- updated to Minecraft 1.20.4 (Forge 49.0.38, Neoforge 20.4.218)
Browse files Browse the repository at this point in the history
- updated JEI support to 17.3.0.49 (Forge & Neoforge)
- updated The One Probe support to 1.20.4_neo-11.0.2-3 (Neoforge)
- updated Immersive Engineering support to 1.20.4-11.1.0-172 (Neoforge)
- rename config option "recipeBlacklist" to "recipeBlockedList"
  • Loading branch information
cech12 committed Apr 2, 2024
1 parent 3e6f703 commit dca7cdb
Show file tree
Hide file tree
Showing 126 changed files with 1,513 additions and 663 deletions.
15 changes: 13 additions & 2 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,22 @@ body:
description: What version of Minecraft were you running?
validations:
required: true
- type: dropdown
id: modLoader
attributes:
label: Mod Loader
description: What mod loader were you using?
options:
- Fabric
- Forge
- NeoForge
validations:
required: true
- type: input
id: modLoaderVersion
attributes:
label: Forge Version
description: What version of Forge were you using?
label: Mod Loader Version
description: What mod loader version were you using?
validations:
required: true
- type: input
Expand Down
54 changes: 47 additions & 7 deletions .github/workflows/cicd-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,42 +33,82 @@ jobs:
needs: codeql
if: startsWith(github.ref, 'refs/tags/')
name: Publish Github
uses: cech12/MinecraftModActions/.github/workflows/publish-github.yml@main
uses: cech12/MinecraftModActions/.github/workflows/multi-publish-github.yml@main
with:
java-version: 17
mod-name: Brick Furnace
mod-id: brickfurnace
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
publish-curseforge:
publish-forge-on-curseforge:
needs: publish-github
if: startsWith(github.ref, 'refs/tags/')
name: Publish Curseforge
name: Publish Forge on Curseforge
uses: cech12/MinecraftModActions/.github/workflows/publish-curseforge.yml@main
with:
java-version: 17
subproject: forge
title-prefix: forge-
curseforge-id: 363593
game-versions: |
1.20.2
1.20.4
release-type: release
loaders: |
forge
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
curseforge-token: ${{ secrets.CURSEFORGE_API_KEY }}
publish-modrinth:
publish-forge-on-modrinth:
needs: publish-github
if: startsWith(github.ref, 'refs/tags/')
name: Publish Modrinth
name: Publish Forge on Modrinth
uses: cech12/MinecraftModActions/.github/workflows/publish-modrinth.yml@main
with:
java-version: 17
subproject: forge
title-prefix: forge-
modrinth-id: yzHyAUSI
game-versions: |
1.20.2
1.20.4
release-type: release
loaders: |
forge
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
modrinth-token: ${{ secrets.MODRINTH_API_KEY }}
publish-neoforge-on-curseforge:
needs: publish-github
if: startsWith(github.ref, 'refs/tags/')
name: Publish Neoforge on Curseforge
uses: cech12/MinecraftModActions/.github/workflows/publish-curseforge.yml@main
with:
java-version: 17
subproject: neoforge
title-prefix: neoforge-
curseforge-id: 363593
game-versions: |
1.20.4
release-type: release
loaders: |
neoforge
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
curseforge-token: ${{ secrets.CURSEFORGE_API_KEY }}
publish-neoforge-on-modrinth:
needs: publish-github
if: startsWith(github.ref, 'refs/tags/')
name: Publish Neoforge on Modrinth
uses: cech12/MinecraftModActions/.github/workflows/publish-modrinth.yml@main
with:
java-version: 17
subproject: neoforge
title-prefix: neoforge-
modrinth-id: yzHyAUSI
game-versions: |
1.20.4
release-type: release
loaders: |
neoforge
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
modrinth-token: ${{ secrets.MODRINTH_API_KEY }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ build
# other
eclipse
run
runs
run-data
runTest

# Files from Forge MDK
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Forge Recommended Versioning](https://mcforge.readthedocs.io/en/latest/conventions/versioning/).

## [1.20.4-3.0.0.0] - 2024-04-02
### Changed
- updated to Minecraft 1.20.4 (Forge 49.0.38, Neoforge 20.4.218)
- updated JEI support to 17.3.0.49 (Forge & Neoforge)
- updated The One Probe support to 1.20.4_neo-11.0.2-3 (Neoforge)
- updated Immersive Engineering support to 1.20.4-11.1.0-172 (Neoforge)
- rename config option "recipeBlacklist" to "recipeBlockedList"

### Known issues
- Villagers cannot use Brick Blast Furnace or Brick Smoker as workplace in Neoforge

## [1.20.2-2.2.0.3] - 2024-03-31
### Fixed
- fuel consumption of Brick Smoker & Brick Blast Furnace were incorrect (thanks to t3chdelicious for the report)
Expand Down
Loading

0 comments on commit dca7cdb

Please sign in to comment.