-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2.1.0: binaries fix and improvements (#4)
* fix: tag branch build triggering * feat: package key words * fix: release * fix: release test 2.0.15 * fix: binaries * feat: auto fill and field jump * fix: enabled submit button on error * fix: messages and validations * feat: emojis on messages * feat: right click menu * fix: youtube-dl working dir * fix: messages and dependencies * feat: check for updates * fix: app icon * feat: standarized emojis * fix: size and demo * fix: status margin * fix: demo gif * feat: release badge
- Loading branch information
Showing
18 changed files
with
855 additions
and
462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,56 @@ | ||
{ | ||
"name": "yt-dlandcut", | ||
"version": "2.0.14", | ||
"version": "2.1.0", | ||
"description": "Download and Cut an Youtube video by its starting and ending times", | ||
"repository": "github:markkop/yt-dlandcut", | ||
"main": "build/electron/main.js", | ||
"scripts": { | ||
"postinstall": "electron-builder install-app-deps", | ||
"start": "electron .", | ||
"start": "yarn transpile && electron .", | ||
"transpile": "babel src --out-dir build", | ||
"pack": "electron-builder --dir", | ||
"build": "yarn transpile && electron-builder", | ||
"release": "yarn transpile && electron-builder --win --linux" | ||
}, | ||
"keywords": [], | ||
"author": "Marcelo 'Mark' Kopmann", | ||
"license": "ISC", | ||
"keywords": [ | ||
"youtube-dl", | ||
"ffmpeg", | ||
"electron", | ||
"travisci" | ||
], | ||
"author": "Marcelo 'Mark' Kopmann <[email protected]> (https://markkop.dev)", | ||
"license": "GPL-3.0-or-later", | ||
"dependencies": { | ||
"@babel/cli": "^7.8.4", | ||
"@babel/plugin-transform-runtime": "^7.9.0", | ||
"@babel/runtime": "^7.9.2", | ||
"ffmpeg-static": "^4.1.1", | ||
"@babel/plugin-transform-runtime": "^7.9.0", | ||
"axios": "^0.19.2", | ||
"fluent-ffmpeg": "^2.1.2", | ||
"youtube-dl": "^3.0.2" | ||
"youtube-dl": "^3.0.2", | ||
"electron-context-menu": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.9.0", | ||
"@babel/node": "^7.8.7", | ||
"@babel/cli": "^7.8.4", | ||
"@babel/preset-env": "^7.9.0", | ||
"electron": "^8.2.3", | ||
"electron-builder": "^22.5.1" | ||
}, | ||
"build": { | ||
"appId": "com.electron.yt-dlandcut", | ||
"asar": false, | ||
"files": [ | ||
"build/**/*", | ||
"bin/*", | ||
"public/*", | ||
"node_modules/youtube-dl/bin/youtube-dl", | ||
"package.json" | ||
], | ||
"linux": { | ||
"target": "appImage" | ||
"target": "appImage", | ||
"category": "Utility", | ||
"icon": "public/256x256.png" | ||
}, | ||
"win": { | ||
"target": "portable" | ||
"target": "portable", | ||
"icon": "public/256x256.ico" | ||
}, | ||
"publish": "github" | ||
} | ||
|
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.