diff --git a/CHANGELOG.md b/CHANGELOG.md index 296ece98..062b7f9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelogs This document is based on Keep a Changelog 1.0.0 -## 0.3.0-beta (?) +## 0.3.0-beta (2022-01-21) ### Added - Particle flow's containers can now be rotated. diff --git a/js/index.js b/js/index.js index d84eaa46..5ffa1c73 100644 --- a/js/index.js +++ b/js/index.js @@ -21,7 +21,7 @@ const {ipcRenderer} = require("electron"); /** @type {String} current build version*/ const software_version = "0.3.0"; /** @type {String} current build type */ -const software_status = "Indev"; +const software_status = "Beta"; let working_dir; //working directory for user, temp, logs... let root_dir; //root of the app (where main.js is located, and html/css folders) let os; //operating system diff --git a/main.js b/main.js index d2f8d886..4d34d024 100644 --- a/main.js +++ b/main.js @@ -38,7 +38,7 @@ const colors = require("colors"); //software version const software_version = require("./package.json").version; -const software_status = "Indev"; +const software_status = ""; //fluent-ffmpeg dependencies const ffmpeg = require("fluent-ffmpeg"); @@ -148,7 +148,7 @@ function createWindow () { win.loadFile("index.html"); // Open the DevTools. - win.webContents.openDevTools(); + //win.webContents.openDevTools(); //Hide menu bar win.setMenuBarVisibility(false);