Skip to content

Commit e527a18

Browse files
authored
chore: bump version 0.7.3 (#6743)
* chore: update changelog * feat: add 'custom namespace' in plan description
1 parent 3f8eb70 commit e527a18

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
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

frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_plan_comparison_dialog.dart

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff 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

675682
class _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

713723
final 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
];

frontend/resources/translations/en.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -935,9 +935,11 @@
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",

0 commit comments

Comments
 (0)