Skip to content

Commit

Permalink
chore: bump version 1.2.0 (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasXu0 authored Jul 12, 2023
1 parent 5f136df commit d5462ba
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 12 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 1.2.0

_If you are upgrading: please see [`UPGRADING.md`](https://github.com/AppFlowy-IO/appflowy-editor/blob/main/documentation/migration.md)._

* feat: added support for RTL and AUTO direction by @zoli in ([#191](https://github.com/AppFlowy-IO/appflowy-editor/pull/191))
* feat: added support for customizing href behavior by @LucasXu0 in ([#293](https://github.com/AppFlowy-IO/appflowy-editor/pull/293))
* feat: added support for delete key shortcut by @MayurSMahajan in ([#272](https://github.com/AppFlowy-IO/appflowy-editor/pull/272))
* feat: added support customize the font family by @LucasXu0 in ([#300](https://github.com/AppFlowy-IO/appflowy-editor/pull/300))
* fix: slash menu keyword not shows up the option by @johansutrisno in ([#268](https://github.com/AppFlowy-IO/appflowy-editor/pull/268))
* fix: unable to access the slash menu on web platform by @LucasXu0 in ([#303](https://github.com/AppFlowy-IO/appflowy-editor/pull/303))
* chore: change windows and linux command for redo by @MayurSMahajan in ([#294](https://github.com/AppFlowy-IO/appflowy-editor/pull/294))
* chore: optimize the textSpan decorator by @LucasXu0 in ([#290](https://github.com/AppFlowy-IO/appflowy-editor/pull/290))
* chore: remove the reference of the deprecated values by @LucasXu0 in ([#304](https://github.com/AppFlowy-IO/appflowy-editor/pull/304))

## 1.1.0
* feat: support IME by @LucasXu0 in ([#253](https://github.com/AppFlowy-IO/appflowy-editor/pull/253))
* feat: support text and background color in mobile toolbar by @hyj1204 in ([#233](https://github.com/AppFlowy-IO/appflowy-editor/pull/233))
Expand Down
4 changes: 2 additions & 2 deletions documentation/migration.md → documentation/UPGRADING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Migration Guide
# UPGRADING

## From 1.1.0 to 1.2.0
## From 1.1 to 1.2

- `AppFlowyEditor.custom` and `AppFlowyEditor.standard` have been removed. Use `AppFlowyEditor.` instead.
- For now, we provide the default values to the `blockComponentBuilders`, `characterShortcutEvents`, and `commandShortcutEvents` if you do not customize them.
Expand Down
5 changes: 4 additions & 1 deletion lib/l10n/intl_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,8 @@
"customColor": "Custom color",
"hexValue": "Hex value",
"opacity": "Opacity",
"resetToDefaultColor": "Reset to default color"
"resetToDefaultColor": "Reset to default color",
"ltr": "LTR",
"rtl": "RTL",
"auto": "Auto"
}
3 changes: 3 additions & 0 deletions lib/src/l10n/intl/messages_en.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class MessageLookup extends MessageLookupByLibrary {
final messages = _notInlinedMessages(_notInlinedMessages);
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
"addYourLink": MessageLookupByLibrary.simpleMessage("Add your link"),
"auto": MessageLookupByLibrary.simpleMessage("Auto"),
"backgroundColor":
MessageLookupByLibrary.simpleMessage("Background Color"),
"backgroundColorBlue":
Expand Down Expand Up @@ -84,6 +85,7 @@ class MessageLookup extends MessageLookupByLibrary {
"lightLightTint8": MessageLookupByLibrary.simpleMessage("Aqua"),
"lightLightTint9": MessageLookupByLibrary.simpleMessage("Blue"),
"link": MessageLookupByLibrary.simpleMessage("Link"),
"ltr": MessageLookupByLibrary.simpleMessage("LTR"),
"mobileHeading1": MessageLookupByLibrary.simpleMessage("Heading 1"),
"mobileHeading2": MessageLookupByLibrary.simpleMessage("Heading 2"),
"mobileHeading3": MessageLookupByLibrary.simpleMessage("Heading 3"),
Expand All @@ -94,6 +96,7 @@ class MessageLookup extends MessageLookupByLibrary {
"removeLink": MessageLookupByLibrary.simpleMessage("Remove link"),
"resetToDefaultColor":
MessageLookupByLibrary.simpleMessage("Reset to default color"),
"rtl": MessageLookupByLibrary.simpleMessage("RTL"),
"strikethrough": MessageLookupByLibrary.simpleMessage("Strikethrough"),
"text": MessageLookupByLibrary.simpleMessage("Text"),
"textColor": MessageLookupByLibrary.simpleMessage("Text Color"),
Expand Down
16 changes: 8 additions & 8 deletions lib/src/l10n/l10n.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: appflowy_editor
description: A highly customizable rich-text editor for Flutter. The AppFlowy Editor project for AppFlowy and beyond.
version: 1.1.0
version: 1.2.0
homepage: https://github.com/AppFlowy-IO/appflowy-editor

platforms:
Expand Down

0 comments on commit d5462ba

Please sign in to comment.