Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 2 #510

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
- Fixed enchantment glints not working
- Switched legacy Stonecutter out in favor of the newer [Stonecutter](https://stonecutter.kikugie.dev/)
- Fixed 1.19.4 port
- Fixed 1.20.1 port
- Fixed 1.20.4 port
- Nuked everything
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2021 SHsuperCM
Copyright (c) 2024 SHsuperCM

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
21 changes: 9 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins.apply 'fabric-loom'
plugins.apply 'io.shcm.shsupercm.fabric.fletchingtable'

version = "${property('mod.version')}+${stonecutter.current.version}"
group = 'shcm.shsupercm.fabric.citresewn'
group = 'io.shcm.fabric.citresewn'

repositories {
maven { url 'https://maven.terraformersmc.com/releases/' }
Expand All @@ -13,30 +13,27 @@ dependencies {
minecraft "com.mojang:minecraft:${stonecutter.current.version}"
mappings "net.fabricmc:yarn:${property('deps.yarn')}:v2"

modCompileOnly "net.fabricmc:fabric-loader:${property('deps.fabric-loader')}"
modCompileOnly "net.fabricmc.fabric-api:fabric-api:${property('deps.fabric-api')}"
modImplementation "net.fabricmc:fabric-loader:${property('deps.fabric-loader')}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${property('deps.fabric-api')}"

modCompileOnly "com.terraformersmc:modmenu:${property('deps.modmenu')}"
modCompileOnly "me.shedaniel.cloth:cloth-config-fabric:${property('deps.cloth-config')}"

include stonecutter.node.sibling("defaults").project
modImplementation "com.terraformersmc:modmenu:${property('deps.modmenu')}"
}

fletchingTable {
defaultMixinEnvironment = "auto"
defaultMixinEnvironment = "client"
}

loom {
accessWidenerPath = file("../../src/main/resources/citresewn.accesswidener")

runConfigs.client.ideConfigGenerated = false
runConfigs.server.ideConfigGenerated = false
runConfigs.client.ideConfigGenerated = true
runConfigs.server.ideConfigGenerated = true
}

java {
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21

archivesBaseName = property('mod.jarname')
}
Expand Down
88 changes: 0 additions & 88 deletions defaults/build.gradle

This file was deleted.

1 change: 0 additions & 1 deletion defaults/gradle.properties

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading