Skip to content

Commit

Permalink
add forge
Browse files Browse the repository at this point in the history
  • Loading branch information
Boxadactle committed Aug 18, 2024
1 parent bf8538b commit 4d0d4c0
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 18 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,9 @@ jobs:
with:
name: forge-build
path: forge/build/libs

- name: Upload neoforge
uses: actions/upload-artifact@v4
with:
name: neoforge-build
path: neoforge/build/libs
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
with:
name: fabric-build
path: fabric/build/libs

- name: Upload forge
uses: actions/upload-artifact@v4
with:
name: forge-build
path: forge/build/libs

- name: Upload neoforge
uses: actions/upload-artifact@v4
Expand Down
9 changes: 1 addition & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,2 @@
## Changes
- Port to 1.21
- Removed help subcommand
- Added relative boolean to corner subcommands
- Opening config file with command now errors to chat
- Added teleport mode subcommand
- Visibility, mode, and corner subcommands log to chat
- Integers can now be specified in movehud subcommand
- Boolean can now be specified in toggle subcommand
- Added forge support
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class CoordinatesDisplay {

public static final String MOD_ID = "coordinatesdisplay";

public static final String VERSION = "13.0.0";
public static final String VERSION = "13.1.0";

public static final String VERSION_STRING = MOD_NAME + " v" + VERSION;

Expand Down
15 changes: 8 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,25 @@ org.gradle.jvmargs=-Xmx2G
org.gradle.parallel=true

# Mod properties
mod_version = 13.0.0
mod_version = 13.1.0
maven_group = dev.boxadactle
archives_name = CoordinatesDisplay
enabled_platforms = fabric,neoforge

# Minecraft properties
minecraft_version = 1.21
minecraft_version = 1.21.1

# Dependencies
fabric_loader_version = 0.15.11
fabric_api_version = 0.100.4+1.21
neoforge_version = 21.0.114-beta
fabric_api_version = 0.102.1+1.21.1
neoforge_version = 21.1.18
forge_version = 52.0.4

modmenu_version=11.0.1
boxlib_version = 14.2.2
modmenu_version = 11.0.1
boxlib_version = 14.3.0

# publishing
game_versions = 1.21
game_versions = 1.21,1.21.1
project_id_curseforge = 646464
project_id_modrinth = 3mW8PdUo
release_type = release
Expand Down
2 changes: 1 addition & 1 deletion neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ unifiedPublishing {
modrinth {
token = modrinthToken
id = "3mW8PdUo"
version = "${rootProject.mod_version}-${project.name}"
version = "${rootProject.mod_version}-neoforge"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ rootProject.name = 'CoordinatesDisplay'
include 'common'
include 'fabric'
include 'neoforge'
//include 'forge'
include 'forge'

0 comments on commit 4d0d4c0

Please sign in to comment.