Skip to content

Commit

Permalink
prepare 0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Picorims committed Jan 21, 2022
1 parent 5eccb90 commit 8eea487
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 8eea487

Please sign in to comment.