Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
7b08802
🐛 Fix rotation validation checking for incorrect MC version
SnaveSutit Oct 13, 2025
b70623a
🐛 Fix models converted to Blueprints becoming unsavable
SnaveSutit Oct 13, 2025
4a67ccf
🐛 Fix loading blueprints with variants crashing
SnaveSutit Oct 13, 2025
67e7f53
🐛 Fix deleting text displays throwing an error
SnaveSutit Oct 13, 2025
ab3dcc6
✨ Improve block display block input and undo history
SnaveSutit Oct 14, 2025
0ab4199
✨ Improve item display item input and undo history
SnaveSutit Oct 14, 2025
502a2e7
🩹 Remove element panel flicker when transforming text displays
SnaveSutit Oct 14, 2025
7848599
✨ Replace unique Node Config with global Display Entity Config
SnaveSutit Oct 14, 2025
ea233a6
✨ Improve dialog item reactivity
SnaveSutit Oct 14, 2025
4c8792c
🐛 Fix outliner elements inheriting the same property list
SnaveSutit Oct 14, 2025
eea5848
✨ Improve text display panel undo system and reactivity
SnaveSutit Oct 14, 2025
5bad9f0
✨ Improve render box preview reactivity
SnaveSutit Oct 14, 2025
0bdb7f2
✨ Add support to blueprint dfu for config changes
SnaveSutit Oct 14, 2025
5032016
🩹 Fix global/root/on_load executing before #global/on_load
SnaveSutit Oct 14, 2025
82d49f6
✨ Sync animation changes with static
SnaveSutit Oct 14, 2025
70d9ce8
✨ Sync and test 1.20.5
SnaveSutit Oct 14, 2025
371aa47
✨ Sync and test 1.21.2
SnaveSutit Oct 14, 2025
4b7b3dc
✨ Sync and test 1.21.4
SnaveSutit Oct 14, 2025
9e113a0
✨ Sync and test 1.21.5
SnaveSutit Oct 14, 2025
6bc8696
🔖 v1.8.0-beta.2
SnaveSutit Oct 14, 2025
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "Animated Java",
"icon": "icon.svg",
"description": "Effortlessly craft complex animations for Minecraft: Java Edition",
"version": "1.8.0-beta.1",
"version": "1.8.0-beta.2",
"min_blockbench_version": "4.12.0",
"max_blockbench_version": "4.12.6",
"variant": "desktop",
Expand Down
329 changes: 0 additions & 329 deletions src/components/boneConfigDialog.svelte

This file was deleted.

9 changes: 6 additions & 3 deletions src/components/customCodeJar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

export let value: string
export let placeholder: string | undefined = undefined
export let style: string | undefined = undefined
export let syntax: string | undefined = undefined

let codeJarElement: HTMLPreElement | undefined
Expand All @@ -26,12 +27,13 @@
}
}

const forceNoWrap = () => {
const forceNoWrap = (_?: HTMLElement) => {
if (!codeJarElement) return
codeJarElement.style.overflowWrap = 'unset'
codeJarElement.style.whiteSpace = 'pre'
}

$: codeJarElement && forceNoWrap()
$: value !== undefined && forceNoWrap()
</script>

Expand All @@ -45,7 +47,7 @@
preserveIdent
history
class={'language-' + (syntax ?? 'plaintext')}
style="
style={`
font-family: var(--font-code);
font-size: 14px;
padding: 3px 6px;
Expand All @@ -61,8 +63,9 @@
border: 1px solid var(--color-border);
border-radius: 0;
text-shadow: 0px 1px rgba(0, 0, 0, 0.3);
"
` + style}
/>
<div use:forceNoWrap />
{#if placeholder && (!value || value.length === 0)}
<div class="placeholder">{placeholder}</div>
{/if}
Expand Down
Loading