diff --git a/README.md b/README.md index 3cfefe1..99c2301 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ By default, the plugin generates HTML tags without the alt attribute to keep the 1. Clone this repository 2. Run `npm install` to install dependencies 3. Run `npm run dev` to start compilation in watch mode -4. Copy `main.js`, `manifest.json`, and `styles.css` to your vault's `.obsidian/plugins/img2html/` directory for testing +4. Copy `main.js` and `manifest.json` to your vault's `.obsidian/plugins/img2html/` directory for testing ## License diff --git a/README_CN.md b/README_CN.md index c65bb37..9faf89e 100644 --- a/README_CN.md +++ b/README_CN.md @@ -78,7 +78,7 @@ HTML 格式的图片标签比 Markdown 或 Obsidian 的 wikilink 格式更广泛 1. 克隆此仓库 2. 运行 `npm install` 安装依赖 3. 运行 `npm run dev` 开始开发,这将自动编译并监视文件变化 -4. 将 `main.js`、`manifest.json` 和 `styles.css` 复制到你的 vault 的 `.obsidian/plugins/img2html/` 目录下进行测试 +4. 将 `main.js` 和 `manifest.json` 复制到你的 vault 的 `.obsidian/plugins/img2html/` 目录下进行测试 ## 许可证 diff --git a/manifest.json b/manifest.json index 34477f6..2eaa076 100644 --- a/manifest.json +++ b/manifest.json @@ -1,10 +1,10 @@ -{ - "id": "img2html", - "name": "Image to HTML", - "version": "0.1.0", - "minAppVersion": "1.4.0", - "description": "Paste images as HTML format instead of Obsidian wikilink or markdown format", - "author": "0x1DA9430", - "authorUrl": "https://github.com/0x1DA9430", - "isDesktopOnly": false -} \ No newline at end of file +{ + "id": "img2html", + "name": "Image to HTML", + "minAppVersion": "1.4.0", + "description": "Paste images as HTML format instead of Obsidian wikilink or markdown format", + "author": "0x1DA9430", + "authorUrl": "https://github.com/0x1DA9430", + "isDesktopOnly": false, + "version": "1.0.0" +} \ No newline at end of file diff --git a/package.json b/package.json index 807c0f7..b826306 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "img2html", - "version": "0.1.0", + "version": "1.0.0", "description": "Paste images as HTML format instead of Obsidian wikilink or markdown format", "main": "main.js", "scripts": { diff --git a/styles.css b/styles.css deleted file mode 100644 index e69de29..0000000 diff --git a/versions.json b/versions.json index ee6f6fd..10d8b54 100644 --- a/versions.json +++ b/versions.json @@ -1,3 +1,4 @@ -{ - "0.1.0": "0.1.0" -} \ No newline at end of file +{ + "0.1.0": "0.1.0", + "1.0.0": "1.4.0" +} \ No newline at end of file