Skip to content
This repository was archived by the owner on Oct 22, 2021. It is now read-only.

Commit 7fb0f96

Browse files
committed
Release 0.7.0
1 parent 7bf040f commit 7fb0f96

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "edex-ui",
33
"productName": "eDEX-UI",
4-
"version": "0.6.0",
4+
"version": "0.7.0",
55
"description": "A science fiction desktop running everywhere. Awesome.",
66
"keywords": [
77
"desktop",

src/_boot.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ const Terminal = require("./classes/terminal.class.js").Terminal;
1616
var win, tty;
1717
const settingsFile = path.join(electron.app.getPath("userData"), "settings.json");
1818
const themesDir = path.join(electron.app.getPath("userData"), "themes");
19-
const inner_themesDir = path.join(__dirname, "assets/themes");
19+
const innerThemesDir = path.join(__dirname, "assets/themes");
2020
const kblayoutsDir = path.join(electron.app.getPath("userData"), "keyboards");
21-
const inner_kblayoutsDir = path.join(__dirname, "assets/kb_layouts");
21+
const innerKblayoutsDir = path.join(__dirname, "assets/kb_layouts");
2222

2323
// Create default settings file
2424
if (!fs.existsSync(settingsFile)) {
@@ -36,16 +36,16 @@ try {
3636
} catch(e) {
3737
// Folder already exists
3838
}
39-
fs.readdirSync(inner_themesDir).forEach((e) => {
40-
fs.writeFileSync(path.join(themesDir, e), fs.readFileSync(path.join(inner_themesDir, e), {encoding:"utf-8"}))
39+
fs.readdirSync(innerThemesDir).forEach((e) => {
40+
fs.writeFileSync(path.join(themesDir, e), fs.readFileSync(path.join(innerThemesDir, e), {encoding:"utf-8"}));
4141
});
4242
try {
4343
fs.mkdirSync(kblayoutsDir);
4444
} catch(e) {
4545
// Folder already exists
4646
}
47-
fs.readdirSync(inner_kblayoutsDir).forEach((e) => {
48-
fs.writeFileSync(path.join(kblayoutsDir, e), fs.readFileSync(path.join(inner_kblayoutsDir, e), {encoding:"utf-8"}))
47+
fs.readdirSync(innerKblayoutsDir).forEach((e) => {
48+
fs.writeFileSync(path.join(kblayoutsDir, e), fs.readFileSync(path.join(innerKblayoutsDir, e), {encoding:"utf-8"}));
4949
});
5050

5151
app.on('ready', () => {

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "edex-ui",
33
"productName": "eDEX-UI",
4-
"version": "0.6.0",
4+
"version": "0.7.0",
55
"description": "A science fiction desktop running everywhere. Awesome.",
66
"keywords": [
77
"desktop",

0 commit comments

Comments
 (0)