diff --git a/.github/release-notes/v1.2.37.md b/.github/release-notes/v1.2.37.md new file mode 100644 index 0000000..3738291 --- /dev/null +++ b/.github/release-notes/v1.2.37.md @@ -0,0 +1,4 @@ +- 写信页发送区改为 Gmail 风格拆分按钮,主按钮直接发送,右侧下拉菜单提供“定时发送”。 +- 移除容易被误认为日期选择器的独立日历方块,保留原有定时预设和自定义发送时间功能。 + +**完整更新日志**:[v1.2.36...v1.2.37](https://github.com/zxyszx/NewSzxcn-Email/compare/v1.2.36...v1.2.37) diff --git a/VERSION b/VERSION index 780ac74..a678a28 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.36 +1.2.37 diff --git a/apps/web/src/pages/mail.tsx b/apps/web/src/pages/mail.tsx index 6f47bb2..40c11c4 100644 --- a/apps/web/src/pages/mail.tsx +++ b/apps/web/src/pages/mail.tsx @@ -4284,10 +4284,23 @@ function ComposeDialog({ mailboxes, mailbox, open, draft, limits, canSend, canMa /> -
- {canSend && } - {canSchedule && } -
+ {canSend && ( +
+ + {canSchedule && ( + + + + + + setScheduleDialogOpen(true)}>定时发送 + + + )} +
+ )}