Skip to content

Commit 94f10b3

Browse files
committed
Cinematic Editor
1 parent 6ddaad3 commit 94f10b3

5 files changed

Lines changed: 19 additions & 18 deletions

File tree

public/assets/cinematic-editor.png

2.45 KB
Loading
-17.7 KB
Binary file not shown.

src/locale/locales/en.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"jaylyBot.title": "JaylyBot",
2121
"jaylyBot.description": "This is my own Discord bot. It mainly debug your Minecraft scripts, for both Stable and Preview version of Minecraft.\n> \"Probably one of the few bots I have seen on Discord that I feel is truly worth the effort and time.\" - Visual1mpact",
2222
"jaylyBot.linkInvite": "Invite the Bot",
23-
"scriptInterpreter.title": "Script Interpreter",
24-
"scriptInterpreter.description": "Script Interpreter is a debugging tool for Minecraft Scripting, that allows user to run JavaScript code in Minecraft Bedrock for testing the API features.\n> \"Woah this really helps a lot! Like a LOT!\" - BlueIcezen",
25-
"scriptInterpreter.linkDownload": "Download Script Interpreter",
23+
"cinematicEditor.title": "Cinematic Editor",
24+
"cinematicEditor.description": "A tool to control your camera and design cinematic scenes within Minecraft.",
25+
"cinematicEditor.getStarted": "Get Started (Documentation)",
2626
"structureConverter.title": "Structure Converter",
2727
"structureConverter.description": "A tool to convert Minecraft structures from Java (.nbt) to Bedrock (.mcstructure).",
2828
"structureConverter.linkDownload": "Download from GitHub"

src/locale/locales/zh.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"jaylyBot.title": "JaylyBot 機器人",
2121
"jaylyBot.description": "這是我自己的 Discord 機器人。它主要用於調試 Minecraft 腳本,支援 Minecraft 穩定版和預覽版。 \n> “這可能是我在 Discord 上見過的為數不多的真正值得投入時間和精力的機器人之一。” - Visual1mpact",
2222
"jaylyBot.linkInvite": "邀請機器人",
23-
"scriptInterpreter.title": "腳本直譯器",
24-
"scriptInterpreter.description": "腳本直譯器是一個用於調試 Minecraft 腳本的工具,允許使用者在 Minecraft 基岩版中執行 JavaScript 程式碼來測試 API 功能。 \n> “哇,這真的太有用了!真的非常有用!” - BlueIcezen",
25-
"scriptInterpreter.linkDownload": "下載腳本直譯器",
23+
"cinematicEditor.title": "電影剪輯模組",
24+
"cinematicEditor.description": "一款用於控制相機並在 Minecraft 中設計電影化場景的工具。",
25+
"cinematicEditor.getStarted": "入門指南(文件)",
2626
"structureConverter.title": "結構轉換器",
2727
"structureConverter.description": "一個將 Minecraft 結構從 Java 版 (.nbt) 轉換為基岩版 (.mcstructure) 的工具。",
2828
"structureConverter.linkDownload": "從 GitHub 下載"

src/screens/index.tsx

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ function CurrentProjects({ t }: TranslateProps): JSX.Element {
6060
description: t("scriptApiExamples.description"),
6161
links: [{ url: "https://github.com/JaylyDev/ScriptAPI", text: "GitHub" }],
6262
},
63-
{
64-
title: t("scriptApiDocs.title"),
65-
description: t("scriptApiDocs.description"),
66-
links: [
67-
{ url: "/scriptapi-docs/", text: t("scriptApiDocs.linkHomepage") },
68-
{ url: "/scriptapi-docs/latest/", text: t("scriptApiDocs.linkStableDocs") },
69-
],
70-
},
63+
// {
64+
// title: t("scriptApiDocs.title"),
65+
// description: t("scriptApiDocs.description"),
66+
// links: [
67+
// { url: "/scriptapi-docs/", text: t("scriptApiDocs.linkHomepage") },
68+
// { url: "/scriptapi-docs/latest/", text: t("scriptApiDocs.linkStableDocs") },
69+
// ],
70+
// },
7171
{
7272
title: t("jaylyBot.title"),
7373
description: t("jaylyBot.description"),
@@ -79,10 +79,11 @@ function CurrentProjects({ t }: TranslateProps): JSX.Element {
7979
],
8080
},
8181
{
82-
title: t("scriptInterpreter.title"),
83-
description: t("scriptInterpreter.description"),
84-
links: [{ url: "/posts/script-interpreter/", text: t("scriptInterpreter.linkDownload") }],
85-
image: { src: "/assets/script-interpreter.png", alt: t("scriptInterpreter.title") },
82+
title: t("cinematicEditor.title"),
83+
description: t("cinematicEditor.description"),
84+
links: [{ url: "/posts/cinematic-editor/", text: t("cinematicEditor.getStarted") }],
85+
image: { src: "/assets/cinematic-editor.png", alt: t("cinematicEditor.title") },
86+
media: "/assets/posts/cinematic-editor/thumbnail-2025-v2-preview-mcpedl.png",
8687
},
8788
{
8889
title: t("structureConverter.title"),

0 commit comments

Comments
 (0)