Skip to content

Commit

Permalink
chore: bump version 0.7.3 (#6743)
Browse files Browse the repository at this point in the history
* chore: update changelog

* feat: add 'custom namespace' in plan description
  • Loading branch information
LucasXu0 authored Nov 8, 2024
1 parent 3f8eb70 commit e527a18
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -708,6 +715,9 @@ final List<_CellItem> _freeLabels = [
_CellItem(
label: LocaleKeys.settings_comparePlanDialog_freeLabels_itemFileUpload.tr(),
),
const _CellItem(
label: '',
),
];

final List<_CellItem> _proLabels = [
Expand Down Expand Up @@ -739,4 +749,8 @@ final List<_CellItem> _proLabels = [
_CellItem(
label: LocaleKeys.settings_comparePlanDialog_proLabels_itemFileUpload.tr(),
),
const _CellItem(
label: '',
icon: FlowySvgs.check_m,
),
];
4 changes: 3 additions & 1 deletion frontend/resources/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit e527a18

Please sign in to comment.