Compare commits

3 Commits
1.21 ... 1.20.1

Author SHA1 Message Date
6a8b93c004 fix: logo 显示问题 2025-09-02 02:21:46 +08:00
1e2724acec fix: update version 2025-09-01 02:13:28 +08:00
7819376ac3 fix: wrong mixin dist 2025-09-01 02:07:51 +08:00
5 changed files with 5 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ subprojects {
base { base {
// Set up a suffixed format for the mod jar names, e.g. `example-fabric`. // Set up a suffixed format for the mod jar names, e.g. `example-fabric`.
archivesName = "$rootProject.archives_name-$project.name" archivesName = "$rootProject.archives_name-$project.name-$rootProject.minecraft_version"
} }
repositories { repositories {

View File

Before

Width:  |  Height:  |  Size: 922 B

After

Width:  |  Height:  |  Size: 922 B

View File

@@ -4,10 +4,10 @@
"compatibilityLevel": "JAVA_17", "compatibilityLevel": "JAVA_17",
"minVersion": "0.8", "minVersion": "0.8",
"client": [ "client": [
"MinecraftMixin" "MinecraftMixin",
"ProfilePublicKeyDataMixin"
], ],
"mixins": [ "mixins": [
"ProfilePublicKeyDataMixin"
], ],
"injectors": { "injectors": {
"defaultRequire": 1 "defaultRequire": 1

View File

@@ -11,7 +11,7 @@ authors = "Gardel"
description = ''' description = '''
Fix Minecraft does not load skin png not prefix with minecraft.net Fix Minecraft does not load skin png not prefix with minecraft.net
''' '''
logoFile="assets/skinfix/icon.png" logoFile = "logo_skinfix.png"
[[dependencies.skinfix]] [[dependencies.skinfix]]
modId = "forge" modId = "forge"

View File

@@ -2,7 +2,7 @@
org.gradle.jvmargs=-Xmx2G org.gradle.jvmargs=-Xmx2G
org.gradle.parallel=true org.gradle.parallel=true
# Mod properties # Mod properties
mod_version=1.0-SNAPSHOT mod_version=1.0.0
maven_group=net.magicterra maven_group=net.magicterra
archives_name=skinfix archives_name=skinfix
enabled_platforms=fabric,forge enabled_platforms=fabric,forge