Skip to content

Commit b40e581

Browse files
committed
version: 5.41.0
1 parent 85a81ac commit b40e581

8 files changed

Lines changed: 30 additions & 9 deletions

File tree

.bumpit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
current_version: "5.40.0"
1+
current_version: "5.41.0"
22
base_branch: "master"
33
strategy:
44
name: "semver"

.github/workflows/yt_clipper_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
env:
1111
NAME: yt_clipper
12-
VERSION: "5.40.0"
12+
VERSION: "5.41.0"
1313

1414
FFMPEG_VERSION: "8.1"
1515
FFMPEG_WIN_BASE_URL: https://github.com/GyanD/codexffmpeg/releases/download

changelog.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
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.41.0](https://github.com/exwm/yt_clipper/compare/v5.40.0...v5.41.0) (2026-03-26)
6+
7+
8+
### Features
9+
10+
* **clipper+markup:** support dynamic speed with motion interpolation and improve its quality + preserve metadata in interpolated output ([10d234c](https://github.com/exwm/yt_clipper/commit/10d234ce78f35e0561dbf149ea043641d18f34fb))
11+
* Depends on forked version of video2x (v6.5.0-exwm)
12+
13+
* BREAKING CHANGE: a value of 0 for FPS multiplier now disables disables motion interpolation.
14+
* A value of 1 targets the original source video fps, compensating for slowdown.
15+
* Higher values (e.g. 2) target N x source fps for extra-smooth slow motion.
16+
17+
### Bug Fixes
18+
19+
* **clipper:** unknown args should be logged before exit ([6667332](https://github.com/exwm/yt_clipper/commit/6667332c7466e54eb0f31433696d63b9e49c094d))
20+
21+
22+
### Documentation Updates
23+
24+
* **readme:** minor hotkey fix ([c4c9a50](https://github.com/exwm/yt_clipper/commit/c4c9a50fc6fc65afe0e1d56bc9a92a84c040a0d9))
25+
526
## [5.40.0](https://github.com/exwm/yt_clipper/compare/v5.39.0...v5.40.0) (2026-03-10)
627

728

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "yt_clipper",
33
"description": "Mark up YouTube videos and quickly generate clipped webms.",
44
"author": "exwm",
5-
"version": "5.40.0",
5+
"version": "5.41.0",
66
"license": "MIT",
77
"repository": {
88
"type": "git",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "clipper"
3-
version = "5.40.0"
3+
version = "5.41.0"
44
description = "Quickly generate clipped webms."
55
authors = [{ name = "exwm", email = "rjvgb@protonmail.com" }]
66
requires-python = ">=3.12,<3.13"

src/clipper/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.40.0"
1+
__version__ = "5.41.0"

src/markup/yt_clipper.ts

Lines changed: 3 additions & 3 deletions
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.40.0
7-
// @version 5.40.0
6+
// @version 5.41.0
7+
// @version 5.41.0
88
// @description Mark up YouTube videos and quickly generate clipped webms.
99
// @author elwm
1010
// @namespace https://github.com/exwm
@@ -37,7 +37,7 @@
3737
// ==/UserScript==
3838
// BANNER GUARD
3939

40-
const __version__ = '5.40.0';
40+
const __version__ = '5.41.0';
4141
import { Chart, ChartConfiguration } from 'chart.js';
4242
import { safeSetInnerHtml } from './util/util';
4343
import { stripIndent } from 'common-tags';

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)