File tree Expand file tree Collapse file tree 3 files changed +31
-1
lines changed
appflowy_flutter/lib/workspace/presentation/settings/pages Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 11# Release Notes
2+ ## Version 0.7.3 - 07/11/2024
3+ ### New Features
4+ - Enable custom URLs for published pages
5+ - Support toggling headings
6+ - Create a subpage by typing in the document
7+ - Turn selected blocks into a subpage
8+ - Add a manual date picker for the Date property
9+
10+ ### Bug Fixes
11+ - Fixed an issue where the workspace owner was unable to delete spaces created by others
12+ - Fixed cursor height inconsistencies with text height
13+ - Fixed editing issues in Kanban cards
14+ - Fixed an issue preventing images or files from being dropped into empty paragraphs
15+
216## Version 0.7.2 - 22/10/2024
317### New Features
418- Copy link to block
Original file line number Diff line number Diff line change @@ -670,6 +670,13 @@ final _planLabels = [
670670 _PlanItem (
671671 label: LocaleKeys .settings_comparePlanDialog_planLabels_itemFileUpload.tr (),
672672 ),
673+ _PlanItem (
674+ label:
675+ LocaleKeys .settings_comparePlanDialog_planLabels_customNamespace.tr (),
676+ tooltip: LocaleKeys
677+ .settings_comparePlanDialog_planLabels_customNamespaceTooltip
678+ .tr (),
679+ ),
673680];
674681
675682class _CellItem {
@@ -708,6 +715,9 @@ final List<_CellItem> _freeLabels = [
708715 _CellItem (
709716 label: LocaleKeys .settings_comparePlanDialog_freeLabels_itemFileUpload.tr (),
710717 ),
718+ const _CellItem (
719+ label: '' ,
720+ ),
711721];
712722
713723final List <_CellItem > _proLabels = [
@@ -739,4 +749,8 @@ final List<_CellItem> _proLabels = [
739749 _CellItem (
740750 label: LocaleKeys .settings_comparePlanDialog_proLabels_itemFileUpload.tr (),
741751 ),
752+ const _CellItem (
753+ label: '' ,
754+ icon: FlowySvgs .check_m,
755+ ),
742756];
Original file line number Diff line number Diff line change 935935 "itemFive" : " Mobile app" ,
936936 "itemSix" : " AI Responses" ,
937937 "itemFileUpload" : " File uploads" ,
938+ "customNamespace" : " Custom namespace" ,
938939 "tooltipSix" : " Lifetime means the number of responses never reset" ,
939940 "intelligentSearch" : " Intelligent search" ,
940- "tooltipSeven" : " Allows you to customize part of the URL for your workspace"
941+ "tooltipSeven" : " Allows you to customize part of the URL for your workspace" ,
942+ "customNamespaceTooltip" : " Custom published site URL"
941943 },
942944 "freeLabels" : {
943945 "itemOne" : " Charged per workspace" ,
You can’t perform that action at this time.
0 commit comments