Skip to content

Commit

Permalink
v4.4.0-beta.3 [ci-build]
Browse files Browse the repository at this point in the history
Fix issue in box UV cube size validator
  • Loading branch information
JannisX11 committed Sep 10, 2022
1 parent 2acb2da commit 09f7f55
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions css/setup.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
a:-webkit-any-link {
color: inherit;
text-decoration: underline;
cursor: pointer;
}
a:-webkit-any-link:hover {
color: var(--color-light);
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<script>
if (typeof module === 'object') {window.module = module; module = undefined;}//jQuery Fix
const isApp = typeof require !== 'undefined';
const appVersion = '4.4.0-beta.2';
const appVersion = '4.4.0-beta.3';


if (localStorage.getItem('theme')) {
Expand Down
2 changes: 1 addition & 1 deletion js/validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ new ValidatorCheck('box_uv', {
})
}
this.warn({
message: `The cube "${cube.name}" has ${invalid_size_axes*2} faces that are smaller than one unit along an axis, which may render incorrectly in Box UV. Increase the size of the cube to at least 1 or switch to Per-face UV to fix this.`,
message: `The cube "${cube.name}" has ${invalid_size_axes.length*2} faces that are smaller than one unit along an axis, which may render incorrectly in Box UV. Increase the size of the cube to at least 1 or switch to Per-face UV and resize the UV to fix this.`,
buttons
})
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Blockbench",
"description": "Low-poly modeling and animation software",
"version": "4.4.0-beta.2",
"version": "4.4.0-beta.3",
"license": "GPL-3.0-or-later",
"author": {
"name": "JannisX11",
Expand Down

0 comments on commit 09f7f55

Please sign in to comment.