Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
CreatureChat
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Public
CreatureChat
Commits
d6e85e22
Commit
d6e85e22
authored
Apr 07, 2019
by
Adrian Siekierka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update to Loader 0.4.0
parent
20c98824
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
30 additions
and
19 deletions
+30
-19
gradle.properties
gradle.properties
+3
-3
icon.png
src/main/resources/assets/modid/icon.png
+0
-0
fabric.mod.json
src/main/resources/fabric.mod.json
+25
-6
modid.common.json
src/main/resources/modid.common.json
+0
-10
modid.mixins.json
src/main/resources/modid.mixins.json
+2
-0
No files found.
gradle.properties
View file @
d6e85e22
...
...
@@ -3,9 +3,9 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version
=
19w1
2a
yarn_mappings
=
19w1
2a.2
loader_version
=
0.
3.7.109
minecraft_version
=
19w1
4b
yarn_mappings
=
19w1
4b.4
loader_version
=
0.
4.0+build.112
# Mod Properties
mod_version
=
1.0.0
...
...
src/main/resources/assets/modid/icon.png
0 → 100644
View file @
d6e85e22
453 Bytes
src/main/resources/fabric.mod.json
View file @
d6e85e22
{
"schemaVersion"
:
1
,
"id"
:
"modid"
,
"version"
:
"${version}"
,
"name"
:
"Example Mod"
,
"description"
:
"This is an example description! Tell everyone what your mod is about!"
,
"version"
:
"${version}"
,
"side"
:
"universal"
,
"initializers"
:
[
"authors"
:
[
"Me!"
],
"contact"
:
{
"homepage"
:
"https://fabricmc.net/"
,
"sources"
:
"https://github.com/FabricMC/fabric-example-mod"
},
"license"
:
"CC0-1.0"
,
"icon"
:
"assets/modid/icon.png"
,
"environment"
:
"*"
,
"entrypoints"
:
{
"main"
:
[
"net.fabricmc.example.ExampleMod"
]
},
"mixins"
:
[
"modid.mixins.json"
],
"requires"
:
{
"fabricloader"
:
">=0.4.0"
,
"fabric"
:
"*"
},
"mixins"
:
{
"client"
:
"modid.client.json"
,
"common"
:
"modid.common.json"
"suggests"
:
{
"flamingo"
:
"*"
}
}
src/main/resources/modid.common.json
deleted
100644 → 0
View file @
20c98824
{
"required"
:
true
,
"package"
:
"net.fabricmc.example.mixin"
,
"compatibilityLevel"
:
"JAVA_8"
,
"mixins"
:
[
],
"injectors"
:
{
"defaultRequire"
:
1
}
}
src/main/resources/modid.
client
.json
→
src/main/resources/modid.
mixins
.json
View file @
d6e85e22
...
...
@@ -3,6 +3,8 @@
"package"
:
"net.fabricmc.example.mixin"
,
"compatibilityLevel"
:
"JAVA_8"
,
"mixins"
:
[
],
"client"
:
[
"ExampleMixin"
],
"injectors"
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment