update to Loader 0.4.0
This commit is contained in:
		
							parent
							
								
									20c98824b9
								
							
						
					
					
						commit
						d6e85e2219
					
				@ -3,9 +3,9 @@ org.gradle.jvmargs=-Xmx1G
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# Fabric Properties
 | 
					# Fabric Properties
 | 
				
			||||||
	# check these on https://fabricmc.net/use
 | 
						# check these on https://fabricmc.net/use
 | 
				
			||||||
	minecraft_version=19w12a
 | 
						minecraft_version=19w14b
 | 
				
			||||||
	yarn_mappings=19w12a.2
 | 
						yarn_mappings=19w14b.4
 | 
				
			||||||
	loader_version=0.3.7.109
 | 
						loader_version=0.4.0+build.112
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Mod Properties
 | 
					# Mod Properties
 | 
				
			||||||
	mod_version = 1.0.0
 | 
						mod_version = 1.0.0
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										
											BIN
										
									
								
								src/main/resources/assets/modid/icon.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								src/main/resources/assets/modid/icon.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 453 B  | 
@ -1,17 +1,36 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
 | 
					  "schemaVersion": 1,
 | 
				
			||||||
  "id": "modid",
 | 
					  "id": "modid",
 | 
				
			||||||
 | 
					  "version": "${version}",
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  "name": "Example Mod",
 | 
					  "name": "Example Mod",
 | 
				
			||||||
  "description": "This is an example description! Tell everyone what your mod is about!",
 | 
					  "description": "This is an example description! Tell everyone what your mod is about!",
 | 
				
			||||||
  "version": "${version}",
 | 
					  "authors": [
 | 
				
			||||||
  "side": "universal",
 | 
					    "Me!"
 | 
				
			||||||
  "initializers": [
 | 
					 | 
				
			||||||
    "net.fabricmc.example.ExampleMod"
 | 
					 | 
				
			||||||
  ],
 | 
					  ],
 | 
				
			||||||
 | 
					  "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": {
 | 
					  "requires": {
 | 
				
			||||||
 | 
					    "fabricloader": ">=0.4.0",
 | 
				
			||||||
    "fabric": "*"
 | 
					    "fabric": "*"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "mixins": {
 | 
					  "suggests": {
 | 
				
			||||||
    "client": "modid.client.json",
 | 
					    "flamingo": "*"
 | 
				
			||||||
    "common": "modid.common.json"
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
@ -1,10 +0,0 @@
 | 
				
			|||||||
{
 | 
					 | 
				
			||||||
  "required": true,
 | 
					 | 
				
			||||||
  "package": "net.fabricmc.example.mixin",
 | 
					 | 
				
			||||||
  "compatibilityLevel": "JAVA_8",
 | 
					 | 
				
			||||||
  "mixins": [
 | 
					 | 
				
			||||||
  ],
 | 
					 | 
				
			||||||
  "injectors": {
 | 
					 | 
				
			||||||
    "defaultRequire": 1
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@ -3,6 +3,8 @@
 | 
				
			|||||||
  "package": "net.fabricmc.example.mixin",
 | 
					  "package": "net.fabricmc.example.mixin",
 | 
				
			||||||
  "compatibilityLevel": "JAVA_8",
 | 
					  "compatibilityLevel": "JAVA_8",
 | 
				
			||||||
  "mixins": [
 | 
					  "mixins": [
 | 
				
			||||||
 | 
					  ],
 | 
				
			||||||
 | 
					  "client": [
 | 
				
			||||||
    "ExampleMixin"
 | 
					    "ExampleMixin"
 | 
				
			||||||
  ],
 | 
					  ],
 | 
				
			||||||
  "injectors": {
 | 
					  "injectors": {
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user