Skip to content

Commit

Permalink
chore: bump version 0.7.3 (AppFlowy-IO#6692)
Browse files Browse the repository at this point in the history
* chore: bump version 0.7.3

* fix: windows ci
  • Loading branch information
LucasXu0 authored Nov 1, 2024
1 parent 0e5ff84 commit 910b643
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
CARGO_MAKE_CRATE_FS_NAME = "dart_ffi"
CARGO_MAKE_CRATE_NAME = "dart-ffi"
LIB_NAME = "dart_ffi"
APPFLOWY_VERSION = "0.7.2"
APPFLOWY_VERSION = "0.7.3"
FLUTTER_DESKTOP_FEATURES = "dart"
PRODUCT_NAME = "AppFlowy"
MACOSX_DEPLOYMENT_TARGET = "11.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import 'package:easy_localization/easy_localization.dart';
import 'package:flowy_infra_ui/flowy_infra_ui.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:universal_platform/universal_platform.dart';

class SmartEditBlockKeys {
const SmartEditBlockKeys._();
Expand Down Expand Up @@ -120,6 +121,10 @@ class _SmartEditBlockComponentWidgetState

@override
Widget build(BuildContext context) {
if (UniversalPlatform.isMobile) {
return const SizedBox.shrink();
}

final width = _getEditorWidth();

return BlocProvider.value(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
file: ^7.0.0

dev_dependencies:
build_runner: ^2.2.0
build_runner: ^2.4.9
flutter_lints: ^3.0.1
freezed: ^2.4.7
json_serializable: ^6.5.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ dependencies:
path: ../flowy_svg

dev_dependencies:
build_runner: ^2.4.9
provider: ^6.0.5
flutter_test:
sdk: flutter
Expand Down
4 changes: 2 additions & 2 deletions frontend/appflowy_flutter/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ packages:
dependency: "direct main"
description:
path: "."
ref: "4081fb7"
resolved-ref: "4081fb756311c6d249f45efbeb59e4cd2a7db530"
ref: eccb244
resolved-ref: eccb24452a451c734bc2aeae56c1fd81398d849c
url: "https://github.com/AppFlowy-IO/appflowy-editor.git"
source: git
version: "4.0.0"
Expand Down
4 changes: 2 additions & 2 deletions frontend/appflowy_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Bring projects, wikis, and teams together with AI. AppFlowy is an
your data. The best open source alternative to Notion.
publish_to: "none"

version: 0.7.2
version: 0.7.3

environment:
flutter: ">=3.22.0"
Expand Down Expand Up @@ -172,7 +172,7 @@ dependency_overrides:
appflowy_editor:
git:
url: https://github.com/AppFlowy-IO/appflowy-editor.git
ref: "4081fb7"
ref: "eccb244"

appflowy_editor_plugins:
git:
Expand Down

0 comments on commit 910b643

Please sign in to comment.