diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..3da3ee5 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +# MIT License + +Copyright (c) 2020 Ruidy Nemausat + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..d150ccb --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# Screen Recorder + +Desktop app to record your screen live. + +## Getting Started + +These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system. + +### Prerequisites + +This desktop app is built using [Electron](https://www.electronjs.org/) so you will need [Node.js®](https://nodejs.org/) installed. Follow the installation steps on the [official website](https://nodejs.org/en/download/). + +You will also need to install the [npm](https://www.npmjs.com/) package manager from the [official website](https://www.npmjs.com/get-npm). + +### Installing + +Clone this repository + +```bash +git clone https://github.com/rjNemo/screen_recorder.git +``` + +To compile run: + +```zsh +npm run make +``` + +## Built With + +- [Electron](https://www.electronjs.org/) - Build cross-platform desktop apps with JavaScript, HTML, and CSS +- [Node.js®](https://nodejs.org/) - JavaScript runtime built on Chrome's V8 JavaScript engine +- [ROME](https://rometools.github.io/rome/) - Used to generate RSS Feeds + +## Versioning + +We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/your/project/tags). + +## Authors + +- **Ruidy Nemausat** - _Initial work_ + +See also the list of [contributors](https://github.com/your/project/contributors) who participated in this project. + +## License + +This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details diff --git a/src/icon/icon.ico b/src/icon/icon.ico new file mode 100644 index 0000000..b4f2a1e Binary files /dev/null and b/src/icon/icon.ico differ diff --git a/src/icon/icon.png b/src/icon/icon.png new file mode 100644 index 0000000..7d3a1f0 Binary files /dev/null and b/src/icon/icon.png differ diff --git a/src/index.js b/src/index.js index bd37a5f..51ea84f 100644 --- a/src/index.js +++ b/src/index.js @@ -9,6 +9,7 @@ const createWindow = () => { const mainWindow = new BrowserWindow({ width: 800, height: 600, + icon: __dirname + "icon/icon.png", webPreferences: { nodeIntegration: true, },