forked from QuiltMC/quilted-fabric-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to 1.20.4 and to fabric api 0.96.4
- Loading branch information
Showing
265 changed files
with
5,627 additions
and
1,142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ classes/ | |
# Debug artifacts | ||
run | ||
*.log | ||
*.log.gz | ||
|
||
# Windows | ||
*.db | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
files: | ||
- source: fabric-resource-loader-v0/src/main/resources/assets/fabric-resource-loader-v0/lang/en_us.json | ||
translation: /fabric-resource-loader-v0/src/main/resources/assets/fabric-resource-loader-v0/lang/%locale_with_underscore%.json | ||
- source: fabric-item-group-api-v1/src/main/resources/assets/fabric/lang/en_us.json | ||
translation: /fabric-item-group-api-v1/src/main/resources/assets/fabric/lang/%locale_with_underscore%.json | ||
- source: fabric-registry-sync-v0/src/main/resources/assets/fabric-registry-sync-v0/lang/en_us.json | ||
translation: /fabric-registry-sync-v0/src/main/resources/assets/fabric-registry-sync-v0/lang/%locale_with_underscore%.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
plugins { | ||
id 'java-platform' | ||
} | ||
|
||
version = rootProject.version | ||
|
||
publishing.publications { | ||
register('mavenJava', MavenPublication) { | ||
from(components['javaPlatform']) | ||
} | ||
} | ||
|
||
tasks.withType(GenerateModuleMetadata) { | ||
// todo: RemoteSignJar fails when this is false (as set by parent build script) | ||
enabled = true | ||
} | ||
|
||
dependencies { | ||
constraints { | ||
for (proj in rootProject.allprojects) { | ||
if (proj == project) { // the bom itself | ||
continue | ||
} | ||
if (proj.name == 'fabric-api-catalog') { | ||
continue | ||
} | ||
|
||
api(project(proj.path)) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
plugins { | ||
id 'version-catalog' | ||
} | ||
|
||
version = rootProject.version | ||
|
||
publishing.publications { | ||
register('mavenJava', MavenPublication) { | ||
from components.versionCatalog | ||
} | ||
} | ||
|
||
tasks.withType(GenerateModuleMetadata) { | ||
// todo: RemoteSignJar fails when this is false (as set by parent build script) | ||
enabled = true | ||
} | ||
|
||
// Avoid configuration ordering issues by creating the catalog entries during task execution time | ||
tasks.register('configureCatalog') { | ||
doFirst { | ||
doConfigureCatalog() | ||
} | ||
} | ||
tasks.named('generateCatalogAsToml') { | ||
dependsOn('configureCatalog') | ||
} | ||
|
||
def doConfigureCatalog() { | ||
for (proj in rootProject.allprojects) { | ||
if (proj == project) { // the catalog itself | ||
continue | ||
} | ||
|
||
String catalogName = proj.name | ||
if (catalogName == 'fabric-api-base') { | ||
catalogName = 'base' | ||
} else if (catalogName == 'fabric-api-bom') { | ||
catalogName = 'bom' | ||
} else if (catalogName == 'deprecated') { | ||
catalogName = 'deprecated-fabric-api' | ||
} else if (catalogName == 'fabric-api') { | ||
catalogName = 'fabric-api' | ||
} else { | ||
catalogName = catalogName.substring('fabric-'.length()) | ||
} | ||
|
||
if (proj.parent != null && proj.parent.name == 'deprecated') { | ||
catalogName = 'deprecated-' + catalogName | ||
} | ||
|
||
catalog { | ||
versionCatalog { | ||
library(catalogName, "net.fabricmc.fabric-api:${proj.name}:${proj.version}") | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +0,0 @@ | ||
/* | ||
* Copyright 2022 The Quilt Project | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package net.fabricmc.fabric.mixin.biome; | ||
|
||
import org.quiltmc.qsl.worldgen.biome.impl.modification.BiomeModificationContextImpl; | ||
import org.spongepowered.asm.mixin.Mixin; | ||
|
||
import net.fabricmc.fabric.api.biome.v1.BiomeModificationContext; | ||
|
||
@Mixin(BiomeModificationContextImpl.class) | ||
public abstract class BiomeModificationContextImplMixin implements BiomeModificationContext { } | ||
Empty file.
37 changes: 37 additions & 0 deletions
37
...-v1/src/main/java/net/fabricmc/fabric/mixin/block/ChunkSectionBlockStateCounterMixin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright (c) 2016, 2017, 2018, 2019 FabricMC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package net.fabricmc.fabric.mixin.block; | ||
|
||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.injection.At; | ||
import org.spongepowered.asm.mixin.injection.Redirect; | ||
|
||
import net.minecraft.block.BlockState; | ||
import net.minecraft.block.Blocks; | ||
|
||
@Mixin(targets = "net/minecraft/world/chunk/ChunkSection$BlockStateCounter") | ||
public class ChunkSectionBlockStateCounterMixin { | ||
/** | ||
* Makes Chunk Sections not have isAir = true modded blocks be replaced with AIR against their will. | ||
* Mojang report: https://bugs.mojang.com/browse/MC-232360 | ||
*/ | ||
@Redirect(method = "accept(Lnet/minecraft/block/BlockState;I)V", | ||
at = @At(value = "INVOKE", target = "Lnet/minecraft/block/BlockState;isAir()Z")) | ||
private boolean modifyAirCheck(BlockState blockState) { | ||
return blockState.isOf(Blocks.AIR) || blockState.isOf(Blocks.CAVE_AIR) || blockState.isOf(Blocks.VOID_AIR); | ||
} | ||
} |
Oops, something went wrong.