2020-02-23 11:21:31 +01:00
|
|
|
## Development building / running
|
|
|
|
|
2020-05-06 08:06:06 +02:00
|
|
|
This app is built using Electron. Make sure you have at least node v12 and yarn installed. The app uses ffmpeg from PATH when developing.
|
2020-02-23 11:21:31 +01:00
|
|
|
```
|
|
|
|
git clone https://github.com/mifi/lossless-cut.git
|
|
|
|
cd lossless-cut
|
2020-05-06 08:06:06 +02:00
|
|
|
yarn
|
2020-02-23 11:21:31 +01:00
|
|
|
```
|
2021-01-05 19:42:52 +01:00
|
|
|
The last command may take some time to complete. In case you need to install `yarn`, use `npm install -g yarn` command.
|
2020-02-23 11:21:31 +01:00
|
|
|
|
|
|
|
### Running
|
2020-05-06 08:06:06 +02:00
|
|
|
|
2020-02-23 11:21:31 +01:00
|
|
|
```
|
|
|
|
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
|