Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(version): upgrade version to v2.3.4 #2148

Merged
merged 2 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion desktop/main-app/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
5 changes: 5 additions & 0 deletions docs/releases/v2.3.4/en.md
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions docs/releases/v2.3.4/zh.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## 优化

1. 升级到 PPT 转换新版本
2. 支持通过链接跨地区(版本)查看回放
3. 调整修改周期性子房间的限制
25 changes: 12 additions & 13 deletions service-providers/fastboard/src/file-insert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand All @@ -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;
}
}
}

Expand Down
Loading