Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: upgrade to flutter 3.19.0 #243

Merged
merged 1 commit into from
Feb 16, 2024
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/internal/engine.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f40e976bedff57e69e1b3d89a7c2a3c617a03dad
04817c99c9fd4956f27505204f7e344335810aed
4 changes: 2 additions & 2 deletions bin/internal/flutter.version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
41456452f29d64e8deb623a3c927524bcf9f111b
3.16.9
bae5e49bc2a867403c43b2aae2de8f8c33b037e4
3.19.0
3 changes: 3 additions & 0 deletions lib/commands/build.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ import '../elinux_plugins.dart';
class ELinuxBuildCommand extends BuildCommand {
ELinuxBuildCommand({bool verboseHelp = false})
: super(
artifacts: globals.artifacts!,
fileSystem: globals.fs,
buildSystem: globals.buildSystem,
osUtils: globals.os,
processUtils: globals.processUtils,
verboseHelp: verboseHelp,
androidSdk: globals.androidSdk,
logger: globals.logger,
Expand Down Expand Up @@ -138,6 +140,7 @@ class BuildPackageCommand extends BuildSubCommand
targetFile: targetFile,
eLinuxBuildInfo: eLinuxBuildInfo,
sizeAnalyzer: SizeAnalyzer(
analytics: globals.analytics,
fileSystem: globals.fs,
logger: globals.logger,
flutterUsage: globals.flutterUsage,
Expand Down
1 change: 1 addition & 0 deletions lib/elinux_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ class ELinuxBuilder {
processManager: globals.processManager,
platform: globals.platform,
usage: globals.flutterUsage,
analytics: globals.analytics,
);

final Target target = buildInfo.isDebug
Expand Down
6 changes: 5 additions & 1 deletion lib/executable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import 'package:flutter_tools/runner.dart' as runner;
import 'package:flutter_tools/src/application_package.dart';
import 'package:flutter_tools/src/artifacts.dart';
import 'package:flutter_tools/src/base/context.dart';
import 'package:flutter_tools/src/base/io.dart';
import 'package:flutter_tools/src/base/logger.dart';
import 'package:flutter_tools/src/base/template.dart';
import 'package:flutter_tools/src/cache.dart';
Expand Down Expand Up @@ -92,7 +93,10 @@ Future<void> main(List<String> args) async {
processManager: globals.processManager,
),
InstallCommand(verboseHelp: verboseHelp),
LogsCommand(),
LogsCommand(
sigint: ProcessSignal.sigint,
sigterm: ProcessSignal.sigterm,
),
ScreenshotCommand(fs: globals.fs),
SymbolizeCommand(stdio: globals.stdio, fileSystem: globals.fs),
ELinuxUpgradeCommand(verboseHelp: verboseHelp),
Expand Down
Loading