Chore: rename org name

This commit is contained in:
xjasonlyu
2022-12-16 15:26:33 +08:00
parent 8834c01244
commit da26d0074a
8 changed files with 56 additions and 56 deletions

View File

@@ -16,7 +16,7 @@ def generate(filename, version):
'checksum': md5sum(filename),
'changelog': 'Auto Released by Actions',
'targetAbi': '10.8.0.0',
'sourceUrl': 'https://github.com/javtube/jellyfin-plugin-metatube/releases/download/'
'sourceUrl': 'https://github.com/metatube-community/jellyfin-plugin-metatube/releases/download/'
f'v{version}/Jellyfin.MetaTube@v{version}.zip',
'timestamp': datetime.now().strftime('%Y-%m-%dT%H:%M:%SZ'),
'version': version
@@ -29,7 +29,7 @@ def main():
.removeprefix('v') \
.removesuffix('.zip')
with urlopen('https://raw.githubusercontent.com/javtube/jellyfin-plugin-metatube/dist/manifest.json') as f:
with urlopen('https://raw.githubusercontent.com/metatube-community/jellyfin-plugin-metatube/dist/manifest.json') as f:
manifest = json.load(f)
manifest[0]['versions'].insert(0, generate(filename, version))