From 2b9413a588dd691e275c5dd0de9eb665ab8733d0 Mon Sep 17 00:00:00 2001 From: Mattk70 <61826357+Mattk70@users.noreply.github.com> Date: Sun, 15 Oct 2023 15:35:46 +0100 Subject: [PATCH 1/4] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 3d5ca0af..81a2a52e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -This repo is currently under development. - # Chirpity-Electron Electron app for sound file analysis with Chirpity. From 3c74e159dad72dfdbd3b5248431617c0dd8973a2 Mon Sep 17 00:00:00 2001 From: Mattk70 <61826357+Mattk70@users.noreply.github.com> Date: Sun, 15 Oct 2023 15:38:52 +0100 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81a2a52e..fb1a104f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Chirpity-Electron -Electron app for sound file analysis with Chirpity. +Electron app to identify the calls of nocturnal migrants from audio files. Author: Matthew Kirkland From 1d2ce56a51cd65c1e383a2c3a3bd10b7392ceeed Mon Sep 17 00:00:00 2001 From: Mattk70 <61826357+Mattk70@users.noreply.github.com> Date: Sun, 15 Oct 2023 15:42:52 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 41 +++-------------------------------------- 1 file changed, 3 insertions(+), 38 deletions(-) diff --git a/README.md b/README.md index fb1a104f..c10f746a 100644 --- a/README.md +++ b/README.md @@ -36,50 +36,15 @@ Follow the prompt to setup ```package.json```. Now, we need to install electron with: ``` -npm install --save-dev electron +npm install --save-dev ``` -Chirpity requires Tensorflow.js which we install with: - -``` -npm install @tensorflow/tfjs -``` - -Install Bootstrap and its dependencies: - -``` -npm install bootstrap -npm install jquery -npm install popper -``` - -This app also needs an additional package that we have to install. - -``` -npm install colormap -``` - -In order to package the app for stand-alone applications, we need electron-packager: - -``` -npm install electron-packager --save-dev -``` - -We can now add the export script in the package.json: - -``` -"scripts": { - "start": "electron .", - "export": "electron-packager . --out packages --overwrite" - } -``` - -After that, we can export the app with: +After that, we can build a windows msi installer with: ``` npm run export ``` -The resulting application will be saved in the "packages" folder. +The resulting application will be saved in the "dist" folder. From 7e1e11ce02c83fe44447a30a1e87e5c15e30fd58 Mon Sep 17 00:00:00 2001 From: Mattk70 <61826357+Mattk70@users.noreply.github.com> Date: Sun, 15 Oct 2023 15:44:18 +0100 Subject: [PATCH 4/4] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index c10f746a..31f5bb77 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,7 @@ After that, we can initialize the source directory with: npm init ``` -Follow the prompt to setup ```package.json```. - -Now, we need to install electron with: +Now, we need to install project dependencoies with: ``` npm install --save-dev