From cd5ec3bd6f89c88ce4f9cc14caf1d89ccd417559 Mon Sep 17 00:00:00 2001 From: lisonge Date: Thu, 31 Aug 2023 23:33:31 +0800 Subject: [PATCH] chore: sync --- dist/gkd.json | 4 ++-- package.json | 2 +- src/file.ts | 2 +- src/main.ts | 2 +- src/types.ts | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/gkd.json b/dist/gkd.json index 6a4dc236..8120631b 100644 --- a/dist/gkd.json +++ b/dist/gkd.json @@ -1,9 +1,9 @@ { "id": 0, "name": "默认订阅", - "version": 36, + "version": 37, "author": "lisonge", - "supportUrl": "https://github.com/gkd-kit/subscription", + "supportUri": "https://github.com/gkd-kit/subscription", "apps": [ { "id": "air.tv.douyu.android", diff --git a/package.json b/package.json index fca5295b..a5fa4f45 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@gkd-kit/subscription", "type": "module", - "version": "0.0.36", + "version": "0.0.37", "main": "./dist/gkd.json", "unpkg": "./dist/gkd.json", "jsdelivr": "./dist/gkd.json", diff --git a/src/file.ts b/src/file.ts index a7a45cab..027c5507 100644 --- a/src/file.ts +++ b/src/file.ts @@ -82,7 +82,7 @@ export const writeConfig = async (fp: string, config: SubscriptionConfig) => { `name`, `version`, `author`, - 'supportUrl', + 'supportUri', `updateUrl`, `apps`, ]; diff --git a/src/main.ts b/src/main.ts index 8f94140c..ec797560 100644 --- a/src/main.ts +++ b/src/main.ts @@ -27,6 +27,6 @@ await writeConfig(`../dist/gkd.json`, { id: 0, name: `默认订阅`, author: `lisonge`, - supportUrl: `https://github.com/gkd-kit/subscription`, + supportUri: `https://github.com/gkd-kit/subscription`, apps, }); diff --git a/src/types.ts b/src/types.ts index f036bf79..d53b9139 100644 --- a/src/types.ts +++ b/src/types.ts @@ -75,7 +75,7 @@ export type SubscriptionConfig = { * https url\ * android schema url, qq group */ - supportUrl?: string; + supportUri?: string; apps: AppConfig[]; };