From eecb8eb2f2c785566875ff70a43932ae09e10904 Mon Sep 17 00:00:00 2001 From: Chaphasilor Date: Tue, 27 Jul 2021 19:07:16 +0200 Subject: [PATCH] bump version to 0.8 - also changed a string in the docs --- README.md | 2 +- package-lock.json | 2 +- package.json | 2 +- src/index.js | 3 +-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0aedb23..ec8cbc2 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ $ video-sync -h # help page - `-t, --threshold=` [default: 0.6] minimum confidence threshold for video syncing. (requires algorithm=simple) - `-w, --searchWidth=` [default: 20] width of the search region (in seconds) for video syncing. the program will find the closest matching frame in this region, 'sourceOffset' being the center (requires algorithm=simple) -- `-y, --confirm` automatically confirm missing tracks, low confidence scores and overwrite prompts +- `-y, --confirm` automatically confirm missing tracks, low confidence scores, warped videos and overwrite prompts - `-v, --verbose` output additional logs diff --git a/package-lock.json b/package-lock.json index 69c52d8..a273873 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "video-sync", - "version": "0.7.0", + "version": "0.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 10a515e..7050f76 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "video-sync", - "version": "0.7.0", + "version": "0.8.0", "author": "Chaphasilor", "bin": { "video-sync": "./bin/run" diff --git a/src/index.js b/src/index.js index 6844d64..ed1f3d4 100644 --- a/src/index.js +++ b/src/index.js @@ -316,8 +316,7 @@ VideoSyncCommand.flags = { }), confirm: flags.boolean({ char: `y`, - description: `automatically confirm missing tracks, low confidence scores and overwrite prompts - `, + description: `automatically confirm missing tracks, low confidence scores, warped videos and overwrite prompts`, required: false, // if omitted, only the offset is printed default: false, }),