diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f94921e152..f778033ff39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [2.3.4](https://github.com/netless-io/flat/compare/v2.3.4...v2.3.4) (2024-06-12) + + +### Bug Fixes + +* **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)) +* **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)) + + + ## [2.3.3](https://github.com/netless-io/flat/compare/v2.3.2...v2.3.3) (2024-03-08) diff --git a/desktop/main-app/package.json b/desktop/main-app/package.json index b59d7be7768..3407a075306 100644 --- a/desktop/main-app/package.json +++ b/desktop/main-app/package.json @@ -1,7 +1,7 @@ { "name": "flat", "productName": "Flat", - "version": "2.3.3", + "version": "2.3.4", "private": true, "description": "", "homepage": "https://github.com/netless-io/flat", diff --git a/docs/releases/v2.3.4/en.md b/docs/releases/v2.3.4/en.md new file mode 100644 index 00000000000..7cc2528a56a --- /dev/null +++ b/docs/releases/v2.3.4/en.md @@ -0,0 +1,5 @@ +## Improved + +1. Upgrade to the new version of PPT Conversion +2. Support viewing playback across regions (versions) via links +3. Adjust the limitation of modifying periodic sub-rooms \ No newline at end of file diff --git a/docs/releases/v2.3.4/zh.md b/docs/releases/v2.3.4/zh.md new file mode 100644 index 00000000000..b5960322168 --- /dev/null +++ b/docs/releases/v2.3.4/zh.md @@ -0,0 +1,5 @@ +## 优化 + +1. 升级到 PPT 转换新版本 +2. 支持通过链接跨地区(版本)查看回放 +3. 调整修改周期性子房间的限制 diff --git a/service-providers/fastboard/src/file-insert.ts b/service-providers/fastboard/src/file-insert.ts index a80e1778e97..d00c3465dcb 100644 --- a/service-providers/fastboard/src/file-insert.ts +++ b/service-providers/fastboard/src/file-insert.ts @@ -224,19 +224,6 @@ export async function insertDocs( } return; } - - if (convertingStatus.prefix) { - // new Projector PPTX conversion - await fastboardApp.insertDocs({ - fileType: "pptx", - title: file.fileName, - scenePath: `/${taskUUID}/${uuidv4()}`, - taskId: taskUUID!, - url: convertingStatus.prefix, - }); - return; - } - if (convertingStatus.images) { // other docs await fastboardApp.manager.addApp({ @@ -249,6 +236,18 @@ export async function insertDocs( }); return; } + + if (convertingStatus.prefix) { + // new Projector PPTX conversion + await fastboardApp.insertDocs({ + fileType: "pptx", + title: file.fileName, + scenePath: `/${taskUUID}/${uuidv4()}`, + taskId: taskUUID!, + url: convertingStatus.prefix, + }); + return; + } } }