Skip to content

Commit

Permalink
fix: update Countdown version 0.0.2-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hqer927 committed Oct 24, 2024
1 parent a1fc5e9 commit 87a1188
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ node_modules
dist
.eslintrc.js
*.html
*.md
packages/fastboard-core/docs
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ pnpm-lock.yaml
dist
*.html
CHANGELOG.md
*.md
packages/fastboard-core/docs

8 changes: 4 additions & 4 deletions README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

本库用于快速开始一个白板应用,基于 [white-web-sdk](https://www.npmjs.com/package/white-web-sdk)[@netless/window-manager](https://www.npmjs.com/package/@netless/window-manager)[netless-app](https://github.com/netless-io/netless-app) 实现。

从0.3.21版本开始, fastboard 集成了[appliance-plugin](./docs/zh/appliance-plugin.md)插件,以便于提供更优性能及更丰富的教具功能
从0.3.21版本开始, fastboard 集成了[@netless/appliance-plugin](./docs/zh/appliance-plugin.md)插件,以便于提供更优性能及更丰富的教具功能


## 目录
Expand All @@ -16,10 +16,10 @@
<h2 id="install">安装</h2>

<pre class="language-bash">
npm add <b>@netless/fastboard</b> @netless/window-manager white-web-sdk appliance-plugin
npm add <b>@netless/fastboard</b> @netless/window-manager white-web-sdk @netless/appliance-plugin
</pre>

> **注意:**@netless/window-manager、white-web-sdk、appliance-plugin 是 peerDependency,如果你不清楚 peerDependency 是什么意思,可以阅读 [《为什么使用 peerDependency ?》](./docs/zh/peer-dependency.md)
> **注意:**@netless/window-manager、white-web-sdk、@netless/appliance-plugin 是 peerDependency,如果你不清楚 peerDependency 是什么意思,可以阅读 [《为什么使用 peerDependency ?》](./docs/zh/peer-dependency.md)
<h2 id="usage">使用</h2>

Expand Down Expand Up @@ -103,7 +103,7 @@ main().catch(console.error);
先安装 @netless/fastboard-react,再使用里面提供的 `<Fastboard />` 组件。

<pre class="language-bash">
npm add <b>@netless/fastboard-react</b> @netless/window-manager white-web-sdk react react-dom
npm add <b>@netless/fastboard-react</b> @netless/window-manager white-web-sdk react react-dom @netless/appliance-plugin
</pre>

```jsx
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A starter library for making whiteboard web app, based on [white-web-sdk](https:

<img src="https://user-images.githubusercontent.com/8097890/165052277-f0bc1fba-c261-44a8-8219-cd7832ee3091.jpg" align="center">

Starting with version 0.3.21, fastboard integrates the [appliance-plugin](./docs/en/appliance-plugin.md) plug-in to provide better performance and richer teaching AIDS features
Starting with version 0.3.21, fastboard integrates the [@netless/appliance-plugin](./docs/en/appliance-plugin.md) plug-in to provide better performance and richer teaching AIDS features

## Table of Contents

Expand All @@ -18,7 +18,7 @@ Starting with version 0.3.21, fastboard integrates the [appliance-plugin](./docs
## Install

<pre class="language-bash">
npm add <b>@netless/fastboard</b> @netless/window-manager white-web-sdk
npm add <b>@netless/fastboard</b> @netless/window-manager white-web-sdk @netless/appliance-plugin
</pre>

> **Note:** `@netless/window-manager` and `white-web-sdk` are **peerDependencies**.
Expand Down
2 changes: 1 addition & 1 deletion packages/fastboard-core/src/behaviors/lite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const DefaultApps: AppsConfig = {
src: "https://netless-app.oss-cn-hangzhou.aliyuncs.com/@netless/app-monaco/0.1.14-beta.1/dist/main.iife.js",
},
Countdown: {
src: "https://netless-app.oss-cn-hangzhou.aliyuncs.com/@netless/app-countdown/0.0.2/dist/main.iife.js",
src: "https://netless-app.oss-cn-hangzhou.aliyuncs.com/@netless/app-countdown/0.0.2-alpha.1/dist/main.iife.min.js",
},
GeoGebra: {
src: "https://netless-app.oss-cn-hangzhou.aliyuncs.com/@netless/app-geogebra/0.0.4/dist/main.iife.js",
Expand Down

0 comments on commit 87a1188

Please sign in to comment.