From: riqo Date: Mon, 7 Dec 2020 21:46:56 +0000 (-0600) Subject: add record on input functionality X-Git-Tag: v0.9~131^2 X-Git-Url: https://andrewgundersen.net/repos?a=commitdiff_plain;h=22ebfcf2afcd931209a277a2a1edaced1acab279;p=mime-chat add record on input functionality --- diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..5df65d0 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,6 @@ +{ + "typeAcquisition": { + + "enable": true + } +} \ No newline at end of file diff --git a/package.json b/package.json index 41a8d77..2292dc9 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "crimata-messenger", + "name": "Crimata", "productName": "crimata-messenger", "description": "Cross-platform messenger application built with electron, vue3, and TS.", "version": "0.1.0", @@ -22,6 +22,7 @@ "dependencies": { "@types/animejs": "^3.1.2", "@types/bindings": "^1.3.0", + "@types/dom-mediacapture-record": "^1.0.7", "@types/uuid": "^8.3.0", "@types/ws": "^7.2.7", "animejs": "^3.2.0", diff --git a/src/background.ts b/src/background.ts index c7a5e33..53227e0 100644 --- a/src/background.ts +++ b/src/background.ts @@ -33,8 +33,8 @@ protocol.registerSchemesAsPrivileged([ function createWindow() { // Create the browser window. win = new BrowserWindow({ - width: 350, - height: 525, + width: 450, + height: 1025, resizable: true, webPreferences: { // Use pluginOptions.nodeIntegration, leave this alone @@ -49,7 +49,7 @@ function createWindow() { // Load the url of the dev server if in development mode win.loadURL(process.env.WEBPACK_DEV_SERVER_URL as string); // NOTE uncomment for dev tools on app launch - // if (!process.env.IS_TEST) win.webContents.openDevTools(); + if (!process.env.IS_TEST) win.webContents.openDevTools(); } else { createProtocol("app"); // Load the index.html when not in development diff --git a/src/components/UI/UIDetails/inputItem.vue b/src/components/UI/UIDetails/inputItem.vue index f8fbc64..f4e2f36 100644 --- a/src/components/UI/UIDetails/inputItem.vue +++ b/src/components/UI/UIDetails/inputItem.vue @@ -10,13 +10,45 @@