Skip to content

Commit

Permalink
release: upgrade to flutter 3.19.0 (#243)
Browse files Browse the repository at this point in the history
Signed-off-by: Hidenori Matsubayashi <[email protected]>
  • Loading branch information
HidenoriMatsubayashi authored Feb 16, 2024
1 parent c02bd16 commit 4268eef
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
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

0 comments on commit 4268eef

Please sign in to comment.