1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-26 04:02:51 +01:00
lossless-cut/developer-notes.md

172 lines
4.8 KiB
Markdown
Raw Normal View History

# Contributing
## Translators
You are welcome to help translate the app at [Weblate](https://hosted.weblate.org/projects/losslesscut/losslesscut/). Weblate will automatically push translations as a Pull Request in this repo, but this PR is not merged immediately by maintainers.
Master language is english.
### Testing translations locally
To test new weblate translations you made in the app itself, you need to:
1. Download the translation for your language from Weblate: **Files -> Download translation**
2. Rename the downloaded `.json` file to: `translation.json`
3. Create a [folder structure](https://github.com/mifi/lossless-cut/tree/master/public/locales) somewhere on your computer that looks like this:
```
translations/locales/localeCode
```
You can find a list of the available [`localeCode`s here](https://github.com/mifi/lossless-cut/tree/master/public/locales). In our example we will use `nb_NO` (Norwegian) with this path:
```
/Users/mifi/Desktop/translations/locales/nb_NO
```
4. Now move your `translation.json` file into the folder:
```
/Users/mifi/Desktop/translations/locales/nb_NO/translation.json
```
5. Now run LosslessCut from the [command line](cli.md), with the special command line argument `--locales-path`. Use the path to the **folder containing the locales folder**, e.g.:
```bash
./LosslessCut --locales-path /Users/mifi/Desktop/translations
```
Now LosslessCut will use your language file.
## Development setup
2020-02-23 11:21:31 +01:00
2021-01-18 22:19:06 +01:00
This app is built using Electron.
Make sure you have at least Node v16. The app uses ffmpeg from PATH when developing.
2021-01-18 22:19:06 +01:00
```bash
npm install -g yarn
2020-02-23 11:21:31 +01:00
```
2021-01-18 22:19:06 +01:00
```bash
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-18 22:19:06 +01:00
Note: `yarn` may take some time to complete.
2020-02-23 11:21:31 +01:00
2023-01-02 05:41:59 +01:00
### Installing `ffmpeg`
2022-04-15 06:58:55 +02:00
Run one of the below commands:
2021-07-25 06:48:15 +02:00
```bash
2022-11-23 04:43:58 +01:00
npm run download-ffmpeg-darwin-x64
npm run download-ffmpeg-darwin-arm64
npm run download-ffmpeg-linux-x64
npm run download-ffmpeg-win32-x64
2022-04-15 06:58:55 +02:00
```
2020-05-06 08:06:06 +02:00
2022-04-15 06:58:55 +02:00
### Running
```bash
2020-02-23 11:21:31 +01:00
npm start
```
2023-01-02 05:41:59 +01:00
### Building for production
See:
- https://www.electron.build/
- https://github.com/mifi/lossless-cut/blob/master/.github/workflows/build.yml
## Building mas-dev (Mac App Store) build locally
2021-10-30 17:43:50 +02:00
This will sign using the development provisioning profile:
```
npm run pack-mas-dev
```
2023-02-16 16:22:27 +01:00
MAS builds have some restrictions, see `isMasBuild` variable in code. In particular, any file cannot be read without the user's consent.
NOTE: when MAS (dev) build, Application Support will instead be here:
```
~/Library/Containers/no.mifi.losslesscut-mac/Data/Library/Application Support
```
### Starting over fresh
```
rm -rf ~/Library/Containers/no.mifi.losslesscut-mac
```
2023-01-02 05:41:59 +01:00
## Windows Store
Windows store version is built as a Desktop Bridge app (with `runFullTrust` capability). This means the app has access to essentially everything the user has access to, and even `internetClient` is redundant.
- https://learn.microsoft.com/en-us/windows/uwp/packaging/app-capability-declarations
- https://learn.microsoft.com/en-us/archive/blogs/appconsult/a-simpler-and-faster-way-to-publish-your-desktop-bridge-applications-on-the-microsoft-store
- https://stackoverflow.com/a/52921641/6519037
## Releasing
2018-05-22 23:32:54 +02:00
2023-01-02 05:41:59 +01:00
For per-platform build/signing setup, see [this article](https://mifi.no/blog/automated-electron-build-with-release-to-mac-app-store-microsoft-store-snapcraft/).
2021-10-30 17:43:50 +02:00
2018-05-22 23:32:54 +02:00
### Release new version
2022-02-20 17:04:18 +01:00
- Commit changes
- `npm version ...`
- `git push && git push --tags`
- Wait for build and draft in Github actions
- Release draft at github
2021-08-25 11:04:32 +02:00
- Bump [snap version](https://snapcraft.io/losslesscut/listing)
2021-08-28 17:14:15 +02:00
- `npm run scan-i18n` to get the newest Englist strings and push so weblate gets them
2021-11-15 08:32:27 +01:00
2023-01-15 12:05:05 +01:00
## Minimum OS version
Minimum supported OS versions for Electron. As of electron 22:
- MacOS High Sierra 10.13
- Windows 10
### MacOS [`LSMinimumSystemVersion`](https://developer.apple.com/documentation/bundleresources/information_property_list/lsminimumsystemversion)
How to check the value:
```bash
npm run pack-mas-dev
cat dist/mas-dev-arm64/LosslessCut.app/Contents/Info.plist
```
```
<key>LSMinimumSystemVersion</key>
<string>10.13</string>
```
`LSMinimumSystemVersion` can be overridden in `electron-builder` by [`mac.minimumSystemVersion`](https://www.electron.build/configuration/mac.html)
See also `MACOS_MIN` in [ffmpeg-build-script](https://github.com/mifi/ffmpeg-build-script/blob/master/build-ffmpeg).
Links:
- https://support.google.com/chrome/a/answer/7100626
- https://bignerdranch.com/blog/requiring-a-minimum-version-of-os-x-for-your-application/
- [#1386](https://github.com/mifi/lossless-cut/issues/1386)
2022-01-18 08:09:14 +01:00
## Maintainence chores
2021-11-15 08:32:27 +01:00
2022-01-18 08:09:14 +01:00
### Keep dependencies up to date
- ffmpeg
- electron
- package.json
### i18n
`npm run scan-i18n`
### Licenses
#### Generate summary
2021-11-15 08:32:27 +01:00
```
npx license-checker --summary
```
2022-01-18 08:09:14 +01:00
#### Regenerate licenses file
2021-11-15 08:32:27 +01:00
```
npm run generate-licenses
2023-01-15 10:38:27 +01:00
#cp licenses.txt losslesscut.mifi.no/public/
2021-11-15 08:32:27 +01:00
```
2022-01-18 08:09:14 +01:00
Then deploy.