Skip to content

Commit

Permalink
feat: Dropped Forge support :3
Browse files Browse the repository at this point in the history
- NeoForge is just better
- Cloth Config API doesn't publish maven releases for new versions
- There are some problems with new forge versions in Architectury
  • Loading branch information
Norbiros committed Jun 24, 2024
1 parent ed10087 commit 12dcc70
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 178 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ jobs:
name: fabric-artifacts
path: fabric/build/libs/

- name: Upload Forge Artifacts
uses: actions/upload-artifact@v3
with:
name: forge-artifacts
path: forge/build/libs/

- name: Upload NeoForge Artifacts
uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ gradle-app.setting
# Common working directory
run/
fabric/run/
forge/run/
neoforge/run/

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ subprojects {

mappings loom.layered {
it.mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
it.mappings "dev.architectury:yarn-mappings-patch-forge:${project.forge_yarn_mappings_patch}"
it.mappings "dev.architectury:yarn-mappings-patch-neoforge:${project.neoforge_yarn_mappings_patch}"
}
}
Expand Down
85 changes: 0 additions & 85 deletions forge/build.gradle

This file was deleted.

1 change: 0 additions & 1 deletion forge/gradle.properties

This file was deleted.

This file was deleted.

This file was deleted.

36 changes: 0 additions & 36 deletions forge/src/main/resources/META-INF/mods.toml

This file was deleted.

7 changes: 0 additions & 7 deletions forge/src/main/resources/pack.mcmeta

This file was deleted.

6 changes: 2 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ maven_group=dev.norbiros

minecraft_version=1.21
minecraft_version_range=1.21
forge_version=1.21-51.0.17

fabric_loader_version=0.15.11
yarn_mappings=1.21+build.2
neoforge_version=21.0.30-beta

forge_yarn_mappings_patch=1.20.4+build.4
neoforge_yarn_mappings_patch=1.21+build.4

enabled_platforms=fabric,forge,neoforge
enabled_platforms=fabric,neoforge
architectury_version=13.0.1

cloth_config_version=15.0.127
Expand Down
3 changes: 1 addition & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ pluginManagement {
repositories {
maven { url "https://maven.fabricmc.net/" }
maven { url "https://maven.architectury.dev/" }
maven { url "https://maven.minecraftforge.net/" }
maven { url "https://maven.neoforged.net/" }
gradlePluginPortal()
}
}

include("common")
include("fabric")
include("forge")
include("neoforge")

rootProject.name = "emojitype"

0 comments on commit 12dcc70

Please sign in to comment.