Skip to content

Commit

Permalink
Add mcmod.info and fmlbranding.properties (#240)
Browse files Browse the repository at this point in the history
* Add mcmod.info and fmlbranding.properties

* Get rid of SVG files
  • Loading branch information
ExE-Boss authored and RX14 committed Jan 9, 2017
1 parent 51254f6 commit 2eeb427
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 4 deletions.
4 changes: 2 additions & 2 deletions minecraft/1.7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@ processResources {
inputs.property "mcversion", project.minecraft.version

from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
include 'mcmod.info', 'fmlbranding.properties'
expand 'version': project.version, 'mcversion': project.minecraft.version
}

from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
exclude 'mcmod.info', 'fmlbranding.properties'
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions minecraft/1.7/src/main/resources/fmlbranding.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fmlbranding=NOVA ${version}
21 changes: 21 additions & 0 deletions minecraft/1.7/src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"modListVersion": 2,
"modList": [{
"modid": "nova",
"name": "NOVA",
"description": "NOVA (Neatly Organized Voxel API) is a modding framework for voxel games.",
"version": "${version}",
"mcversion": "${mcversion}",
"url": "https://novaapi.net/",
"updateUrl": "",
"authorList": [ "calclavia", "RX14", "AEnterprise", "magik6k", "Shadowfacts", "ExE Boss" ],
"credits": "Created by the NOVA Team.",
"logoFile": "/assets/nova/textures/NOVA.png",
"screenshots": [],
"parent": "",
"requiredMods": [],
"dependencies": [],
"dependants": [],
"useDependencyInformation": true
}]
}
4 changes: 2 additions & 2 deletions minecraft/1.8/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ processResources {
inputs.property "mcversion", project.minecraft.version

from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
include 'mcmod.info', 'fmlbranding.properties'
expand 'version': project.version, 'mcversion': project.minecraft.version
}

from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
exclude 'mcmod.info', 'fmlbranding.properties'
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions minecraft/1.8/src/main/resources/fmlbranding.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fmlbranding=NOVA ${version}
21 changes: 21 additions & 0 deletions minecraft/1.8/src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"modListVersion": 2,
"modList": [{
"modid": "nova",
"name": "NOVA",
"description": "NOVA (Neatly Organized Voxel API) is a modding framework for voxel games.",
"version": "${version}",
"mcversion": "${mcversion}",
"url": "https://novaapi.net/",
"updateUrl": "",
"authorList": [ "calclavia", "RX14", "AEnterprise", "magik6k", "Shadowfacts", "ExE Boss" ],
"credits": "Created by the NOVA Team.",
"logoFile": "/assets/nova/textures/NOVA.png",
"screenshots": [],
"parent": "",
"requiredMods": [],
"dependencies": [],
"dependants": [],
"useDependencyInformation": true
}]
}

0 comments on commit 2eeb427

Please sign in to comment.