Skip to content

Commit 5bd47af

Browse files
committed
1.21.11
1 parent 9835281 commit 5bd47af

4 files changed

Lines changed: 20 additions & 20 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
// see https://fabricmc.net/develop/ for new versions
3-
id 'fabric-loom' version '1.11-SNAPSHOT' apply false
3+
id 'fabric-loom' version '1.13-SNAPSHOT' apply false
44
// see https://projects.neoforged.net/neoforged/moddevgradle for new versions
55
id 'net.neoforged.moddev' version '2.0.112' apply false
66
}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.lukasabbe.bookshelfinspector;
22

3-
import net.minecraft.resources.ResourceLocation;
3+
import net.minecraft.resources.Identifier;
44
import org.slf4j.Logger;
55
import org.slf4j.LoggerFactory;
66

@@ -9,9 +9,9 @@ public class Constants {
99
public static final String MOD_NAME = "Bookshelf Inspector";
1010
public static final Logger LOG = LoggerFactory.getLogger(MOD_NAME);
1111

12-
public static final ResourceLocation BOOK_SHELF_INVENTORY_REQUEST_PACKET_ID = ResourceLocation.fromNamespaceAndPath(MOD_ID,"book_shelf_inventory_request");
13-
public static final ResourceLocation BOOK_SHELF_INVENTORY_PACKET_ID = ResourceLocation.fromNamespaceAndPath(MOD_ID,"book_shelf_inventory");
14-
public static final ResourceLocation MOD_CHECK_PACKET_ID = ResourceLocation.fromNamespaceAndPath(MOD_ID,"mod_check");
15-
public static final ResourceLocation LECTERN_INVENTORY_REQUEST_PACKET_ID = ResourceLocation.fromNamespaceAndPath(MOD_ID, "lectern_inventory_request");
16-
public static final ResourceLocation SHELF_INVENTORY_REQUEST_PACKET_ID = ResourceLocation.fromNamespaceAndPath(MOD_ID,"shelf_inventory_request");
12+
public static final Identifier BOOK_SHELF_INVENTORY_REQUEST_PACKET_ID = Identifier.fromNamespaceAndPath(MOD_ID,"book_shelf_inventory_request");
13+
public static final Identifier BOOK_SHELF_INVENTORY_PACKET_ID = Identifier.fromNamespaceAndPath(MOD_ID,"book_shelf_inventory");
14+
public static final Identifier MOD_CHECK_PACKET_ID = Identifier.fromNamespaceAndPath(MOD_ID,"mod_check");
15+
public static final Identifier LECTERN_INVENTORY_REQUEST_PACKET_ID = Identifier.fromNamespaceAndPath(MOD_ID, "lectern_inventory_request");
16+
public static final Identifier SHELF_INVENTORY_REQUEST_PACKET_ID = Identifier.fromNamespaceAndPath(MOD_ID,"shelf_inventory_request");
1717
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package com.lukasabbe.bookshelfinspector.data;
22

33
import net.minecraft.core.registries.Registries;
4-
import net.minecraft.resources.ResourceLocation;
4+
import net.minecraft.resources.Identifier;
55
import net.minecraft.tags.TagKey;
66
import net.minecraft.world.level.block.Block;
77

88
public class Tags {
9-
public static final TagKey<Block> CHISELED_BOOKSHELVES = TagKey.create(Registries.BLOCK, ResourceLocation.fromNamespaceAndPath("c", "chiseled_bookshelves"));
10-
public static final TagKey<Block> LECTERNS = TagKey.create(Registries.BLOCK, ResourceLocation.fromNamespaceAndPath("c", "lectern"));
11-
public static final TagKey<Block> SHELVES = TagKey.create(Registries.BLOCK, ResourceLocation.fromNamespaceAndPath("c", "shelves"));
9+
public static final TagKey<Block> CHISELED_BOOKSHELVES = TagKey.create(Registries.BLOCK, Identifier.fromNamespaceAndPath("c", "chiseled_bookshelves"));
10+
public static final TagKey<Block> LECTERNS = TagKey.create(Registries.BLOCK, Identifier.fromNamespaceAndPath("c", "lectern"));
11+
public static final TagKey<Block> SHELVES = TagKey.create(Registries.BLOCK, Identifier.fromNamespaceAndPath("c", "shelves"));
1212
}

gradle.properties

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
version=2.2+1.21.10
1+
version=2.2+1.21.11
22

33
# release, beta & alpha
4-
versionType=release
4+
versionType=beta
55
group=com.lukasabbe.bookshelfinspector
66
java_version=21
77

88
# Common
9-
minecraft_version=1.21.10
9+
minecraft_version=1.21.11-pre1
1010
mod_name=BookshelfInspector
1111
mod_author=Lukasabbe
1212
mod_id=bookshelfinspector
@@ -16,14 +16,14 @@ description=Inspect any book in a chiseled bookshelf.
1616
minecraft_version_range=[1.21.10, 1.22)
1717

1818
# https://projects.neoforged.net/neoforged/neoform
19-
neo_form_version=1.21.10-20251007.142004
19+
neo_form_version=1.21.11-pre1-20251119.112005
2020
# The version of ParchmentMC that is used, see https://parchmentmc.org/docs/getting-started#choose-a-version for new versions
21-
parchment_minecraft=1.21.9
22-
parchment_version=2025.10.05
21+
parchment_minecraft=1.21.10
22+
parchment_version=2025.10.12
2323

2424
# Fabric
25-
fabric_version=0.134.1+1.21.10
26-
fabric_loader_version=0.17.2
25+
fabric_version=0.139.1+1.21.11
26+
fabric_loader_version=0.18.1
2727

2828
# NeoForge
2929
neoforge_version=21.10.1-beta
@@ -36,4 +36,4 @@ org.gradle.daemon=false
3636
# Global dep
3737
YAML_snake=2.5
3838
cloth_config=20.0.148
39-
mod_menu=16.0.0-rc.1
39+
mod_menu=17.0.0-alpha.1

0 commit comments

Comments
 (0)