Skip to content

Commit 2ed815a

Browse files
authored
chore(version): upgrade version to v2.3.4 (#2148)
* chore(version): upgrade version to v2.3.4 * fix(service-providers): change file insert priority
1 parent 1ea02a2 commit 2ed815a

File tree

5 files changed

+33
-14
lines changed

5 files changed

+33
-14
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [2.3.4](https://github.com/netless-io/flat/compare/v2.3.4...v2.3.4) (2024-06-12)
2+
3+
4+
### Bug Fixes
5+
6+
* **flat-components**: edit periodic sub room times ([#2141](https://github.com/netless-io/flat/issues/2141)) ([d70434f7](https://github.com/netless-io/flat/commit/d70434f7))
7+
* **flat-pages**: avoid JavaScript protocol in redirect URL ([#2135](https://github.com/netless-io/flat/issues/2135)) ([216c931e](https://github.com/netless-io/flat/commit/216c931e))
8+
9+
10+
111
## [2.3.3](https://github.com/netless-io/flat/compare/v2.3.2...v2.3.3) (2024-03-08)
212

313

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.3",
4+
"version": "2.3.4",
55
"private": true,
66
"description": "",
77
"homepage": "https://github.com/netless-io/flat",

docs/releases/v2.3.4/en.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Improved
2+
3+
1. Upgrade to the new version of PPT Conversion
4+
2. Support viewing playback across regions (versions) via links
5+
3. Adjust the limitation of modifying periodic sub-rooms

docs/releases/v2.3.4/zh.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## 优化
2+
3+
1. 升级到 PPT 转换新版本
4+
2. 支持通过链接跨地区(版本)查看回放
5+
3. 调整修改周期性子房间的限制

service-providers/fastboard/src/file-insert.ts

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -224,19 +224,6 @@ export async function insertDocs(
224224
}
225225
return;
226226
}
227-
228-
if (convertingStatus.prefix) {
229-
// new Projector PPTX conversion
230-
await fastboardApp.insertDocs({
231-
fileType: "pptx",
232-
title: file.fileName,
233-
scenePath: `/${taskUUID}/${uuidv4()}`,
234-
taskId: taskUUID!,
235-
url: convertingStatus.prefix,
236-
});
237-
return;
238-
}
239-
240227
if (convertingStatus.images) {
241228
// other docs
242229
await fastboardApp.manager.addApp({
@@ -249,6 +236,18 @@ export async function insertDocs(
249236
});
250237
return;
251238
}
239+
240+
if (convertingStatus.prefix) {
241+
// new Projector PPTX conversion
242+
await fastboardApp.insertDocs({
243+
fileType: "pptx",
244+
title: file.fileName,
245+
scenePath: `/${taskUUID}/${uuidv4()}`,
246+
taskId: taskUUID!,
247+
url: convertingStatus.prefix,
248+
});
249+
return;
250+
}
252251
}
253252
}
254253

0 commit comments

Comments
 (0)