Skip to content

Commit

Permalink
delete old MaFgLib modid compat (fix #31)
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Jan 18, 2024
1 parent 530083f commit e070ccd
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 27 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
## Changelog
- fix icon missing issue
- Deprecated `ForgePlatformCompat`, all function move to `ForgePlatformUtils`
- Add old MaFgLib modid compat
- Update Architectury Loom to 1.4
- delete old MaFgLib modid compat (fix #31)
15 changes: 0 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,6 @@ java {
withSourcesJar()
}

jar {
// add some additional metadata to the jar manifest
manifest {
attributes([
"Specification-Title" : project.mod_id,
"Specification-Vendor" : project.mod_author,
"Specification-Version" : "1",
"Implementation-Title" : project.name,
"Implementation-Version" : version,
"Implementation-Vendor" : project.mod_author,
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
}

modrinth {
token = System.getenv("MODRINTH_TOKEN")

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ loom.platform=forge
# minecraft version
minecraft_version=1.20.1
# forge version, latest version can be found on https://files.minecraftforge.net/
forge_version=1.20.1-47.1.3
forge_version=1.20.1-47.1.43
# yarn, latest version can be found on https://fabricmc.net/develop/
yarn_mappings=1.20.1+build.10

# Mod Properties
mod_version=0.1.5
mod_version=0.1.6
maven_group=org.thinkingstudio.mafglib
archives_base_name=MaFgLib
mod_id=mafglib
Expand Down
1 change: 0 additions & 1 deletion src/main/java/fi/dy/masa/malilib/MaLiLibReference.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
public class MaLiLibReference
{
public static final String MOD_ID = "mafglib";
public static final String NAMESPACE = "malilib";
public static final String MOD_NAME = "MaFgLib";
}
5 changes: 1 addition & 4 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,8 @@ A library mod required by masa's client-side mods.

[[mods]]
modId = "malilib"
version = "${version}"
version = "0.1.5"
displayName = "MaFgLib (old modid compat)"
logoFile="icon.png" #optional
credits="masa" #optional
authors="TexTrue, ThinkingStudio" #optional
description = '''
MaFgLib old modid compat
'''
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/pack.mcmeta
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"pack": {
"description": "Resources for MaFgLib",
"pack_format": 10
"pack_format": 15
}
}

0 comments on commit e070ccd

Please sign in to comment.