From 5745cb49f833e2e2449e030847803a03d46a5b05 Mon Sep 17 00:00:00 2001 From: exwm Date: Wed, 31 Aug 2022 23:57:06 -0400 Subject: [PATCH] version: v5.9.1 --- .github/workflows/yt_clipper_ci.yml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/clipper/yt_clipper.py | 2 +- src/markup/yt_clipper.ts | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/yt_clipper_ci.yml b/.github/workflows/yt_clipper_ci.yml index a856bc4..99c4bfa 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.9.0" + VERSION: "5.9.1" FFMPEG_VERSION: "5.0.1" FFMPEG_DL_PREFIX: https://github.com/exwm/yt_clipper_bindeps/releases/download diff --git a/package-lock.json b/package-lock.json index 806c888..e678971 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "yt_clipper", - "version": "5.9.0", + "version": "5.9.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "yt_clipper", - "version": "5.9.0", + "version": "5.9.1", "license": "MIT", "dependencies": { "common-tags": "^1.8.2", diff --git a/package.json b/package.json index 61d419c..5bbc11b 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.9.0", + "version": "5.9.1", "license": "MIT", "repository": { "type": "git", diff --git a/src/clipper/yt_clipper.py b/src/clipper/yt_clipper.py index af35a72..6e27089 100755 --- a/src/clipper/yt_clipper.py +++ b/src/clipper/yt_clipper.py @@ -25,7 +25,7 @@ import coloredlogs import verboselogs -__version__ = '5.9.0' +__version__ = '5.9.1' ExtendedRealNumber = Union[int, float, Fraction] DictStrAny = Dict[str, Any] diff --git a/src/markup/yt_clipper.ts b/src/markup/yt_clipper.ts index 5810be9..2830f58 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.9.0 -// @version 5.9.0 +// @version 5.9.1 +// @version 5.9.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.9.0'; +const __version__ = '5.9.1'; import { Chart, ChartConfiguration } from 'chart.js'; import { safeHtml, stripIndent } from 'common-tags';