Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I download older versions of Dart SDK

Tags:

dart

I need to get an older version of Dart SDK to troubleshoot a problem. Specifically Dart SDK 1.5.1 but the current stable release on dartlang is 1.6.0.

Is there a URL that will get me all the past SDK releases for Linux or MacOs

like image 333
Deane Avatar asked Oct 16 '25 15:10

Deane


1 Answers

Update

There is now a nice page to select and download specific Dart versions https://www.dartlang.org/tools/download-archive/

Since a while there are also deb packages available which can be installed using

sudo apt-get install dart=1.7.0-dev.0.1.*

see https://www.dartlang.org/tools/debian.html for more details.

Original

Currently you can download from

http://gsdview.appspot.com/dart-archive/channels/stable/release/

The directories are build numbers not version numbers. The directories contain a VERSION with detailed version information.

Other channels can be accessed by using

dev or be instead of stable for development or bleeding edge builds.

A more user friendly way is work in progress.

like image 88
Günter Zöchbauer Avatar answered Oct 18 '25 11:10

Günter Zöchbauer