Skip to content

Commit

Permalink
v1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
leaferjs committed Nov 27, 2024
1 parent 8a9747d commit 4676272
Show file tree
Hide file tree
Showing 30 changed files with 140 additions and 61 deletions.
18 changes: 18 additions & 0 deletions src/contribute/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,28 @@

## 文章

[【随易访谈】三年磨一剑,LeaferJS 图形框架,绝境中盛开-万超](https://mp.weixin.qq.com/s/uYa-ZFZRik0inh2bmusBbA) @陈随易

[【前端新风向】LeaferJS:革新级图形引擎,前端开发的新利器!](https://mp.weixin.qq.com/s/nJc5LEXTmjXBz6sVvEhScg) @web 前端智汇堂

[[开源]一款好用的 Canvas 引擎,革新的开发体验,可结合 AI 绘图、生成界面](https://mp.weixin.qq.com/s/KyQrgMDlzkKOEIY7k0VLcQ) @一飞开源

[LeaferJS,全新的 Canvas 渲染引擎](https://juejin.cn/post/7256386855721074747)<badge>源码性能分析</badge> @null

[最新发布!免费开源图片&海报编辑器工具](https://juejin.cn/post/7356055073586315315) @馒头

## 视频

[全新的图形渲染引擎,更快了](https://www.douyin.com/video/7399602821546380607) @茄子懂编程 🙈

[这个前端插件竟然能画龙](https://www.douyin.com/video/7431130743629286690) @程序员 Rain

## 教程

[我将 fabricjs 换为了 leaferjs](https://juejin.cn/post/7440830008123310132) @前端雾恋

[leaferjs 元素的基本使用](https://juejin.cn/post/7440830008123310132) @前端雾恋

[element-plus-leafer 文档](https://kooriookami.github.io/element-plus-leafer-docs/zh-CN/) @kooriookami

[超级玛丽游戏 - 开发教程](https://juejin.cn/post/7392116075674828827) @hhzzcc
Expand Down Expand Up @@ -112,6 +128,8 @@

#### 新版

[figma 初步转 leafer 元素](https://figrender-leafer.netlify.app) [@jianghanyue](https://github.com/jianghanyue)

[leafer-x-dot-matrix](https://www.npmjs.com/package/leafer-x-dot-matrix) <badge>点阵背景插件</badge> [@tuntun](https://github.com/tuntun0609)

[leafer-x-tooltip-canvas](https://www.npmjs.com/package/leafer-x-tooltip-canvas) <badge>canvas 版提示框插件</badge> @糖颂缘冥倾
Expand Down
4 changes: 2 additions & 2 deletions src/create/leafer.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ npm create leafer@latest update
<span style="color:#5e9177;font-weight: 600;">Fetching Leafer version...</span>
<span style="color:var(--vt-c-green);">✔</span> <span style="color:#888;font-weight: 600;">The following Leafer dependencies can be updated:</span>
<span style="color:#89DDFF;">{
"leafer-editor": "^1.0.9",
"@leafer-in/animate": "^1.0.9"
"leafer-editor": "^1.0.10",
"@leafer-in/animate": "^1.0.10"
}</span>
<span style="color:#888;font-weight: 600;">Do you want to update them? <span style="color:#888;">… <span style="color:#89DDFF;text-decoration:underline;">yes</span></span></span>
<span style="color:var(--vt-c-green);">✔</span> <span style="color:#888;font-weight: 600;">Dependencies updated successfully! Please run <span style="color:#5e9177;font-weight: 600;">npm install</span> to install the latest versions.</span>
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/draw/miniapp/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ bun add @leafer-draw/miniapp

```sh

https://unpkg.com/@leafer-draw/[email protected].9/dist/miniapp.module.js
https://unpkg.com/@leafer-draw/[email protected].10/dist/miniapp.module.js

https://unpkg.com/@leafer-draw/[email protected].9/dist/miniapp.module.min.js
https://unpkg.com/@leafer-draw/[email protected].10/dist/miniapp.module.min.js


```
Expand Down
8 changes: 4 additions & 4 deletions src/guide/install/draw/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ bun add leafer-draw
::: code-group

```html [web.min]
<script src="https://unpkg.com/[email protected].9/dist/web.min.js"></script>
<script src="https://unpkg.com/[email protected].10/dist/web.min.js"></script>
<script>
const { Leafer } = LeaferUI
// ...
</script>
```

```html [web]
<script src="https://unpkg.com/[email protected].9/dist/web.js"></script>
<script src="https://unpkg.com/[email protected].10/dist/web.js"></script>
<script>
const { Leafer } = LeaferUI
// ...
Expand All @@ -49,14 +49,14 @@ bun add leafer-draw

```html [module.min]
<script type="module">
import { Leafer } from 'https://unpkg.com/[email protected].9/dist/web.module.min.js'
import { Leafer } from 'https://unpkg.com/[email protected].10/dist/web.module.min.js'
// ...
</script>
```

```html [module]
<script type="module">
import { Leafer } from 'https://unpkg.com/[email protected].9/dist/web.module.js'
import { Leafer } from 'https://unpkg.com/[email protected].10/dist/web.module.js'
// ...
</script>
```
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/draw/worker/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ bun add @leafer-draw/worker
::: code-group

```js [worker.min.js]
importScripts('https://unpkg.com/@leafer-draw/[email protected].9/dist/worker.min.js')
importScripts('https://unpkg.com/@leafer-draw/[email protected].10/dist/worker.min.js')
```

```js [worker.js]
importScripts('https://unpkg.com/@leafer-draw/[email protected].9/dist/worker.js')
importScripts('https://unpkg.com/@leafer-draw/[email protected].10/dist/worker.js')
```

:::
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/editor/miniapp/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ bun add @leafer-editor/miniapp

```sh

https://unpkg.com/@leafer-editor/[email protected].9/dist/miniapp.module.js
https://unpkg.com/@leafer-editor/[email protected].10/dist/miniapp.module.js

https://unpkg.com/@leafer-editor/[email protected].9/dist/miniapp.module.min.js
https://unpkg.com/@leafer-editor/[email protected].10/dist/miniapp.module.min.js


```
Expand Down
8 changes: 4 additions & 4 deletions src/guide/install/editor/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ bun add leafer-editor
::: code-group

```html [web.min]
<script src="https://unpkg.com/[email protected].9/dist/web.min.js"></script>
<script src="https://unpkg.com/[email protected].10/dist/web.min.js"></script>
<script>
const { Leafer, Editor, Arrow } = LeaferUI
// ...
</script>
```

```html [web]
<script src="https://unpkg.com/[email protected].9/dist/web.js"></script>
<script src="https://unpkg.com/[email protected].10/dist/web.js"></script>
<script>
const { Leafer, Editor, Arrow } = LeaferUI
// ...
Expand All @@ -58,7 +58,7 @@ bun add leafer-editor
Leafer,
Editor,
Arrow,
} from 'https://unpkg.com/[email protected].9/dist/web.module.min.js'
} from 'https://unpkg.com/[email protected].10/dist/web.module.min.js'
// ...
</script>
```
Expand All @@ -69,7 +69,7 @@ bun add leafer-editor
Leafer,
Editor,
Arrow,
} from 'https://unpkg.com/[email protected].9/dist/web.module.js'
} from 'https://unpkg.com/[email protected].10/dist/web.module.js'
// ...
</script>
```
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/editor/worker/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ bun add @leafer-editor/worker

```js [worker.min.js]
importScripts(
'https://unpkg.com/@leafer-editor/[email protected].9/dist/worker.min.js'
'https://unpkg.com/@leafer-editor/[email protected].10/dist/worker.min.js'
)
```

```js [worker.js]
importScripts('https://unpkg.com/@leafer-editor/[email protected].9/dist/worker.js')
importScripts('https://unpkg.com/@leafer-editor/[email protected].10/dist/worker.js')
```

:::
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/game/miniapp/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ bun add @leafer-game/miniapp

```sh

https://unpkg.com/@leafer-game/[email protected].9/dist/miniapp.module.js
https://unpkg.com/@leafer-game/[email protected].10/dist/miniapp.module.js

https://unpkg.com/@leafer-game/[email protected].9/dist/miniapp.module.min.js
https://unpkg.com/@leafer-game/[email protected].10/dist/miniapp.module.min.js


```
Expand Down
8 changes: 4 additions & 4 deletions src/guide/install/game/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ bun add leafer-game
::: code-group

```html [web.min]
<script src="https://unpkg.com/[email protected].9/dist/web.min.js"></script>
<script src="https://unpkg.com/[email protected].10/dist/web.min.js"></script>
<script>
const { Leafer, Robot, Animate } = LeaferUI
// ...
</script>
```

```html [web]
<script src="https://unpkg.com/[email protected].9/dist/web.js"></script>
<script src="https://unpkg.com/[email protected].10/dist/web.js"></script>
<script>
const { Leafer, Robot, Animate } = LeaferUI
// ...
Expand All @@ -58,7 +58,7 @@ bun add leafer-game
Leafer,
Editor,
Arrow,
} from 'https://unpkg.com/[email protected].9/dist/web.module.min.js'
} from 'https://unpkg.com/[email protected].10/dist/web.module.min.js'
// ...
</script>
```
Expand All @@ -69,7 +69,7 @@ bun add leafer-game
Leafer,
Editor,
Arrow,
} from 'https://unpkg.com/[email protected].9/dist/web.module.js'
} from 'https://unpkg.com/[email protected].10/dist/web.module.js'
// ...
</script>
```
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/game/worker/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ bun add @leafer-game/worker
::: code-group

```js [worker.min.js]
importScripts('https://unpkg.com/@leafer-game/[email protected].9/dist/worker.min.js')
importScripts('https://unpkg.com/@leafer-game/[email protected].10/dist/worker.min.js')
```

```js [worker.js]
importScripts('https://unpkg.com/@leafer-game/[email protected].9/dist/worker.js')
importScripts('https://unpkg.com/@leafer-game/[email protected].10/dist/worker.js')
```

:::
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/ui/miniapp/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ var __TEMP2__ =__TEMP__; Object.defineProperty(exports, k, { enumerable: true, c
```sh

https://unpkg.com/@leafer-ui/[email protected].9/dist/miniapp.module.js
https://unpkg.com/@leafer-ui/[email protected].10/dist/miniapp.module.js

https://unpkg.com/@leafer-ui/[email protected].9/dist/miniapp.module.min.js
https://unpkg.com/@leafer-ui/[email protected].10/dist/miniapp.module.min.js
```
## 环境
Expand Down
8 changes: 4 additions & 4 deletions src/guide/install/ui/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ bun add leafer-ui
::: code-group

```html [web.min]
<script src="https://unpkg.com/[email protected].9/dist/web.min.js"></script>
<script src="https://unpkg.com/[email protected].10/dist/web.min.js"></script>
<script>
const { Leafer } = LeaferUI // 全局变量,包含 leafer-ui 的所有功能
Expand All @@ -57,7 +57,7 @@ bun add leafer-ui
```

```html [web]
<script src="https://unpkg.com/[email protected].9/dist/web.js"></script>
<script src="https://unpkg.com/[email protected].10/dist/web.js"></script>
<script>
const { Leafer } = LeaferUI // 全局变量,包含 leafer-ui的所有功能
Expand All @@ -70,14 +70,14 @@ bun add leafer-ui

```html [module.min]
<script type="module">
import { Leafer } from 'https://unpkg.com/[email protected].9/dist/web.module.min.js'
import { Leafer } from 'https://unpkg.com/[email protected].10/dist/web.module.min.js'
// ...
</script>
```

```html [module]
<script type="module">
import { Leafer } from 'https://unpkg.com/[email protected].9/dist/web.module.js'
import { Leafer } from 'https://unpkg.com/[email protected].10/dist/web.module.js'
// ...
</script>
```
Expand Down
4 changes: 2 additions & 2 deletions src/guide/install/ui/worker/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ bun add @leafer-ui/worker
::: code-group

```js [worker.min.js]
importScripts('https://unpkg.com/@leafer-ui/[email protected].9/dist/worker.min.js')
importScripts('https://unpkg.com/@leafer-ui/[email protected].10/dist/worker.min.js')
```

```js [worker.js]
importScripts('https://unpkg.com/@leafer-ui/[email protected].9/dist/worker.js')
importScripts('https://unpkg.com/@leafer-ui/[email protected].10/dist/worker.js')
```

:::
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/animate/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ bun add @leafer-in/animate
::: code-group

```html [animate.min]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/animate.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/animate.min.js"></script>
<script>
const { Animate } = LeaferIN.animate
</script>
```

```html [animate]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/animate.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/animate.js"></script>
<script>
const { Animate } = LeaferIN.animate
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/arrow/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ bun add @leafer-in/arrow
::: code-group

```html [arrow.min]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/arrow.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/arrow.min.js"></script>
<script>
const { Arrow } = LeaferIN.arrow
</script>
```

```html [arrow]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/arrow.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/arrow.js"></script>
<script>
const { Arrow } = LeaferIN.arrow
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/color/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ bun add @leafer-in/resize
::: code-group

```html [resize.min]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/resize.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/resize.min.js"></script>
```

```html [resize]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/resize.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/resize.js"></script>
```

https://unpkg.com 无法访问时,可替换为 https://cdn.jsdelivr.net/npm
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/editor/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ bun add @leafer-in/editor
::: code-group

```html [editor.min]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/editor.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/editor.min.js"></script>
<script>
const { Editor } = LeaferIN.editor
</script>
```

```html [editor]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/editor.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/editor.js"></script>
<script>
const { Editor } = LeaferIN.editor
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/flow/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ bun add @leafer-in/flow
::: code-group

```html [flow.min]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/flow.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/flow.min.js"></script>
<script>
const { Flow } = LeaferIN.flow
</script>
```

```html [flow]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/flow.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/flow.js"></script>
<script>
const { Flow } = LeaferIN.flow
</script>
Expand Down
4 changes: 2 additions & 2 deletions src/plugin/in/html/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ bun add @leafer-in/html
::: code-group

```html [html.min]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/html.min.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/html.min.js"></script>
<script>
const { HTMLText } = LeaferIN.html
</script>
```

```html [html]
<script src="https://unpkg.com/@leafer-in/[email protected].9/dist/html.js"></script>
<script src="https://unpkg.com/@leafer-in/[email protected].10/dist/html.js"></script>
<script>
const { HTMLText } = LeaferIN.html
</script>
Expand Down
Loading

0 comments on commit 4676272

Please sign in to comment.