Skip to content
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
17 changes: 16 additions & 1 deletion src/lib/editions/bedrock/minors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2249,5 +2249,20 @@ export const minors: Version[] = [
mainFeatures: [
{ text: "Small Changes and Bug Fixes" }
]
},

{
subtitle: "26.0",
type: "minor",
date: "2026-02-10",
funFact: "Did you know? This is the first version of the game to use a two-digit year in its versioning system, marking a new era for Minecraft updates.",
learnMore: "@Bedrock_Edition_26.0",
mainFeatures: [
{ text: "Small Changes and Bug Fixes" },
{ text: "Experimental features for The First Drop 2026" }
],
minorFeatures: [
{ text: "Clicking with a Spawn Egg on an animal spawns a baby" }
]
}
] as const;
] as const;
22 changes: 6 additions & 16 deletions src/lib/editions/bedrock/upcomings.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,6 @@
import type { NaiveVersion } from "..";

export const upcomings: NaiveVersion[] = [
{
subtitle: "26.0",
type: "minor",
possibleDate: "Someday February",
funFact: "Did you know? This is the first version of the game to use a two-digit year in its versioning system, marking a new era for Minecraft updates.",
learnMore: "@Bedrock_Edition_26.0",
mainFeatures: [
{ text: "Small Changes and Bug Fixes" },
{ text: "Subtitles" },
{ text: "Experimental features for The First Drop 2026" }
],
minorFeatures: [
{ text: "Clicking with a Spawn Egg on an animal spawns a baby" }
]
},
{
title: "First Drop 2026",
subtitle: "26.10",
Expand All @@ -24,8 +9,13 @@ export const upcomings: NaiveVersion[] = [
icon: "/bedrock/version_26_1.png",
learnMore: "@First_Drop_2026",
mainFeatures: [
{ text: "Unique new models for baby animals" },
{ text: "Unique new models for baby mobs and rabbit" },
{ text: "Name Tags are now craftable" },
{ text: "Golden dandelion to pause the growth of baby animals." }
],
minorFeatures: [
{ text: "Trumpet instrument in note block with copper blocks" },
{ text: "New sound variants for some animals" }
]
}
] as const;
7 changes: 6 additions & 1 deletion src/lib/editions/java/upcomings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ export const upcomings: NaiveVersion[] = [
funFact: "Did you know? This is the first version of the game to use a two-digit year in its versioning system, marking a new era for Minecraft updates.",
learnMore: "@First_Drop_2026",
mainFeatures: [
{ text: "Unique new models for baby animals" },
{ text: "Unique new models for baby mobs and rabbit" },
{ text: "Name Tags are now craftable" },
{ text: "Golden dandelion to pause the growth of baby animals." },
],
minorFeatures: [
{ text: "Trumpet instrument in note block with copper blocks" },
{ text: "New sound variants for some animals" }
]
},
{
Expand Down