From 16d4f059a62477005ba59fbf7f299894ad02d058 Mon Sep 17 00:00:00 2001 From: exwm Date: Sat, 19 Aug 2023 09:50:02 -0400 Subject: [PATCH] version: v5.14.1 --- .bumpit.yaml | 4 ++-- .github/workflows/yt_clipper_ci.yml | 2 +- changelog.md | 9 +++++++++ package.json | 2 +- pyproject.toml | 2 +- src/clipper/version.py | 2 +- src/markup/yt_clipper.ts | 6 +++--- 7 files changed, 18 insertions(+), 9 deletions(-) diff --git a/.bumpit.yaml b/.bumpit.yaml index 53548a3..66fcee2 100644 --- a/.bumpit.yaml +++ b/.bumpit.yaml @@ -1,8 +1,8 @@ -current_version: "5.14.0" +current_version: "5.14.1" base_branch: "master" strategy: name: "semver" - part: "minor" + part: "patch" commit: author: "foo " tag: diff --git a/.github/workflows/yt_clipper_ci.yml b/.github/workflows/yt_clipper_ci.yml index 71bf0ed..2bc5fdb 100644 --- a/.github/workflows/yt_clipper_ci.yml +++ b/.github/workflows/yt_clipper_ci.yml @@ -12,7 +12,7 @@ on: # Can work around to some degree using set-env env: NAME: yt_clipper - VERSION: '5.14.0' + VERSION: '5.14.1' jobs: build: diff --git a/changelog.md b/changelog.md index 146b559..a72ea50 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,15 @@ 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. +### [5.14.1](https://github.com/exwm/yt_clipper/compare/v5.14.0...v5.14.1) (2023-08-19) + + +### Bug Fixes + +* **clipper:** 0-duration crop point pair at the end of dynamic crop map breaks crop filter ([731d3ab](https://github.com/exwm/yt_clipper/commit/731d3ab9956d5aa7b4cb3254e9e038d834a459da)) +* **clipper:** video stabilization fails due to ffmpeg bug ([9255893](https://github.com/exwm/yt_clipper/commit/92558936f57bfaa51dd1ec18ba8835986ccca143)) +* **markup:** marker pair and global settings editors not displaying, rotate video doesn't fit video into view properly, settings editors invisible in non-theatre view mode ([8a2a458](https://github.com/exwm/yt_clipper/commit/8a2a458c5dcc10cc6a8a98bbdbe9fc724f1175a5)) + ## [5.14.0](https://github.com/exwm/yt_clipper/compare/v5.12.0...v5.14.0) (2023-08-12) diff --git a/package.json b/package.json index 7eea528..f4ae386 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "yt_clipper", "author": "exwm", "homepage": "https://openuserjs.org/scripts/elwm/yt_clipper", - "version": "5.14.0", + "version": "5.14.1", "license": "MIT", "repository": { "type": "git", diff --git a/pyproject.toml b/pyproject.toml index c6928b1..bed5091 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "clipper" -version = "5.14.0" +version = "5.14.1" description = "Quickly generate clipped webms." authors = ["exwm "] license = "MIT" diff --git a/src/clipper/version.py b/src/clipper/version.py index 5155106..2e23f39 100644 --- a/src/clipper/version.py +++ b/src/clipper/version.py @@ -1 +1 @@ -__version__ = "5.14.0" +__version__ = "5.14.1" diff --git a/src/markup/yt_clipper.ts b/src/markup/yt_clipper.ts index 2b1e478..47617c3 100644 --- a/src/markup/yt_clipper.ts +++ b/src/markup/yt_clipper.ts @@ -3,8 +3,8 @@ // BANNER GUARD // @locale english // @name yt_clipper -// @version 5.14.0 -// @version 5.14.0 +// @version 5.14.1 +// @version 5.14.1 // @description Mark up YouTube videos and quickly generate clipped webms. // @author elwm // @namespace https://github.com/exwm @@ -32,7 +32,7 @@ // ==/UserScript== // BANNER GUARD -const __version__ = '5.14.0'; +const __version__ = '5.14.1'; import { Chart, ChartConfiguration } from 'chart.js'; import { safeHtml, stripIndent } from 'common-tags';