Skip to content

Commit ad7314e

Browse files
committed
Backport to 1.7, use GTNH buildscript
1 parent e46d3df commit ad7314e

38 files changed

+1866
-339
lines changed

.editorconfig

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This is the universal Text Editor Configuration
2+
# for all GTNewHorizons projects
3+
# See: https://editorconfig.org/
4+
5+
root = true
6+
7+
[*]
8+
charset = utf-8
9+
end_of_line = lf
10+
indent_size = 4
11+
indent_style = space
12+
insert_final_newline = true
13+
trim_trailing_whitespace = true
14+
15+
[*.{bat,ini}]
16+
end_of_line = crlf
17+
18+
[*.{dtd,json,info,mcmeta,md,sh,svg,xml,xsd,xsl,yaml,yml}]
19+
indent_size = 2
20+
21+
[*.lang]
22+
trim_trailing_whitespace = false

.gitattributes

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
* text eol=lf
2+
3+
*.[jJ][aA][rR] binary
4+
5+
*.[pP][nN][gG] binary
6+
*.[jJ][pP][gG] binary
7+
*.[jJ][pP][eE][gG] binary
8+
*.[gG][iI][fF] binary
9+
*.[tT][iI][fF] binary
10+
*.[tT][iI][fF][fF] binary
11+
*.[iI][cC][oO] binary
12+
*.[sS][vV][gG] text
13+
*.[eE][pP][sS] binary
14+
*.[xX][cC][fF] binary
15+
16+
*.[kK][aA][rR] binary
17+
*.[mM]4[aA] binary
18+
*.[mM][iI][dD] binary
19+
*.[mM][iI][dD][iI] binary
20+
*.[mM][pP]3 binary
21+
*.[oO][gG][gG] binary
22+
*.[rR][aA] binary
23+
24+
*.7[zZ] binary
25+
*.[gG][zZ] binary
26+
*.[tT][aA][rR] binary
27+
*.[tT][gG][zZ] binary
28+
*.[zZ][iI][pP] binary
29+
30+
*.[tT][cC][nN] binary
31+
*.[sS][oO] binary
32+
*.[dD][lL][lL] binary
33+
*.[dD][yY][lL][iI][bB] binary
34+
*.[pP][sS][dD] binary
35+
*.[tT][tT][fF] binary
36+
*.[oO][tT][fF] binary
37+
38+
*.[pP][aA][tT][cC][hH] -text
39+
40+
*.[bB][aA][tT] text eol=crlf
41+
*.[cC][mM][dD] text eol=crlf
42+
*.[pP][sS]1 text eol=crlf
43+
44+
*[aA][uU][tT][oO][gG][eE][nN][eE][rR][aA][tT][eE][dD]* binary

.github/workflows/main.yml

-32
This file was deleted.

.gitignore

+34-20
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,39 @@
1-
# eclipse
2-
bin
3-
*.launch
1+
.gradle
42
.settings
5-
.metadata
3+
.idea
4+
.vscode
5+
run
6+
build
7+
temp
8+
/eclipse/
69
.classpath
710
.project
8-
9-
# idea
10-
out
11+
/bin/
12+
/config/
13+
/crash-reports/
14+
/logs/
15+
options.txt
16+
/saves/
17+
usernamecache.json
18+
banned-ips.json
19+
banned-players.json
20+
eula.txt
21+
ops.json
22+
server.properties
23+
servers.dat
24+
usercache.json
25+
whitelist.json
26+
/out/
27+
*.iml
1128
*.ipr
1229
*.iws
13-
*.iml
14-
.idea
15-
16-
# gradle
17-
build
18-
.gradle
19-
20-
# other
21-
eclipse
22-
run
23-
24-
# Files from Forge MDK
25-
forge*changelog.txt
30+
src/main/resources/mixins.*([!.]).json
31+
*.bat
32+
*.DS_Store
33+
!gradlew.bat
34+
.factorypath
35+
addon.local.gradle
36+
addon.local.gradle.kts
37+
addon.late.local.gradle
38+
addon.late.local.gradle.kts
39+
layout.json

CHANGELOG.md

-2
This file was deleted.

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Legacy development branch for ViaForge 1.8
1+
# Legacy development branch for ViaForge 1.7.10
22

3-
Upstream changes are merged into this branch every release.
3+
Requires UniMixins(https://modrinth.com/mod/unimixins)
4+
5+
ViaForge 1.7.10 was provided AS-IS and Upstream changes are not merged here. Issues will be ignored.
46

57
Switch to the `master` branch for the latest changes.

0 commit comments

Comments
 (0)