Initial 0.8 branch commit

This commit is contained in:
Lucas Dower 2023-01-23 23:11:44 +00:00
parent 22b0656fd4
commit 39693c2a42
No known key found for this signature in database
GPG Key ID: B3EE6B8499593605
3 changed files with 5 additions and 5 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@ -40,8 +40,8 @@ export class AppConfig {
public readonly FRESNEL_MIX: number; public readonly FRESNEL_MIX: number;
private constructor() { private constructor() {
this.RELEASE_MODE = true; this.RELEASE_MODE = false;
this.RELEASE_VERSION = '0.7.0r'; this.RELEASE_VERSION = '0.8.0d';
this.VOXEL_BUFFER_CHUNK_SIZE = 5_000; this.VOXEL_BUFFER_CHUNK_SIZE = 5_000;
const configFile = fs.readFileSync(PathUtil.join(AppPaths.Get.resources, 'config.json'), 'utf8'); const configFile = fs.readFileSync(PathUtil.join(AppPaths.Get.resources, 'config.json'), 'utf8');