Skip to content

Commit 73ae12e

Browse files
committed
version: v5.23.0
1 parent 2c9e421 commit 73ae12e

File tree

7 files changed

+31
-8
lines changed

7 files changed

+31
-8
lines changed

.bumpit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
current_version: "5.22.0"
1+
current_version: "5.23.0"
22
base_branch: "master"
33
strategy:
44
name: "semver"

.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.22.0'
15+
VERSION: '5.23.0'
1616

1717
jobs:
1818
build:

changelog.md

+23
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
44

5+
## [5.23.0](https://github.com/exwm/yt_clipper/compare/v5.21.0...v5.23.0) (2024-09-08)
6+
7+
8+
### Features
9+
10+
* **clipper+markup:** add --enable-hdr option to use high dynamic range for output videos ([abd6634](https://github.com/exwm/yt_clipper/commit/abd663407f216035d928f43f56e6e868c23ab52d))
11+
* **clipper:** add --fast-trim/-ft option to generate outputs quickly without re-encoding ([2535ce5](https://github.com/exwm/yt_clipper/commit/2535ce52dd5d58c87c762f1c8b63d582128eeff6))
12+
* **markup:** crop manipulation: allow use of meta key (command on mac) instead of ctrl key ([3c4c481](https://github.com/exwm/yt_clipper/commit/3c4c481cce3ccb8de08c3bd6036b03586cea04ba))
13+
14+
15+
### Bug Fixes
16+
17+
* **clipper:** making clips with local input video broken due to missing Video Type ([e1056af](https://github.com/exwm/yt_clipper/commit/e1056afd109efa6d54791351dba6dfdaecf4fde9))
18+
* **clipper:** work around for video stabilization artifacts when input video has low background contrast ([64d6d4f](https://github.com/exwm/yt_clipper/commit/64d6d4f802a5c63c6d134d42de945bf95d45d930))
19+
* **clipper:** zoompan: disable scaling up input when input is HDR before zooming to avoid artifacting ([c831d80](https://github.com/exwm/yt_clipper/commit/c831d80be3deedcec7f45412572b79cb98b2d120))
20+
* **markup:** use DOMPurify for more robust html sanitization, use trusted types with browsers that support it ([4fe1a34](https://github.com/exwm/yt_clipper/commit/4fe1a346d333f1898f5b86027c564f6ea0b86dcf))
21+
* **markup:** videoURL missing video ID query param ([aec8927](https://github.com/exwm/yt_clipper/commit/aec8927d9697eb7d04f800a6755f089974e2bbfc))
22+
23+
24+
### Major Dependency Upgrades
25+
26+
* **clipper:** update yt-dlp dependency to v2024.08.06 ([b10db98](https://github.com/exwm/yt_clipper/commit/b10db98a4d272b3992eebe3ca381655bc787c2a4))
27+
528
## [5.22.0](https://github.com/exwm/yt_clipper/compare/v5.21.2...v5.22.0) (2024-08-06)
629

730

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.22.0",
5+
"version": "5.23.0",
66
"license": "MIT",
77
"repository": {
88
"type": "git",

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "clipper"
3-
version = "5.22.0"
3+
version = "5.23.0"
44
description = "Quickly generate clipped webms."
55
authors = ["exwm <[email protected]>"]
66
license = "MIT"

src/clipper/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.22.0"
1+
__version__ = "5.23.0"

src/markup/yt_clipper.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// BANNER GUARD
44
// @locale english
55
// @name yt_clipper
6-
// @version 5.22.0
7-
// @version 5.22.0
6+
// @version 5.23.0
7+
// @version 5.23.0
88
// @description Mark up YouTube videos and quickly generate clipped webms.
99
// @author elwm
1010
// @namespace https://github.com/exwm
@@ -36,7 +36,7 @@
3636
// ==/UserScript==
3737
// BANNER GUARD
3838

39-
const __version__ = '5.22.0';
39+
const __version__ = '5.23.0';
4040
import { Chart, ChartConfiguration } from 'chart.js';
4141
import { safeSetInnerHtml } from './util/util';
4242
import { stripIndent } from 'common-tags';

0 commit comments

Comments
 (0)