Skip to content

Commit 0ba780e

Browse files
authored
chore(version): upgrade version to v2.3.3 (#2130)
1 parent ce7702c commit 0ba780e

File tree

5 files changed

+57
-5
lines changed

5 files changed

+57
-5
lines changed

CHANGELOG.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## [2.3.3](https://github.com/netless-io/flat/compare/v2.3.2...v2.3.3) (2024-03-08)
2+
3+
4+
### Bug Fixes
5+
6+
* **service-providers**: reporting end time on recovering record ([#2124](https://github.com/netless-io/flat/issues/2124)) ([2eded3b1](https://github.com/netless-io/flat/commit/2eded3b1))
7+
* **flat-components**: ended timer logic error ([#2120](https://github.com/netless-io/flat/issues/2120)) ([a74e5ba7](https://github.com/netless-io/flat/commit/a74e5ba7))
8+
* **flat-pages**: refresh rooms list on any join room error ([#2118](https://github.com/netless-io/flat/issues/2118)) ([e8bf66c7](https://github.com/netless-io/flat/commit/e8bf66c7))
9+
* **flat-pages**: refresh rooms list on room not begin error ([#2117](https://github.com/netless-io/flat/issues/2117)) ([57383114](https://github.com/netless-io/flat/commit/57383114))
10+
* **flat-pages**: room not begin modal wrong logic ([#2116](https://github.com/netless-io/flat/issues/2116)) ([282cef22](https://github.com/netless-io/flat/commit/282cef22))
11+
* **flat-services**: correct message when failed to convert file ([#2108](https://github.com/netless-io/flat/issues/2108)) ([2a171617](https://github.com/netless-io/flat/commit/2a171617))
12+
* **flat-pages**: show room stopped modal on creator side ([#2100](https://github.com/netless-io/flat/issues/2100)) ([294f7c2a](https://github.com/netless-io/flat/commit/294f7c2a))
13+
* **flat-components**: start storybook failed ([#2098](https://github.com/netless-io/flat/issues/2098)) ([c88560e8](https://github.com/netless-io/flat/commit/c88560e8))
14+
* **flat-stores**: fix wrong target ([#2085](https://github.com/netless-io/flat/issues/2085)) ([e9ace808](https://github.com/netless-io/flat/commit/e9ace808))
15+
16+
17+
118
## [2.3.2](https://github.com/netless-io/flat/compare/v2.3.1...v2.3.2) (2023-11-08)
219

320

@@ -881,6 +898,3 @@
881898
### Reverts
882899

883900
* Revert "feat(desktop): customize url protocol to join room on homepage (#749)" (#751) ([b58da8d](https://github.com/netless-io/Flat-native/commit/b58da8d98681907ad1e0ceb0993d6133f86b37aa)), closes [#749](https://github.com/netless-io/Flat-native/issues/749) [#751](https://github.com/netless-io/Flat-native/issues/751)
884-
885-
886-

desktop/main-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "flat",
33
"productName": "Flat",
4-
"version": "2.3.2",
4+
"version": "2.3.3",
55
"private": true,
66
"description": "",
77
"homepage": "https://github.com/netless-io/flat",

docs/releases/v2.3.3/en.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## Features
2+
3+
1. Periodic rooms support joining across regions
4+
2. Teachers and students can join the scheduled room 10 minutes in advance
5+
3. Rooms that are active for over 48 hours will automatically close
6+
4. Course playback supports fast-forward 15 seconds, rewind 15 seconds fast operation
7+
8+
## Improved
9+
10+
1. Account merging process
11+
2. Accelerated cross-regional whiteboard connections
12+
3. Lowered the sound effect volume for sending trophies
13+
4. Add tips related to room billing
14+
5. Adjust the position of the clear screen button to prevent accidental touching
15+
16+
## Fixed
17+
18+
1. The issue where PMI (Personal Meeting ID) option could not be selected under certain conditions
19+
2. Refresh does not affect recording status

docs/releases/v2.3.3/zh.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## 新增
2+
3+
1. 周期性房间支持跨区域加入
4+
2. 预定的房间师生提前 10 分钟可加入
5+
3. 房间超过 48 小时将会自动关闭
6+
4. 回放支持快进15秒、倒退15秒的快捷操作方式
7+
8+
## 优化
9+
10+
1. 跨区域白板连接加速
11+
2. 账户合并流程
12+
3. 调低发送奖杯的音效
13+
4. 添加房间计费相关提示
14+
5. 调整清屏按钮位置防止误触
15+
16+
## 修复
17+
18+
1. 特定情况下 PMI 选项无法勾选
19+
2. 刷新不影响录制状态

scripts/changelog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ log.trimEnd().split("\n").forEach(line => {
2121
const type = match[3];
2222
const scope = match[4];
2323
const message = match[5].replace(/\#(\d+)/, "[#$1](https://github.com/netless-io/flat/issues/$1)");
24-
const item = `* **${scope}**: ${message} ([${abbr}](https://github.com/netless-io/flat/commit/${commit}))`;
24+
const item = `* **${scope}**: ${message} ([${abbr}](https://github.com/netless-io/flat/commit/${abbr}))`;
2525
if (type === "feat") features.push(item);
2626
if (type === "fix") fixes.push(item);
2727
if (type === "perf") perf.push(item);

0 commit comments

Comments
 (0)