File tree 5 files changed +33
-18
lines changed
5 files changed +33
-18
lines changed Original file line number Diff line number Diff line change 9
9
jar :
10
10
./gradlew remapJar
11
11
ls -1 fabric/build/libs
12
- ls -1 forge/build/libs
12
+ # ls -1 forge/build/libs
13
13
14
14
test :
15
15
./gradlew test
@@ -38,15 +38,15 @@ deps:
38
38
39
39
.PHONY : inst
40
40
inst :
41
- rm -f ~ /minecraft/instances/1.20.1-forge-dev/.minecraft/mods/fastback*
41
+ # rm -f ~/minecraft/instances/1.20.1-forge-dev/.minecraft/mods/fastback*
42
42
rm -f ~/minecraft/instances/1.20.1-fabric-dev/.minecraft/mods/fasback*
43
43
cp fabric/build/libs/fastback*-fabric.jar ~/minecraft/instances/1.20.1-fabric-dev/.minecraft/mods/
44
- cp forge/build/libs/fastback* -forge.jar ~ /minecraft/instances/1.20.1-forge-dev/.minecraft/mods/
44
+ # cp forge/build/libs/fastback*-forge.jar ~/minecraft/instances/1.20.1-forge-dev/.minecraft/mods/
45
45
46
46
.PHONY : tvf
47
47
tvf :
48
- jar -tvf forge/build/libs/fastback* -forge.jar
48
+ # jar -tvf forge/build/libs/fastback*-forge.jar
49
49
50
50
.PHONY : tvfs
51
51
tvfs :
52
- jar -tvf forge/build/libs/fastback* -shadow.jar
52
+ # jar -tvf forge/build/libs/fastback*-shadow.jar
Original file line number Diff line number Diff line change 1
1
2
2
architectury {
3
3
common(" fabric" )
4
- common(" forge" )
4
+ // NOTE: Forge is no longer supported and the build has been disabled
5
+ // See: https://github.com/pcal43/fastback/issues/333
6
+ // common("forge")
5
7
}
6
8
7
9
dependencies {
Original file line number Diff line number Diff line change 50
50
#
51
51
52
52
FABRIC_LIBS_DIR=' fabric/build/libs'
53
- FORGE_LIBS_DIR=' forge/build/libs'
53
+
54
+ # NOTE: Forge is no longer supported and the build has been disabled
55
+ # See: https://github.com/pcal43/fastback/issues/333
56
+ # FORGE_LIBS_DIR='forge/build/libs'
54
57
55
58
CURRENT_VERSION=$( sed -rn ' s/^mod_version.*=[ ]*([^\n]+)$/\1/p' gradle.properties)
56
59
echo " Current version is '$CURRENT_VERSION '"
@@ -66,7 +69,10 @@ rm gradle.properties
66
69
mv gradle.properties.temp gradle.properties
67
70
68
71
rm -rf " ${FABRIC_LIBS_DIR} "
69
- rm -rf " ${FORGE_LIBS_DIR} "
72
+
73
+ # NOTE: Forge is no longer supported and the build has been disabled
74
+ # See: https://github.com/pcal43/fastback/issues/333
75
+ # rm -rf "${FORGE_LIBS_DIR}"
70
76
71
77
./gradlew remapJar
72
78
@@ -78,7 +84,7 @@ git push
78
84
# Do github release
79
85
#
80
86
set -x
81
- gh release create --generate-notes --title " ${RELEASE_VERSION} " --notes " release ${RELEASE_VERSION} " ${RELEASE_VERSION} " ${FABRIC_LIBS_DIR} " /* " ${FORGE_LIBS_DIR} " /*
87
+ gh release create --generate-notes --title " ${RELEASE_VERSION} " --notes " release ${RELEASE_VERSION} " ${RELEASE_VERSION} " ${FABRIC_LIBS_DIR} " /* # "${FORGE_LIBS_DIR}"/*
82
88
set +x
83
89
84
90
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ fabric_version=0.99.0+1.20.6
22
22
# Forge
23
23
#
24
24
# https://files.minecraftforge.net/net/minecraftforge/forge/
25
- forge_version = 1.20.6-50.0.31
25
+ forge_version = 1.20.6-50.1.9
26
+ # NOTE: Forge is no longer supported and the build has been disabled
27
+ # See: https://github.com/pcal43/fastback/issues/333
26
28
27
29
#
28
30
# common dependencies
Original file line number Diff line number Diff line change @@ -5,26 +5,31 @@ pluginManagement {
5
5
name = " Fabric"
6
6
url = " https://maven.fabricmc.net/"
7
7
}
8
- maven {
9
- name = " Forge"
10
- url = " https://maven.minecraftforge.net/"
11
- }
12
8
maven {
13
9
name = " Architectury"
14
10
url = " https://maven.architectury.dev/"
15
11
}
16
12
// mavenCentral()
17
13
gradlePluginPortal()
14
+ // NOTE: Forge is no longer supported and the build has been disabled
15
+ // See: https://github.com/pcal43/fastback/issues/333
16
+ // maven {
17
+ // name = 'NeoForged'
18
+ // url = 'https://maven.neoforged.net/releases'
19
+ // }
20
+ // architectury-loom still demands this for some reason
18
21
maven {
19
- name = ' NeoForged '
20
- url = ' https://maven.neoforged .net/releases '
22
+ name = " Forge "
23
+ url = " https://maven.minecraftforge .net/"
21
24
}
22
-
23
25
}
24
26
}
25
27
26
28
rootProject. name = " fastback"
27
29
28
30
include(" :common" )
29
31
include(" :fabric" )
30
- include(" :forge" )
32
+
33
+ // NOTE: Forge is no longer supported and the build has been disabled
34
+ // See: https://github.com/pcal43/fastback/issues/333
35
+ // include(":forge")
You can’t perform that action at this time.
0 commit comments