Skip to content

Commit f6ed15f

Browse files
authored
🔀 Merge #485: 🔖 v1.9.0
2 parents a507bd2 + e5ecc9a commit f6ed15f

47 files changed

Lines changed: 5630 additions & 676 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"title": "Animated Java",
55
"icon": "icon.svg",
66
"description": "Effortlessly craft complex animations for Minecraft: Java Edition",
7-
"version": "1.8.1",
8-
"min_blockbench_version": "4.12.0",
7+
"version": "1.9.0-beta.3",
8+
"min_blockbench_version": "4.12.6",
99
"max_blockbench_version": "4.12.6",
1010
"variant": "desktop",
1111
"tags": [
153 KB
Loading

src/blockbenchTypeMods.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
declare global {
2+
const fs: typeof import('fs')
3+
}
4+
15
declare module 'three' {
26
interface Object3D {
37
isVanillaItemModel?: boolean

src/components/kofiPopup.svelte renamed to src/components/blueprintSettingsAds.svelte

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<script lang="ts" context="module">
2+
import BisectHostingBanner from '../assets/banners/bisect-hosting-promo-banner.png'
23
import HeartIcon from '../assets/heart.png'
34
import KoFiImage from '../assets/kofi_tag_white.webp'
45
@@ -48,7 +49,37 @@
4849
</div>
4950
{/if}
5051

52+
<div>
53+
<div class="bisect-hosting-banner-container">
54+
<a href="https://www.bisecthosting.com/animated-java">
55+
<img class="bisect-hosting-banner" src={BisectHostingBanner} alt="" />
56+
</a>
57+
</div>
58+
</div>
59+
5160
<style>
61+
.bisect-hosting-banner-container {
62+
position: absolute;
63+
left: 0;
64+
text-align: center;
65+
margin-left: auto;
66+
margin-right: auto;
67+
right: 0;
68+
width: 75%;
69+
margin-top: 4px;
70+
}
71+
.bisect-hosting-banner {
72+
width: 100%;
73+
border-radius: 8px;
74+
vertical-align: middle;
75+
image-rendering: auto;
76+
transition: transform 0.2s ease;
77+
}
78+
.bisect-hosting-banner:hover {
79+
transform: scale(1.02);
80+
transition: transform 0.2s ease;
81+
}
82+
5283
i {
5384
cursor: pointer;
5485
height: fit-content;

0 commit comments

Comments
 (0)