From e527a1843e00ca077806480a9961925e4fcf4d85 Mon Sep 17 00:00:00 2001 From: Lucas Date: Fri, 8 Nov 2024 10:13:17 +0800 Subject: [PATCH] chore: bump version 0.7.3 (#6743) * chore: update changelog * feat: add 'custom namespace' in plan description --- CHANGELOG.md | 14 ++++++++++++++ .../pages/settings_plan_comparison_dialog.dart | 14 ++++++++++++++ frontend/resources/translations/en.json | 4 +++- 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45232f80c0c79..dc9e7bc89795a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,18 @@ # Release Notes +## Version 0.7.3 - 07/11/2024 +### New Features +- Enable custom URLs for published pages +- Support toggling headings +- Create a subpage by typing in the document +- Turn selected blocks into a subpage +- Add a manual date picker for the Date property + +### Bug Fixes +- Fixed an issue where the workspace owner was unable to delete spaces created by others +- Fixed cursor height inconsistencies with text height +- Fixed editing issues in Kanban cards +- Fixed an issue preventing images or files from being dropped into empty paragraphs + ## Version 0.7.2 - 22/10/2024 ### New Features - Copy link to block diff --git a/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_comparison_dialog.dart b/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_comparison_dialog.dart index 2cda9a1e03947..d9103b4cd441b 100644 --- a/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_comparison_dialog.dart +++ b/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_comparison_dialog.dart @@ -670,6 +670,13 @@ final _planLabels = [ _PlanItem( label: LocaleKeys.settings_comparePlanDialog_planLabels_itemFileUpload.tr(), ), + _PlanItem( + label: + LocaleKeys.settings_comparePlanDialog_planLabels_customNamespace.tr(), + tooltip: LocaleKeys + .settings_comparePlanDialog_planLabels_customNamespaceTooltip + .tr(), + ), ]; class _CellItem { @@ -708,6 +715,9 @@ final List<_CellItem> _freeLabels = [ _CellItem( label: LocaleKeys.settings_comparePlanDialog_freeLabels_itemFileUpload.tr(), ), + const _CellItem( + label: '', + ), ]; final List<_CellItem> _proLabels = [ @@ -739,4 +749,8 @@ final List<_CellItem> _proLabels = [ _CellItem( label: LocaleKeys.settings_comparePlanDialog_proLabels_itemFileUpload.tr(), ), + const _CellItem( + label: '', + icon: FlowySvgs.check_m, + ), ]; diff --git a/frontend/resources/translations/en.json b/frontend/resources/translations/en.json index 10a2e36e518de..c36003a66e4a2 100644 --- a/frontend/resources/translations/en.json +++ b/frontend/resources/translations/en.json @@ -935,9 +935,11 @@ "itemFive": "Mobile app", "itemSix": "AI Responses", "itemFileUpload": "File uploads", + "customNamespace": "Custom namespace", "tooltipSix": "Lifetime means the number of responses never reset", "intelligentSearch": "Intelligent search", - "tooltipSeven": "Allows you to customize part of the URL for your workspace" + "tooltipSeven": "Allows you to customize part of the URL for your workspace", + "customNamespaceTooltip": "Custom published site URL" }, "freeLabels": { "itemOne": "Charged per workspace",