Skip to content

Commit 1cacb31

Browse files
Added custom location for storing game assets. Added back importing.
1 parent 0131eb4 commit 1cacb31

File tree

13 files changed

+416
-136
lines changed

13 files changed

+416
-136
lines changed

TODO.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Feature Requests
2+
3+
- Launch Launcher from Editor
4+
- Launch Editor from Launcher
5+
- Editting Videos
6+
- Keyboard Shortcuts

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "An application for creating and managing clips for What the Dub and Rifftrax",
3-
"version": "2.0.0",
3+
"version": "2.1.0-beta",
44
"keywords": [
55
"electron",
66
"boilerplate",

release/app/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dub-editor-electron",
3-
"version": "2.0.0-beta",
3+
"version": "2.1.0-beta",
44
"description": "A dub editor for What the Dub and Rifftrax games by Wide Right Studios",
55
"license": "MIT",
66
"author": {

src/main/defaultConfig.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
type Config = {
2-
whatTheDubDirectory: string | null;
3-
rifftraxDirectory: string | null;
2+
whatTheDubDirectory: any;
3+
rifftraxDirectory: any;
4+
mediaDirectory: any;
45
editor: string | null;
56
isMac: boolean;
67
};
78

89
const defaultConfig: Config = {
910
whatTheDubDirectory: null,
1011
rifftraxDirectory: null,
12+
mediaDirectory: null,
1113
editor: "advanced",
1214
isMac: false,
1315
};

0 commit comments

Comments
 (0)