2020-02-23 11:21:31 +01:00
|
|
|
## Development building / running
|
|
|
|
|
|
|
|
This app is built using Electron. Make sure you have at least node v8 and yarn installed. The app uses ffmpeg from PATH when developing.
|
|
|
|
```
|
|
|
|
git clone https://github.com/mifi/lossless-cut.git
|
|
|
|
cd lossless-cut
|
|
|
|
npm install
|
|
|
|
```
|
|
|
|
|
|
|
|
### Running
|
|
|
|
In one terminal:
|
|
|
|
```
|
|
|
|
npm run watch
|
|
|
|
```
|
|
|
|
In another:
|
|
|
|
```
|
|
|
|
npm start
|
|
|
|
```
|
|
|
|
|
2018-05-22 23:32:54 +02:00
|
|
|
## Release
|
|
|
|
|
|
|
|
### Release new version
|
|
|
|
|
2020-02-10 08:24:30 +01:00
|
|
|
- Commit changed
|
|
|
|
- `npm version ...`
|
|
|
|
- `git push && git push --tags`
|
|
|
|
- Wait for build and draft in Github actions
|
|
|
|
- Release draft at github
|