chore: sync

This commit is contained in:
lisonge 2023-08-31 23:33:31 +08:00
parent ba16debb56
commit cd5ec3bd6f
5 changed files with 6 additions and 6 deletions

4
dist/gkd.json vendored
View File

@ -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",

View File

@ -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",

View File

@ -82,7 +82,7 @@ export const writeConfig = async (fp: string, config: SubscriptionConfig) => {
`name`,
`version`,
`author`,
'supportUrl',
'supportUri',
`updateUrl`,
`apps`,
];

View File

@ -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,
});

View File

@ -75,7 +75,7 @@ export type SubscriptionConfig = {
* https url\
* android schema url, qq group
*/
supportUrl?: string;
supportUri?: string;
apps: AppConfig[];
};