Skip to content

Commit ea81c19

Browse files
committed
version: 5.43.0
1 parent 2676e66 commit ea81c19

9 files changed

Lines changed: 27 additions & 10 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.42.0"
1+
current_version: "5.43.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.42.0"
12+
VERSION: "5.43.0"
1313

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

changelog.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,31 @@
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.42.0](https://github.com/exwm/yt_clipper/compare/v5.41.0...v5.42.0) (2026-04-11)
5+
## [5.43.0](https://github.com/exwm/yt_clipper/compare/v5.41.0...v5.43.0) (2026-04-12)
6+
7+
8+
### Features
9+
10+
* **markup:** add searchable command palette (shift+e) ([c7308ef](https://github.com/exwm/yt_clipper/commit/c7308ef0995c9216968d440e8ca479164e1a65ae))
11+
* **markup:** Ctrl+Alt+Shift+C to toggle essential previews now excludes dynamic crop chart looping ([dfac3fe](https://github.com/exwm/yt_clipper/commit/dfac3fe0d67cfe7ff9ba3ee62a29abe538a35341))
12+
* **markup:** make it clearer that (Source) FPS Multiplier targts source video FPS, always show derived clip fps multiplier ([95c0a92](https://github.com/exwm/yt_clipper/commit/95c0a9260b9be1ed4b464d9af252f1bbe8564966))
13+
* **markup:** reorganize command shortcuts and improve command palette ux ([5946cf1](https://github.com/exwm/yt_clipper/commit/5946cf13cb15e75eaa94c3d5208ed8809e6b5c4c))
14+
* **markup:** show warning when navigating to different video after activating yt_clipper ([c93f3ba](https://github.com/exwm/yt_clipper/commit/c93f3ba933bc62d05582d244154a2df853ae762d))
615

716

817
### Bug Fixes
918

19+
* **markup:** crop crosshair should rotate when video is rotated ([3f7545e](https://github.com/exwm/yt_clipper/commit/3f7545eb5f1b55fd9aa3a243b8997aedc7c620fe))
20+
* **markup:** move marker by frame (alt+shift+mousewheel) should not jump to start when marker pair looping is enabled ([f9f6c23](https://github.com/exwm/yt_clipper/commit/f9f6c23452d180b20d916c9ee26be842c15747f0))
21+
* **markup:** yt: hide yt overlays that may interfere with cropping ([fcc83fa](https://github.com/exwm/yt_clipper/commit/fcc83fa734fea302169efc66747801a3ad5034f5))
1022
* **markup:** move marker by frame (alt+shift+mousewheel) should not jump to start when marker pair looping is enabled ([f9f6c23](https://github.com/exwm/yt_clipper/commit/f9f6c23452d180b20d916c9ee26be842c15747f0))
1123
* **markup:** yt: hide yt overlays that may interfere with cropping ([fcc83fa](https://github.com/exwm/yt_clipper/commit/fcc83fa734fea302169efc66747801a3ad5034f5))
1224

25+
### Documentation Updates
26+
27+
* **readme:** update shortcuts organization to match new command palette ([e1a1aeb](https://github.com/exwm/yt_clipper/commit/e1a1aebdecc0f3b6249835d5c90eadfe13d0ab88))
28+
29+
1330
## [5.41.0](https://github.com/exwm/yt_clipper/compare/v5.40.0...v5.41.0) (2026-03-26)
1431

1532

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.42.0",
5+
"version": "5.43.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.42.0"
3+
version = "5.43.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.42.0"
1+
__version__ = "5.43.0"

src/markup/appState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { MarkerPair, Settings } from './@types/yt_clipper';
22
import { VideoPlatformHooks } from './platforms/platforms';
3-
export const __version__ = '5.42.0';
3+
export const __version__ = '5.43.0';
44

55
export type VideoElement = HTMLVideoElement & {
66
getCurrentTime: () => number;

src/markup/yt_clipper.ts

Lines changed: 2 additions & 2 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.42.0
7-
// @version 5.42.0
6+
// @version 5.43.0
7+
// @version 5.43.0
88
// @description Mark up YouTube videos and quickly generate clipped webms.
99
// @author elwm
1010
// @namespace https://github.com/exwm

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)