Skip to content

Commit be52844

Browse files
committedJul 29, 2024·
version v5.19.0
1 parent 83576fc commit be52844

File tree

7 files changed

+21
-8
lines changed

7 files changed

+21
-8
lines changed
 

‎.bumpit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
current_version: "5.18.0"
1+
current_version: "5.19.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.18.0'
15+
VERSION: '5.19.0'
1616

1717
jobs:
1818
build:

‎changelog.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

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

5+
## [5.19.0](https://github.com/exwm/yt_clipper/compare/v5.18.0...v5.19.0) (2024-07-29)
6+
7+
8+
### Features
9+
10+
* **clipper:** enable weverse support ([c9d5c84](https://github.com/exwm/yt_clipper/commit/c9d5c844fae43d67633924141d38c774ef6e2ab6))
11+
* **markup:** support for platform tv.naver.com ([6de0da4](https://github.com/exwm/yt_clipper/commit/6de0da4a11b8ae8046c5cd4a0786dbec6630849d))
12+
13+
14+
### Major Dependency Upgrades
15+
16+
* **clipper:** update ffmpeg to v7.0.1 ([3c3c534](https://github.com/exwm/yt_clipper/commit/3c3c53456ee2c8a2ce3598e438b22fc19a99480d))
17+
518
## [5.18.0](https://github.com/exwm/yt_clipper/compare/v5.17.0...v5.18.0) (2024-07-29)
619

720

‎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.18.0",
5+
"version": "5.19.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.18.0"
3+
version = "5.19.0"
44
description = "Quickly generate clipped webms."
55
authors = ["exwm <rjvgb@protonmail.com>"]
66
license = "MIT"

‎src/clipper/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.18.0"
1+
__version__ = "5.19.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.18.0
7-
// @version 5.18.0
6+
// @version 5.19.0
7+
// @version 5.19.0
88
// @description Mark up YouTube videos and quickly generate clipped webms.
99
// @author elwm
1010
// @namespace https://github.com/exwm
@@ -35,7 +35,7 @@
3535
// ==/UserScript==
3636
// BANNER GUARD
3737

38-
const __version__ = '5.18.0';
38+
const __version__ = '5.19.0';
3939

4040
import { Chart, ChartConfiguration } from 'chart.js';
4141
import { safeHtml, stripIndent } from 'common-tags';

0 commit comments

Comments
 (0)
Please sign in to comment.