forked from AppFlowy-IO/AppFlowy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: Merge branch 'main' into feat/time-field-type-2
* main: (25 commits) fix: sidebar issues (AppFlowy-IO#5444) fix: notification test (AppFlowy-IO#5440) fix: some list icons don't align with the paragraph (AppFlowy-IO#5439) feat: integrate show notification button option (AppFlowy-IO#5302) feat: add border to selected unsplash image (AppFlowy-IO#5428) feat: sidebar UI Revamp on mobile (AppFlowy-IO#5418) chore: update German translations with Fink 🐦 (AppFlowy-IO#5421) chore: update Spanish translations (AppFlowy-IO#5205) feat: video block support (AppFlowy-IO#5199) feat: add reset app scale hotkey (AppFlowy-IO#5386) fix: sidebar issues on Windows and Linux (AppFlowy-IO#5431) feat: support web layout setting and breadcrumbs (AppFlowy-IO#5425) fix: dragging the Unsplash cover triggers an assertion error (AppFlowy-IO#5404) chore: improve hover and text colors in dark mode (AppFlowy-IO#5416) fix: accept multi-key combination for customizing shortcuts & removes duplicates (AppFlowy-IO#5414) feat: sidebar UI Revamp on Desktop (AppFlowy-IO#5343) fix: default text direction not synced (AppFlowy-IO#5405) chore: update German translations (AppFlowy-IO#5382) feat: support preview grid/board/calendar block on web (AppFlowy-IO#5401) feat: support open row page (AppFlowy-IO#5400) ...
- Loading branch information
Showing
568 changed files
with
11,666 additions
and
5,092 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- "*" | ||
|
||
env: | ||
FLUTTER_VERSION: "3.19.0" | ||
FLUTTER_VERSION: "3.22.0" | ||
RUST_TOOLCHAIN: "1.77.2" | ||
|
||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
frontend/appflowy_flutter/integration_test/desktop/board/board_test_runner.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
frontend/appflowy_flutter/integration_test/desktop/document/document_more_actions_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import 'package:appflowy/workspace/presentation/home/menu/view/view_item.dart'; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
import 'package:integration_test/integration_test.dart'; | ||
|
||
import '../../shared/util.dart'; | ||
|
||
void main() { | ||
IntegrationTestWidgetsFlutterBinding.ensureInitialized(); | ||
|
||
group('MoreViewActions', () { | ||
testWidgets('can duplicate and delete from menu', (tester) async { | ||
await tester.initializeAppFlowy(); | ||
await tester.tapAnonymousSignInButton(); | ||
await tester.pumpAndSettle(); | ||
|
||
final pageFinder = find.byType(ViewItem); | ||
expect(pageFinder, findsNWidgets(1)); | ||
|
||
// Duplicate | ||
await tester.openMoreViewActions(); | ||
await tester.duplicateByMoreViewActions(); | ||
await tester.pumpAndSettle(); | ||
|
||
expect(pageFinder, findsNWidgets(2)); | ||
|
||
// Delete | ||
await tester.openMoreViewActions(); | ||
await tester.deleteByMoreViewActions(); | ||
await tester.pumpAndSettle(); | ||
|
||
expect(pageFinder, findsNWidgets(1)); | ||
}); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.