From 071c76862a8cf2c246495712013c2ef55a3080b7 Mon Sep 17 00:00:00 2001 From: afiqzudinhadi Date: Wed, 29 Jul 2026 19:18:59 +0800 Subject: [PATCH] rebrand: media-db-sync fork + fix bun test resolution MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - manifest/manifest-beta/package.json → id media-db-sync, v0.1.0 - pluginName const → media-db-sync - tsconfig: baseUrl (bun test needs it for packages/* paths) + ignoreDeprecations 6.0 - upstream tests were broken on clean checkout (module resolution) → 31/31 pass now --- manifest-beta.json | 13 ++++++------- manifest.json | 13 ++++++------- package.json | 4 ++-- packages/obsidian/src/utils/Utils.ts | 2 +- tsconfig.json | 2 ++ 5 files changed, 17 insertions(+), 17 deletions(-) diff --git a/manifest-beta.json b/manifest-beta.json index d633e00..9482269 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -1,11 +1,10 @@ { - "id": "obsidian-media-db-plugin", - "name": "Media DB", - "version": "0.8.0-canary.20260703T094912", + "id": "media-db-sync", + "name": "Media DB Sync", + "version": "0.1.0-beta.1", "minAppVersion": "1.12.0", - "description": "A plugin that can query multiple APIs for movies, series, anime, games, music and wiki articles, and import them into your vault.", - "author": "Moritz Jung", - "authorUrl": "https://www.moritzjung.dev", - "fundingUrl": "https://github.com/sponsors/mProjectsCode", + "description": "Media library with automatic metadata enrichment, periodic sync, and watch-status automation. Fork of Media DB by Moritz Jung.", + "author": "Afiq Zudin Hadi", + "authorUrl": "https://github.com/afiqzudinhadi", "isDesktopOnly": false } diff --git a/manifest.json b/manifest.json index 5e91e7f..1fa516a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,11 +1,10 @@ { - "id": "obsidian-media-db-plugin", - "name": "Media DB", - "version": "0.8.0", + "id": "media-db-sync", + "name": "Media DB Sync", + "version": "0.1.0", "minAppVersion": "1.12.0", - "description": "A plugin that can query multiple APIs for movies, series, anime, games, music and wiki articles, and import them into your vault.", - "author": "Moritz Jung", - "authorUrl": "https://www.moritzjung.dev", - "fundingUrl": "https://github.com/sponsors/mProjectsCode", + "description": "Media library with automatic metadata enrichment, periodic sync, and watch-status automation. Fork of Media DB by Moritz Jung.", + "author": "Afiq Zudin Hadi", + "authorUrl": "https://github.com/afiqzudinhadi", "isDesktopOnly": false } diff --git a/package.json b/package.json index f335e85..5f963a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "obsidian-media-db-plugin", - "version": "0.8.0", + "name": "media-db-sync", + "version": "0.1.0", "description": "A plugin that can query multiple APIs for movies, series, anime, manga, books, comics, games, music and wiki articles, and import them into your vault.", "main": "main.js", "scripts": { diff --git a/packages/obsidian/src/utils/Utils.ts b/packages/obsidian/src/utils/Utils.ts index cc5b2bd..5e8a804 100644 --- a/packages/obsidian/src/utils/Utils.ts +++ b/packages/obsidian/src/utils/Utils.ts @@ -3,7 +3,7 @@ import type { TFile, TFolder, App } from 'obsidian'; import { requestUrl } from 'obsidian'; import type { MediaTypeModel } from 'packages/obsidian/src/models/MediaTypeModel'; -export const pluginName: string = 'obsidian-media-db-plugin'; +export const pluginName: string = 'media-db-sync'; export const contactEmail: string = 'm.projects.code@gmail.com'; export const mediaDbTag: string = 'mediaDB'; export const mediaDbVersion: string = '0.8.0'; diff --git a/tsconfig.json b/tsconfig.json index bb7ef48..f570a40 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,7 @@ { "compilerOptions": { + "baseUrl": ".", + "ignoreDeprecations": "6.0", "paths": { "packages/*": ["./packages/*"], "tests/*": ["./tests/*"]