@neoanaloglabkk/lensfun-wasm 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.ja.md CHANGED
@@ -76,8 +76,8 @@ console.log(lenses[0]);
76
76
  ## クイックスタート(CDN)
77
77
 
78
78
  ```html
79
- <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.0/dist/assets/lensfun-core.js"></script>
80
- <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.0/dist/umd/index.iife.js"></script>
79
+ <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.2/dist/assets/lensfun-core.js"></script>
80
+ <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.2/dist/umd/index.iife.js"></script>
81
81
  <script>
82
82
  (async () => {
83
83
  const client = await LensfunWasm.createLensfun();
@@ -241,17 +241,6 @@ npm run check
241
241
  1. npm で publish 権限付き Automation Token を作成
242
242
  2. GitHub リポジトリ Secret に `NPM_TOKEN` を登録
243
243
 
244
- 公開コマンド:
245
-
246
- ```bash
247
- git checkout main
248
- git pull --ff-only
249
-
250
- # package.json の version は事前に設定(例: 0.1.0)
251
- git tag v0.1.0
252
- git push origin v0.1.0
253
- ```
254
-
255
244
  公開後確認:
256
245
 
257
246
  ```bash
package/README.md CHANGED
@@ -76,8 +76,8 @@ console.log(lenses[0]);
76
76
  ## Quick Start (CDN)
77
77
 
78
78
  ```html
79
- <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.0/dist/assets/lensfun-core.js"></script>
80
- <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.0/dist/umd/index.iife.js"></script>
79
+ <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.2/dist/assets/lensfun-core.js"></script>
80
+ <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.2/dist/umd/index.iife.js"></script>
81
81
  <script>
82
82
  (async () => {
83
83
  const client = await LensfunWasm.createLensfun();
@@ -243,17 +243,6 @@ Setup once:
243
243
  1. Create an npm Automation Token with publish permission.
244
244
  2. Add it to repository secrets as `NPM_TOKEN`.
245
245
 
246
- Release commands:
247
-
248
- ```bash
249
- git checkout main
250
- git pull --ff-only
251
-
252
- # package.json version must already be set (example: 0.1.0)
253
- git tag v0.1.0
254
- git push origin v0.1.0
255
- ```
256
-
257
246
  Post-release check:
258
247
 
259
248
  ```bash
package/README.zh-CN.md CHANGED
@@ -76,8 +76,8 @@ console.log(lenses[0]);
76
76
  ## 快速开始(CDN)
77
77
 
78
78
  ```html
79
- <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.0/dist/assets/lensfun-core.js"></script>
80
- <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.0/dist/umd/index.iife.js"></script>
79
+ <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.2/dist/assets/lensfun-core.js"></script>
80
+ <script src="https://cdn.jsdelivr.net/npm/@neoanaloglabkk/lensfun-wasm@0.1.2/dist/umd/index.iife.js"></script>
81
81
  <script>
82
82
  (async () => {
83
83
  const client = await LensfunWasm.createLensfun();
@@ -241,17 +241,6 @@ npm run check
241
241
  1. 在 npm 创建可发布的 Automation Token
242
242
  2. 在 GitHub 仓库 Secrets 中添加 `NPM_TOKEN`
243
243
 
244
- 发布命令:
245
-
246
- ```bash
247
- git checkout main
248
- git pull --ff-only
249
-
250
- # package.json 版本需已设置(示例:0.1.0)
251
- git tag v0.1.0
252
- git push origin v0.1.0
253
- ```
254
-
255
244
  发布后校验:
256
245
 
257
246
  ```bash
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neoanaloglabkk/lensfun-wasm",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Lensfun compiled to WebAssembly with a high-level JS API for browser frontends.",
5
5
  "license": "LGPL-3.0-or-later",
6
6
  "repository": {