From 44cf7a0afa934bcf3235f75680db6116b05d6d0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Tue, 11 Mar 2025 14:03:50 +0000 Subject: [PATCH] Update flutter runtime versions list --- src/Runtimes/Runtimes.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Runtimes/Runtimes.php b/src/Runtimes/Runtimes.php index fa03b8b..fc9df86 100644 --- a/src/Runtimes/Runtimes.php +++ b/src/Runtimes/Runtimes.php @@ -146,8 +146,9 @@ public function __construct(string $version = '') $this->runtimes['static'] = $static; $flutter = new Runtime('flutter', 'Flutter', 'sh helpers/server.sh'); - $flutter->addVersion('3.24', 'dart:3.5.2', 'openruntimes/flutter:'.$this->version.'-3.24', [System::X86, System::ARM64]); - $flutter->addVersion('3.27', 'dart:3.6.1', 'openruntimes/flutter:'.$this->version.'-3.27', [System::X86, System::ARM64]); + $flutter->addVersion('3.24', 'ghcr.io/cirruslabs/flutter:3.24.5', 'openruntimes/flutter:'.$this->version.'-3.24', [System::X86, System::ARM64]); + $flutter->addVersion('3.27', 'ghcr.io/cirruslabs/flutter:3.27.3', 'openruntimes/flutter:'.$this->version.'-3.27', [System::X86, System::ARM64]); + $flutter->addVersion('3.29', 'ghcr.io/cirruslabs/flutter:3.29.1', 'openruntimes/flutter:'.$this->version.'-3.29', [System::X86, System::ARM64]); $this->runtimes['flutter'] = $flutter; }