diff --git a/.gitignore b/.gitignore index b28e6a4..64a3b6c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ /node_modules /dist - -out/ +/out diff --git a/README.md b/README.md index a672f0f..042bf04 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ - [ ] If already under the limit, the file won't be compressed - [ ] Merge all audio files into one track -## Dev +## Package the app for Windows ```bash npm install diff --git a/pages/index.html b/pages/index.html index 44ecf4d..d91ae22 100644 --- a/pages/index.html +++ b/pages/index.html @@ -2,19 +2,13 @@ - - Hello World! + Discord Video Sharing -

Hello World!

- Nous utilisons Node.js , Chromium - , et Electron - . - diff --git a/src/main.ts b/src/main.ts index 5c28dca..2cb61a6 100644 --- a/src/main.ts +++ b/src/main.ts @@ -14,9 +14,6 @@ const createWindow = () => { win.loadFile(path.join(path.resolve(__dirname, ".."), "pages", "index.html")); }; -// Fix crash on Windows -app.commandLine.appendSwitch("disable-gpu-sandbox"); - app.whenReady().then(() => { createWindow();