Browse Source

Merge pull request #909 from movie-web/dev

Version 4.4.2: Fix extension compatibility
pull/1017/head 4.4.2
William Oldham 1 year ago committed by GitHub
parent
commit
07b5c95607
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      package.json
  2. 2
      src/backend/extension/compatibility.ts

2
package.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "movie-web",
"version": "4.4.1",
"version": "4.4.2",
"private": true,
"homepage": "https://movie-web.app",
"scripts": {

2
src/backend/extension/compatibility.ts

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
import { satisfies } from "semver";
const allowedExtensionRange = "~1.0.2";
const allowedExtensionRange = "^1.0.2";
export function isAllowedExtensionVersion(version: string): boolean {
return satisfies(version, allowedExtensionRange);

Loading…
Cancel
Save