Version update for 0.7.1 hotfix release

This commit is contained in:
Lucas Dower 2023-02-10 21:02:25 +00:00
parent 24c688e23a
commit 2135d2fd1f
No known key found for this signature in database
GPG Key ID: B3EE6B8499593605
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "objtoschematic",
"version": "0.7.0",
"version": "0.7.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "objtoschematic",
"version": "0.7.0",
"version": "0.7.1",
"license": "BSD-3-Clause",
"dependencies": {
"bvh-tree": "^1.0.1",

View File

@ -1,7 +1,7 @@
{
"name": "objtoschematic",
"private": true,
"version": "0.7.0",
"version": "0.7.1",
"description": "A tool to convert .obj files into voxels and then into Minecraft Schematic files",
"main": "./dist/src/main.js",
"engines": {

View File

@ -41,7 +41,7 @@ export class AppConfig {
private constructor() {
this.RELEASE_MODE = true;
this.RELEASE_VERSION = '0.7.0r';
this.RELEASE_VERSION = '0.7.1r';
this.VOXEL_BUFFER_CHUNK_SIZE = 5_000;
const configFile = fs.readFileSync(PathUtil.join(AppPaths.Get.resources, 'config.json'), 'utf8');