diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 index 9563893..8dfbaea --- a/.gitignore +++ b/.gitignore @@ -22,4 +22,4 @@ bin/ # fabric -run/ \ No newline at end of file +run/ diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/build.gradle b/build.gradle old mode 100644 new mode 100755 index 9f612fa..19748d9 --- a/build.gradle +++ b/build.gradle @@ -1,10 +1,10 @@ plugins { - id 'fabric-loom' version '0.5-SNAPSHOT' + id 'fabric-loom' version '0.8-SNAPSHOT' id 'maven-publish' } -sourceCompatibility = JavaVersion.VERSION_1_8 -targetCompatibility = JavaVersion.VERSION_1_8 +sourceCompatibility = JavaVersion.VERSION_16 +targetCompatibility = JavaVersion.VERSION_16 archivesBaseName = project.archives_base_name version = project.mod_version @@ -17,41 +17,41 @@ dependencies { //to change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" - modCompile "net.fabricmc:fabric-loader:${project.loader_version}" + modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" - modCompile "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" + modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" } processResources { inputs.property "version", project.version - from(sourceSets.main.resources.srcDirs) { - include "fabric.mod.json" + filesMatching("fabric.mod.json") { expand "version": project.version } - - from(sourceSets.main.resources.srcDirs) { - exclude "fabric.mod.json" - } } -// ensure that the encoding is set to UTF-8, no matter what the system default is -// this fixes some edge cases with special characters not displaying correctly -// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html -tasks.withType(JavaCompile) { - options.encoding = "UTF-8" +tasks.withType(JavaCompile).configureEach { + // ensure that the encoding is set to UTF-8, no matter what the system default is + // this fixes some edge cases with special characters not displaying correctly + // see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html + // If Javadoc is generated, this must be specified in that task too. + it.options.encoding = "UTF-8" + + // Minecraft 1.17 (21w19a) upwards uses Java 16. + it.options.release = 16 } -// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task -// if it is present. -// If you remove this task, sources will not be generated. -task sourcesJar(type: Jar, dependsOn: classes) { - classifier = "sources" - from sourceSets.main.allSource +java { + // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task + // if it is present. + // If you remove this line, sources will not be generated. + withSourcesJar() } jar { - from "LICENSE" + from("LICENSE") { + rename { "${it}_${project.archivesBaseName}"} + } } // configure the maven publication @@ -68,9 +68,11 @@ publishing { } } - // select the repositories you want to publish to + // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. repositories { - // uncomment to publish to the local maven - // mavenLocal() + // Add repositories to publish to here. + // Notice: This block does NOT have the same function as the block in the top level. + // The repositories here will be used for publishing your artifact, not for + // retrieving dependencies. } } diff --git a/gradle.properties b/gradle.properties old mode 100644 new mode 100755 index 46307a1..d43f339 --- a/gradle.properties +++ b/gradle.properties @@ -3,15 +3,15 @@ org.gradle.jvmargs=-Xmx2G # Fabric Properties # check these on https://fabricmc.net/use - minecraft_version=1.16.4 - yarn_mappings=1.16.4+build.9 - loader_version=0.10.8 + minecraft_version=1.17-rc1 + yarn_mappings=1.17-rc1+build.5 + loader_version=0.11.3 # Mod Properties - mod_version = 1.1.0 + mod_version = 1.2.0 maven_group = eu.midnightdust.motschen archives_base_name = betterbeds # Dependencies # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api - fabric_version=0.30.0+1.16 \ No newline at end of file + fabric_version=0.34.8+1.17 diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar old mode 100644 new mode 100755 index 5c2d1cf..e708b1c Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties old mode 100644 new mode 100755 index 4b7e1f3..e5338d3 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew old mode 100644 new mode 100755 index 8e25e6c..4f906e0 --- a/gradlew +++ b/gradlew @@ -82,6 +82,7 @@ esac CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + # Determine the Java command to use to start the JVM. if [ -n "$JAVA_HOME" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then @@ -125,10 +126,11 @@ if $darwin; then GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" fi -# For Cygwin, switch paths to Windows format before running java -if $cygwin ; then +# For Cygwin or MSYS, switch paths to Windows format before running java +if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then APP_HOME=`cygpath --path --mixed "$APP_HOME"` CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` # We build the pattern for arguments to be converted via cygpath @@ -154,19 +156,19 @@ if $cygwin ; then else eval `echo args$i`="\"$arg\"" fi - i=$((i+1)) + i=`expr $i + 1` done case $i in - (0) set -- ;; - (1) set -- "$args0" ;; - (2) set -- "$args0" "$args1" ;; - (3) set -- "$args0" "$args1" "$args2" ;; - (4) set -- "$args0" "$args1" "$args2" "$args3" ;; - (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + 0) set -- ;; + 1) set -- "$args0" ;; + 2) set -- "$args0" "$args1" ;; + 3) set -- "$args0" "$args1" "$args2" ;; + 4) set -- "$args0" "$args1" "$args2" "$args3" ;; + 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; esac fi @@ -175,14 +177,9 @@ save () { for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done echo " " } -APP_ARGS=$(save "$@") +APP_ARGS=`save "$@"` # Collect all arguments for the java command, following the shell quoting and substitution rules eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" -# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong -if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then - cd "$(dirname "$0")" -fi - exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat old mode 100644 new mode 100755 index 9618d8d..107acd3 --- a/gradlew.bat +++ b/gradlew.bat @@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" @@ -37,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto init +if "%ERRORLEVEL%" == "0" goto execute echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. @@ -51,7 +54,7 @@ goto fail set JAVA_HOME=%JAVA_HOME:"=% set JAVA_EXE=%JAVA_HOME%/bin/java.exe -if exist "%JAVA_EXE%" goto init +if exist "%JAVA_EXE%" goto execute echo. echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% @@ -61,28 +64,14 @@ echo location of your Java installation. goto fail -:init -@rem Get command-line arguments, handling Windows variants - -if not "%OS%" == "Windows_NT" goto win9xME_args - -:win9xME_args -@rem Slurp the command line arguments. -set CMD_LINE_ARGS= -set _SKIP=2 - -:win9xME_args_slurp -if "x%~1" == "x" goto execute - -set CMD_LINE_ARGS=%* - :execute @rem Setup the command line set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + @rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* :end @rem End local scope for the variables with windows NT shell diff --git a/settings.gradle b/settings.gradle old mode 100644 new mode 100755 diff --git a/src/main/java/eu/midnightdust/betterbeds/BetterBedsClient.java b/src/main/java/eu/midnightdust/betterbeds/BetterBedsClient.java old mode 100644 new mode 100755 index 646282e..51634ff --- a/src/main/java/eu/midnightdust/betterbeds/BetterBedsClient.java +++ b/src/main/java/eu/midnightdust/betterbeds/BetterBedsClient.java @@ -1,17 +1,17 @@ -package eu.midnightdust.betterbeds; - -import net.fabricmc.api.ClientModInitializer; -import net.fabricmc.fabric.api.resource.ResourceManagerHelper; -import net.fabricmc.loader.api.FabricLoader; -import net.minecraft.util.Identifier; - -public class BetterBedsClient implements ClientModInitializer { - - public void onInitializeClient() { - - FabricLoader.getInstance().getModContainer("betterbeds").ifPresent(modContainer -> { - ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("betterbeds:fancybeds"), "resourcepacks/fancybeds", modContainer, false); - ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("betterbeds:connectedbeds"), "resourcepacks/connectedbeds", modContainer, false); - }); - } -} +package eu.midnightdust.betterbeds; + +import net.fabricmc.api.ClientModInitializer; +import net.fabricmc.fabric.api.resource.ResourceManagerHelper; +import net.fabricmc.fabric.api.resource.ResourcePackActivationType; +import net.fabricmc.loader.api.FabricLoader; +import net.minecraft.util.Identifier; + +public class BetterBedsClient implements ClientModInitializer { + + public void onInitializeClient() { + FabricLoader.getInstance().getModContainer("betterbeds").ifPresent(modContainer -> { + ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("betterbeds:fancybeds"), modContainer, ResourcePackActivationType.NORMAL); + ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("betterbeds:connectedbeds"), modContainer, ResourcePackActivationType.NORMAL); + }); + } +} diff --git a/src/main/java/eu/midnightdust/betterbeds/mixin/MixinBedBlock.java b/src/main/java/eu/midnightdust/betterbeds/mixin/MixinBedBlock.java old mode 100644 new mode 100755 index 237272c..02dd22a --- a/src/main/java/eu/midnightdust/betterbeds/mixin/MixinBedBlock.java +++ b/src/main/java/eu/midnightdust/betterbeds/mixin/MixinBedBlock.java @@ -1,27 +1,27 @@ -package eu.midnightdust.betterbeds.mixin; - -import net.minecraft.block.*; -import net.minecraft.util.math.Direction; -import org.spongepowered.asm.mixin.Mixin; -import org.spongepowered.asm.mixin.injection.At; -import org.spongepowered.asm.mixin.injection.Inject; -import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; - -@Mixin(value = BedBlock.class, priority = 2000) -public abstract class MixinBedBlock extends HorizontalFacingBlock { - - protected MixinBedBlock(Settings settings) { - super(settings); - } - - @Inject(at = @At("RETURN"), method = "getRenderType", cancellable = true) - private void getRenderType(BlockState state, CallbackInfoReturnable cir) { - cir.setReturnValue(BlockRenderType.MODEL); - } - - @Override - @SuppressWarnings("deprecation") - public boolean isSideInvisible(BlockState state, BlockState neighborState, Direction offset) { - return neighborState.getBlock() instanceof BedBlock; - } -} +package eu.midnightdust.betterbeds.mixin; + +import net.minecraft.block.*; +import net.minecraft.util.math.Direction; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; + +@Mixin(value = BedBlock.class, priority = 2000) +public abstract class MixinBedBlock extends HorizontalFacingBlock { + + protected MixinBedBlock(Settings settings) { + super(settings); + } + + @Inject(at = @At("RETURN"), method = "getRenderType", cancellable = true) + private void getRenderType(BlockState state, CallbackInfoReturnable cir) { + cir.setReturnValue(BlockRenderType.MODEL); + } + + @Override + @SuppressWarnings("deprecation") + public boolean isSideInvisible(BlockState state, BlockState neighborState, Direction offset) { + return neighborState.getBlock() instanceof BedBlock; + } +} diff --git a/src/main/java/eu/midnightdust/betterbeds/mixin/MixinBlockEntityRendererDispatcher.java b/src/main/java/eu/midnightdust/betterbeds/mixin/MixinBlockEntityRendererDispatcher.java old mode 100644 new mode 100755 index 95b3767..e34cd78 --- a/src/main/java/eu/midnightdust/betterbeds/mixin/MixinBlockEntityRendererDispatcher.java +++ b/src/main/java/eu/midnightdust/betterbeds/mixin/MixinBlockEntityRendererDispatcher.java @@ -1,30 +1,25 @@ -package eu.midnightdust.betterbeds.mixin; - -import com.google.common.collect.Maps; -import net.minecraft.block.BedBlock; -import net.minecraft.block.BlockRenderType; -import net.minecraft.block.BlockState; -import net.minecraft.block.HorizontalFacingBlock; -import net.minecraft.block.entity.BlockEntityType; -import net.minecraft.client.render.block.entity.BlockEntityRenderDispatcher; -import net.minecraft.client.render.block.entity.BlockEntityRenderer; -import net.minecraft.util.math.Direction; -import org.spongepowered.asm.mixin.Final; -import org.spongepowered.asm.mixin.Mixin; -import org.spongepowered.asm.mixin.Overwrite; -import org.spongepowered.asm.mixin.Shadow; -import org.spongepowered.asm.mixin.injection.At; -import org.spongepowered.asm.mixin.injection.Inject; -import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; - -import java.util.Map; - -@Mixin(BlockEntityRenderDispatcher.class) -public abstract class MixinBlockEntityRendererDispatcher { - @Shadow @Final private Map, BlockEntityRenderer> renderers; - - @Inject(method = "()V", at = @At("TAIL")) - private void init(CallbackInfo info) { - renderers.remove(BlockEntityType.BED); - } -} +package eu.midnightdust.betterbeds.mixin; + +import net.minecraft.block.entity.BlockEntity; +import net.minecraft.block.entity.BlockEntityType; +import net.minecraft.client.render.block.entity.BlockEntityRendererFactories; +import net.minecraft.client.render.block.entity.BlockEntityRendererFactory; +import org.spongepowered.asm.mixin.Final; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Shadow; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +import java.util.Map; + +@Mixin(BlockEntityRendererFactories.class) +public abstract class MixinBlockEntityRendererDispatcher { + + @Shadow @Final private static Map, BlockEntityRendererFactory> FACTORIES; + + @Inject(method = "register", at = @At("TAIL")) + private static void bb$onRegister(BlockEntityType type, BlockEntityRendererFactory factory, CallbackInfo ci) { + FACTORIES.remove(BlockEntityType.BED); + } +} diff --git a/src/main/resources/assets/betterbeds/icon.png b/src/main/resources/assets/betterbeds/icon.png old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/black_bed.json b/src/main/resources/assets/minecraft/blockstates/black_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/blue_bed.json b/src/main/resources/assets/minecraft/blockstates/blue_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/brown_bed.json b/src/main/resources/assets/minecraft/blockstates/brown_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/cyan_bed.json b/src/main/resources/assets/minecraft/blockstates/cyan_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/gray_bed.json b/src/main/resources/assets/minecraft/blockstates/gray_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/green_bed.json b/src/main/resources/assets/minecraft/blockstates/green_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/light_blue_bed.json b/src/main/resources/assets/minecraft/blockstates/light_blue_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/light_gray_bed.json b/src/main/resources/assets/minecraft/blockstates/light_gray_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/lime_bed.json b/src/main/resources/assets/minecraft/blockstates/lime_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/magenta_bed.json b/src/main/resources/assets/minecraft/blockstates/magenta_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/orange_bed.json b/src/main/resources/assets/minecraft/blockstates/orange_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/pink_bed.json b/src/main/resources/assets/minecraft/blockstates/pink_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/purple_bed.json b/src/main/resources/assets/minecraft/blockstates/purple_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/red_bed.json b/src/main/resources/assets/minecraft/blockstates/red_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/white_bed.json b/src/main/resources/assets/minecraft/blockstates/white_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/blockstates/yellow_bed.json b/src/main/resources/assets/minecraft/blockstates/yellow_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/bed_foot.json b/src/main/resources/assets/minecraft/models/block/bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/bed_head.json b/src/main/resources/assets/minecraft/models/block/bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/black_bed_foot.json b/src/main/resources/assets/minecraft/models/block/black_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/black_bed_head.json b/src/main/resources/assets/minecraft/models/block/black_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/blue_bed_foot.json b/src/main/resources/assets/minecraft/models/block/blue_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/blue_bed_head.json b/src/main/resources/assets/minecraft/models/block/blue_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/brown_bed_foot.json b/src/main/resources/assets/minecraft/models/block/brown_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/brown_bed_head.json b/src/main/resources/assets/minecraft/models/block/brown_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/cyan_bed_foot.json b/src/main/resources/assets/minecraft/models/block/cyan_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/cyan_bed_head.json b/src/main/resources/assets/minecraft/models/block/cyan_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/gray_bed_foot.json b/src/main/resources/assets/minecraft/models/block/gray_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/gray_bed_head.json b/src/main/resources/assets/minecraft/models/block/gray_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/green_bed_foot.json b/src/main/resources/assets/minecraft/models/block/green_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/green_bed_head.json b/src/main/resources/assets/minecraft/models/block/green_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/light_blue_bed_foot.json b/src/main/resources/assets/minecraft/models/block/light_blue_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/light_blue_bed_head.json b/src/main/resources/assets/minecraft/models/block/light_blue_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/light_gray_bed_foot.json b/src/main/resources/assets/minecraft/models/block/light_gray_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/light_gray_bed_head.json b/src/main/resources/assets/minecraft/models/block/light_gray_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/lime_bed_foot.json b/src/main/resources/assets/minecraft/models/block/lime_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/lime_bed_head.json b/src/main/resources/assets/minecraft/models/block/lime_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/magenta_bed_foot.json b/src/main/resources/assets/minecraft/models/block/magenta_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/magenta_bed_head.json b/src/main/resources/assets/minecraft/models/block/magenta_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/orange_bed_foot.json b/src/main/resources/assets/minecraft/models/block/orange_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/orange_bed_head.json b/src/main/resources/assets/minecraft/models/block/orange_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/pink_bed_foot.json b/src/main/resources/assets/minecraft/models/block/pink_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/pink_bed_head.json b/src/main/resources/assets/minecraft/models/block/pink_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/purple_bed_foot.json b/src/main/resources/assets/minecraft/models/block/purple_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/purple_bed_head.json b/src/main/resources/assets/minecraft/models/block/purple_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/red_bed_foot.json b/src/main/resources/assets/minecraft/models/block/red_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/red_bed_head.json b/src/main/resources/assets/minecraft/models/block/red_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/white_bed_foot.json b/src/main/resources/assets/minecraft/models/block/white_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/white_bed_head.json b/src/main/resources/assets/minecraft/models/block/white_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/yellow_bed_foot.json b/src/main/resources/assets/minecraft/models/block/yellow_bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/block/yellow_bed_head.json b/src/main/resources/assets/minecraft/models/block/yellow_bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/bed.json b/src/main/resources/assets/minecraft/models/item/bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/black_bed.json b/src/main/resources/assets/minecraft/models/item/black_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/blue_bed.json b/src/main/resources/assets/minecraft/models/item/blue_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/brown_bed.json b/src/main/resources/assets/minecraft/models/item/brown_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/cyan_bed.json b/src/main/resources/assets/minecraft/models/item/cyan_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/gray_bed.json b/src/main/resources/assets/minecraft/models/item/gray_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/green_bed.json b/src/main/resources/assets/minecraft/models/item/green_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/light_blue_bed.json b/src/main/resources/assets/minecraft/models/item/light_blue_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/light_gray_bed.json b/src/main/resources/assets/minecraft/models/item/light_gray_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/lime_bed.json b/src/main/resources/assets/minecraft/models/item/lime_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/magenta_bed.json b/src/main/resources/assets/minecraft/models/item/magenta_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/orange_bed.json b/src/main/resources/assets/minecraft/models/item/orange_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/pink_bed.json b/src/main/resources/assets/minecraft/models/item/pink_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/purple_bed.json b/src/main/resources/assets/minecraft/models/item/purple_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/red_bed.json b/src/main/resources/assets/minecraft/models/item/red_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/white_bed.json b/src/main/resources/assets/minecraft/models/item/white_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/assets/minecraft/models/item/yellow_bed.json b/src/main/resources/assets/minecraft/models/item/yellow_bed.json old mode 100644 new mode 100755 diff --git a/src/main/resources/betterbeds.mixins.json b/src/main/resources/betterbeds.mixins.json old mode 100644 new mode 100755 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json old mode 100644 new mode 100755 diff --git a/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_foot.json b/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_foot.json old mode 100644 new mode 100755 diff --git a/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/resourcepacks/connectedbeds/license.txt b/src/main/resources/resourcepacks/connectedbeds/license.txt old mode 100644 new mode 100755 index 6968976..7ee5eac --- a/src/main/resources/resourcepacks/connectedbeds/license.txt +++ b/src/main/resources/resourcepacks/connectedbeds/license.txt @@ -1,10 +1,10 @@ -The MIT License -Copyright © 2019 Motschen - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +The MIT License +Copyright © 2019 Motschen + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbeds/pack.mcmeta b/src/main/resources/resourcepacks/connectedbeds/pack.mcmeta old mode 100644 new mode 100755 index 9252491..7cf7ad3 --- a/src/main/resources/resourcepacks/connectedbeds/pack.mcmeta +++ b/src/main/resources/resourcepacks/connectedbeds/pack.mcmeta @@ -1,6 +1,6 @@ -{ - "pack": { - "pack_format": 6, - "description": "§2Allows beds to connect <3" - } -} +{ + "pack": { + "pack_format": 7, + "description": "§2Allows beds to connect <3" + } +} diff --git a/src/main/resources/resourcepacks/connectedbeds/pack.png b/src/main/resources/resourcepacks/connectedbeds/pack.png old mode 100644 new mode 100755 diff --git a/src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json old mode 100644 new mode 100755 diff --git a/src/main/resources/resourcepacks/fancybeds/license.txt b/src/main/resources/resourcepacks/fancybeds/license.txt old mode 100644 new mode 100755 index 6968976..7ee5eac --- a/src/main/resources/resourcepacks/fancybeds/license.txt +++ b/src/main/resources/resourcepacks/fancybeds/license.txt @@ -1,10 +1,10 @@ -The MIT License -Copyright © 2019 Motschen - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +The MIT License +Copyright © 2019 Motschen + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybeds/pack.mcmeta b/src/main/resources/resourcepacks/fancybeds/pack.mcmeta old mode 100644 new mode 100755 index 3a8d1b1..ac0e01d --- a/src/main/resources/resourcepacks/fancybeds/pack.mcmeta +++ b/src/main/resources/resourcepacks/fancybeds/pack.mcmeta @@ -1,6 +1,6 @@ -{ - "pack": { - "pack_format": 6, - "description": "§2Makes beds look more fancy" - } -} +{ + "pack": { + "pack_format": 7, + "description": "§2Makes beds look more fancy" + } +} diff --git a/src/main/resources/resourcepacks/fancybeds/pack.png b/src/main/resources/resourcepacks/fancybeds/pack.png old mode 100644 new mode 100755