这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .fvmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"flutter": "3.27.2"
"flutter": "3.29.0"
}
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,17 @@ jobs:
flutter-version: ${{ needs.get-flutter-version.outputs.flutter-version }}
cache: true

- name: Get dependencies
run: flutter pub get

- name: Format
run: >
dart format
$(find . -name '*.dart' -not -name '*.g.dart' -and -not -name '*.freezed.dart')
$(find . -name '*.dart'
-not -name '*.freezed.dart'
-not -name '*.g.dart'
-not -name '*.gen.dart'
)

- name: Suggest changes
if: github.event_name == 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dart.flutterSdkPath": ".fvm/versions/3.27.2",
"dart.flutterSdkPath": ".fvm/versions/3.29.0",
"editor.formatOnSave": true,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": false,
Expand Down
1 change: 1 addition & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ linter:
always_use_package_imports: false
prefer_relative_imports: true
prefer_single_quotes: true
require_trailing_commas: false
unawaited_futures: true
1 change: 1 addition & 0 deletions android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ gradle-wrapper.jar
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
.cxx/

# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
Expand Down
6 changes: 3 additions & 3 deletions integration_test/timeline_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ void main() {
ProviderScope(
overrides: [
sharedPreferencesProvider.overrideWithValue(
const FakeSharedPreferences(
{'generalSettings': '{"locale": "enUs"}'},
),
const FakeSharedPreferences({
'generalSettings': '{"locale": "enUs"}',
}),
),
],
child: TranslationProvider(child: const Aria()),
Expand Down
Loading
Loading