Skip to content

Commit 12dc3d6

Browse files
committed
version: v5.2.0
1 parent 2d6d12f commit 12dc3d6

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

Diff for: .github/workflows/yt_clipper_ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
# Can work around to some degree using set-env
1313
env:
1414
NAME: yt_clipper
15-
VERSION: 5.1.4
15+
VERSION: 5.2.0
1616
FFMPEG_VERSION: 20200831-4a11a6f
1717
FFMPEG_DL_PREFIX: https://github.com/exwm/yt_clipper_bindeps/releases/download
1818

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "yt_clipper",
33
"author": "exwm",
44
"homepage": "https://openuserjs.org/scripts/elwm/yt_clipper",
5-
"version": "5.1.3",
5+
"version": "5.2.0",
66
"license": "MIT",
77
"repository": {
88
"type": "git",

Diff for: src/clipper/yt_clipper.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import youtube_dl.version
2525
import yt_dlp.version
2626

27-
__version__ = '5.1.4'
27+
__version__ = '5.2.0'
2828

2929
logger = verboselogs.VerboseLogger(__name__)
3030

@@ -64,10 +64,9 @@ def main():
6464
setUpLogger(cs)
6565

6666
if cs.settings["youtubeDLAlternative"] == 'yt_dlp':
67-
import yt_dlp as youtube_dl
67+
import yt_dlp as youtube_dl
6868
else:
69-
import youtube_dl
70-
69+
import youtube_dl
7170

7271
logger.report(f'yt_clipper version: {__version__}')
7372
logger.report(f'{cs.settings["youtubeDLAlternative"]} version: {youtube_dl.version.__version__}')
@@ -688,7 +687,7 @@ def getArgParser():
688687
help='Password passed to youtube-dl for authentication.')
689688

690689
parser.add_argument('--youtube-dl-alternative', '-ytdla', dest="youtubeDLAlternative", choices=['youtube_dl', 'yt_dlp'], default='youtube_dl',
691-
help='Choose a youtube_dl alternative for downloading videos.')
690+
help='Choose a youtube_dl alternative for downloading videos.')
692691
return parser
693692

694693

Diff for: src/markup/yt_clipper.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// ==UserScript==
33
// @locale english
44
// @name yt_clipper
5-
// @version 5.1.4
5+
// @version 5.2.0
66
// @description Mark up YouTube videos and quickly generate clipped webms.
77
// @author elwm
88
// @namespace https://github.com/exwm
@@ -27,7 +27,7 @@
2727
// @grant GM_getValue // dummy grant to enable sandboxing
2828
// ==/UserScript==
2929

30-
const __version__ = '5.1.4';
30+
const __version__ = '5.2.0';
3131

3232
import { Chart, ChartConfiguration } from 'chart.js';
3333
import { html, stripIndent } from 'common-tags';

0 commit comments

Comments
 (0)