Comparing version 0.14.8 to 0.14.9
@@ -0,1 +1,7 @@ | ||
### 0.14.9 (2025-01-02) | ||
_Fixed:_ | ||
- Automatic setting of source dimensions based on source type. | ||
### 0.14.8 (2024-12-24) | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "kampos", | ||
"version": "0.14.8", | ||
"version": "0.14.9", | ||
"description": "Tiny and fast effects compositor on WebGL", | ||
@@ -5,0 +5,0 @@ "registry": "https://registry.npmjs.org/", |
@@ -189,4 +189,4 @@ import * as core from './core.js'; | ||
const isVideo = typeof media === 'HTMLVideoElement'; | ||
const isCanvas = typeof media === 'HTMLCanvasElement'; | ||
const isVideo = media instanceof HTMLVideoElement; | ||
const isCanvas = media instanceof HTMLCanvasElement; | ||
@@ -193,0 +193,0 @@ if (width && height) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
10549111