Versioning changes for 0.7.2 update

This commit is contained in:
Lucas Dower 2023-02-10 21:16:27 +00:00
parent ba161ad886
commit 127d836f17
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.1",
"version": "0.7.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "objtoschematic",
"version": "0.7.1",
"version": "0.7.2",
"license": "BSD-3-Clause",
"dependencies": {
"bvh-tree": "^1.0.1",

View File

@ -1,7 +1,7 @@
{
"name": "objtoschematic",
"private": true,
"version": "0.7.1",
"version": "0.7.2",
"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.1r';
this.RELEASE_VERSION = '0.7.2d';
this.VOXEL_BUFFER_CHUNK_SIZE = 5_000;
const configFile = fs.readFileSync(PathUtil.join(AppPaths.Get.resources, 'config.json'), 'utf8');