Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1f8f037
🐛 Fix translation keys being used when a language other than English …
SnaveSutit Nov 11, 2025
5fe6893
✨ Add support for 1.21.11 rotation freedom
SnaveSutit Nov 11, 2025
b5414f8
🩹 Fixed incorrect target version description
SnaveSutit Dec 18, 2025
5925a78
✨ Added back support for 1.21.0
SnaveSutit Dec 18, 2025
5118f37
🐛 Fix `as_locator` & `as_all_locators` executing as & at targeted loc…
SnaveSutit Dec 18, 2025
2553302
🐛 Fix animation loop mode `once` still looping
SnaveSutit Dec 18, 2025
8c2621a
✨ Add buttery smooth camera rotations to 1.21.4 and above.
SnaveSutit Dec 18, 2025
c12deb6
✨ Buttery Smooth rotation for rigs in MC 1.21.4 and above
SnaveSutit Dec 18, 2025
26e960f
✨ Remove node name type prefix in NBT
SnaveSutit Dec 18, 2025
1708e54
🐛 Fix function inputs consuming HTML tags
SnaveSutit Dec 18, 2025
8f309a6
fix(plugin-export): restore plugin mode and update JSON export schema
Meekiavelique Feb 22, 2026
1466f8a
fix(plugin-export): align plugin-mode JSON export with blueprint sche…
Meekiavelique Mar 17, 2026
5d6368f
✨ Improve error messages for `as_all_locators` and similar functions
SnaveSutit Mar 17, 2026
84c4bc7
🐛 Fix locators failing to tick, and display entities being left behind
SnaveSutit Mar 17, 2026
02832a8
🔖 v1.9.0-beta.2
SnaveSutit Mar 17, 2026
dc4c9f0
🔤 Improve translations
KoishemOfficial Mar 25, 2026
308a360
🔤 Translate AJ to Ukrainian
KoishemOfficial Mar 25, 2026
5f66528
fix(plugin-export): restore plugin mode and update JSON export schema
Meekiavelique Feb 22, 2026
134a8b0
fix(plugin-export): align plugin-mode JSON export with blueprint sche…
Meekiavelique Mar 17, 2026
5de426f
🔀 Merge #481: ✨ Restore plugin mode and update JSON export schema
SnaveSutit Mar 27, 2026
f13fdab
🔤 Improve translations
KoishemOfficial Mar 25, 2026
e9d3f76
🔤 Translate AJ to Ukrainian
KoishemOfficial Mar 25, 2026
c347ad2
🔀 Merge #484: ru, uk: add/update localization
SnaveSutit Mar 27, 2026
77f756c
🔖 v1.9.0-beta.3
SnaveSutit Mar 27, 2026
e5ecc9a
✨ Add bisect hosting banner to Blueprint settings.
SnaveSutit Mar 27, 2026
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"title": "Animated Java",
"icon": "icon.svg",
"description": "Effortlessly craft complex animations for Minecraft: Java Edition",
"version": "1.8.1",
"min_blockbench_version": "4.12.0",
"version": "1.9.0-beta.3",
"min_blockbench_version": "4.12.6",
"max_blockbench_version": "4.12.6",
"variant": "desktop",
"tags": [
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/blockbenchTypeMods.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
declare global {
const fs: typeof import('fs')
}

declare module 'three' {
interface Object3D {
isVanillaItemModel?: boolean
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script lang="ts" context="module">
import BisectHostingBanner from '../assets/banners/bisect-hosting-promo-banner.png'
import HeartIcon from '../assets/heart.png'
import KoFiImage from '../assets/kofi_tag_white.webp'

Expand Down Expand Up @@ -48,7 +49,37 @@
</div>
{/if}

<div>
<div class="bisect-hosting-banner-container">
<a href="https://www.bisecthosting.com/animated-java">
<img class="bisect-hosting-banner" src={BisectHostingBanner} alt="" />
</a>
</div>
</div>

<style>
.bisect-hosting-banner-container {
position: absolute;
left: 0;
text-align: center;
margin-left: auto;
margin-right: auto;
right: 0;
width: 75%;
margin-top: 4px;
}
.bisect-hosting-banner {
width: 100%;
border-radius: 8px;
vertical-align: middle;
image-rendering: auto;
transition: transform 0.2s ease;
}
.bisect-hosting-banner:hover {
transform: scale(1.02);
transition: transform 0.2s ease;
}

i {
cursor: pointer;
height: fit-content;
Expand Down
Loading