mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2026-01-08 05:10:48 +00:00
chore: bump version 0.7.3 (#6743)
* chore: update changelog * feat: add 'custom namespace' in plan description
This commit is contained in:
parent
3f8eb70ff3
commit
e527a1843e
14
CHANGELOG.md
14
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
|
||||
|
||||
@ -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,
|
||||
),
|
||||
];
|
||||
|
||||
@ -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",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user