Skip to content

Commit

Permalink
Quality Update
Browse files Browse the repository at this point in the history
Fixed major version and reduced logo size for greatly reduced mod size
  • Loading branch information
uberifix committed Oct 18, 2019
1 parent 141e290 commit 7500eea
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 35 deletions.
30 changes: 4 additions & 26 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = "1.14.4-0.4.1"
version = "1.14.4-1.4.1"
group = "network.pxl8.colouredchat"
archivesBaseName = "colouredchat"

Expand Down Expand Up @@ -83,35 +83,13 @@ dependencies {
jar {
manifest {
attributes([
"Specification-Title": "examplemod",
"Specification-Vendor": "examplemodsareus",
"Specification-Title": "colouredchat",
"Specification-Vendor": "pxl8",
"Specification-Version": "1", // We are version 1 of ourselves
"Implementation-Title": project.name,
"Implementation-Version": "${version}",
"Implementation-Vendor" :"examplemodsareus",
"Implementation-Vendor" :"pxl8",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
}

// Example configuration to allow publishing using the maven-publish task
// we define a custom artifact that is sourced from the reobfJar output task
// and then declare that to be published
// Note you'll need to add a repository here
def reobfFile = file("$buildDir/reobfJar/output.jar")
def reobfArtifact = artifacts.add('default', reobfFile) {
type 'jar'
builtBy 'reobfJar'
}
publishing {
publications {
mavenJava(MavenPublication) {
artifact reobfArtifact
}
}
repositories {
maven {
url "file:///${project.projectDir}/mcmodsrepo"
}
}
}
1 change: 0 additions & 1 deletion src/main/java/network/pxl8/colouredchat/lib/LibMeta.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package network.pxl8.colouredchat.lib;

import net.minecraftforge.fml.common.Mod;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

Expand Down
9 changes: 1 addition & 8 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,4 @@ This mod simply assigns a random colour to a users name when they join the serve
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
ordering="NONE"
# Side this dependency is applied on - BOTH, CLIENT or SERVER
side="BOTH"
# Here's another dependency
[[dependencies.discordchat]]
modId="discordchat"
mandatory=false
versionRange="[1.14.4]"
ordering="NONE"
side="BOTH"
side="BOTH"
Binary file modified src/main/resources/colouredchat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7500eea

Please sign in to comment.