From 8a3626a864b22ef1bd8485c71859dfb634690cd5 Mon Sep 17 00:00:00 2001 From: Greg Zanchelli Date: Fri, 28 Aug 2020 21:25:56 -0400 Subject: [PATCH 1/3] fixes customFabric.js example, see #57 --- examples/customFabric.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/customFabric.js b/examples/customFabric.js index b92046f..07a53b6 100644 --- a/examples/customFabric.js +++ b/examples/customFabric.js @@ -2,8 +2,8 @@ const editly = require('..'); /* eslint-disable spaced-comment,no-param-reassign */ -async function func({ width, height, fabric, canvas }) { - async function onRender(progress) { +async function func({ width, height, fabric }) { + async function onRender(progress, canvas) { canvas.backgroundColor = 'hsl(33, 100%, 50%)'; const text = new fabric.Text(`PROGRESS\n${Math.floor(progress * 100)}%`, { From 2129240b2c81e71fe08a217bbe3039165e2cd5fb Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Sun, 6 Sep 2020 21:42:38 +0200 Subject: [PATCH 2/3] 0.5.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 492f07d..94d5705 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "editly", "description": "Simple, sexy, declarative video editing", - "version": "0.4.0", + "version": "0.5.0", "main": "index.js", "author": "Mikael Finstad ", "license": "MIT", From f676a3691ec3368341345fe9412db157c6404eb2 Mon Sep 17 00:00:00 2001 From: Jacob Chapman <7908073+chapmanjacobd@users.noreply.github.com> Date: Mon, 7 Sep 2020 08:42:25 +0700 Subject: [PATCH 3/3] remove finished TODO --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 0aafd08..c31d187 100644 --- a/README.md +++ b/README.md @@ -307,9 +307,6 @@ Certain layers support the position parameter - https://github.com/sjfricke/awesome-webgl - https://www.mltframework.org/docs/melt/ -## TODO - -- Keep source audio (See [#1](https://github.com/mifi/editly/issues/1)) ---