Update to flutter-2.8.0 (#68)
Updated to the flutter 2.8.0. See also: - https://github.com/sony/flutter-embedded-linux/releases/tag/40a99c5951 - https://github.com/flutter/flutter/tree/2.8.0
This commit is contained in:
committed by
GitHub
parent
fad1d30ae7
commit
0e4107e829
@@ -1 +1 @@
|
||||
d3ea636dc5d16b56819f3266241e1f708979c233
|
||||
40a99c595137e4b2f5b2efa8ff343ea23c1e16b8
|
||||
|
||||
@@ -1 +1 @@
|
||||
18116933e77adc82f80866c928266a5b4f1ed645
|
||||
cf4400006550b70f28e4b4af815151d1e74846c6
|
||||
|
||||
@@ -279,12 +279,12 @@ class ELinuxUpgradeCommandRunner {
|
||||
/// Source: [runCommandSecondHalf] in `upgrade.dart`
|
||||
Future<void> runCommandSecondHalf() async {
|
||||
// Make sure the welcome message re-display is delayed until the end.
|
||||
globals.persistentToolState.redisplayWelcomeMessage = false;
|
||||
globals.persistentToolState.setShouldRedisplayWelcomeMessage(false);
|
||||
await precacheArtifacts();
|
||||
await updatePackages();
|
||||
await runDoctor();
|
||||
// Force the welcome message to re-display following the upgrade.
|
||||
globals.persistentToolState.redisplayWelcomeMessage = true;
|
||||
globals.persistentToolState.setShouldRedisplayWelcomeMessage(true);
|
||||
}
|
||||
|
||||
/// Source: [precacheArtifacts] in `upgrade.dart`
|
||||
|
||||
@@ -164,8 +164,8 @@ class ELinuxDevice extends Device {
|
||||
final ProtocolDiscovery discovery = ProtocolDiscovery.observatory(
|
||||
_logReader,
|
||||
portForwarder: _config.usesPortForwarding ? portForwarder : null,
|
||||
hostPort: null,
|
||||
devicePort: null,
|
||||
hostPort: debuggingOptions?.hostVmServicePort,
|
||||
devicePort: debuggingOptions?.deviceVmServicePort,
|
||||
logger: _logger,
|
||||
ipv6: ipv6,
|
||||
);
|
||||
|
||||
@@ -77,7 +77,7 @@ class ELinuxRemoteDevicesConfig {
|
||||
for (final MapEntry<int, dynamic> entry in typedList.asMap().entries) {
|
||||
try {
|
||||
revived.add(ELinuxRemoteDeviceConfig.fromJson(entry.value));
|
||||
} on ELinuxRemoteDeviceRevivalException catch (e) {
|
||||
} on ELinuxRemoteDeviceRevivalException catch (_) {
|
||||
// TODO(hidenori): Corrensponds to the format difference
|
||||
// from the default schema and uncooment here.
|
||||
//
|
||||
|
||||
@@ -141,7 +141,6 @@ Future<void> main(List<String> args) async {
|
||||
stdio: globals.stdio,
|
||||
terminal: globals.terminal,
|
||||
outputPreferences: globals.outputPreferences,
|
||||
stopwatchFactory: const StopwatchFactory(),
|
||||
)),
|
||||
},
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user