Is there anywhere I can get (relatively new) stable versions of Dart?

dart

Solution

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

You can download from http://gsdview.appspot.com/dart-archive/channels/stable/release/

The list only contains the build number but each folder contains a file `VERSION` that contains detailed version information for this build.

dev channel releases can be found here http://gsdview.appspot.com/dart-archive/channels/dev/release/

there are also unsigned raw builds (bleeding edge) but it is not recommended to use them. http://gsdview.appspot.com/dart-archive/channels/be/raw/release/

Problem

So I upgraded to 1.4 for a project I am contributing to (in development/testing branch of course) and ran into some problems and thus we want to use Dart 1.3.6 again. However, I cannot find this. Does anyone know where I could download it? I have seen and starred https://code.google.com/p/dart/issues/detail?id=18323 as I was putting this question together, but of course seems like there is no more movement there just yet. I think I pretty much ran into similar issues to what corgath described in comments on this question... looking for the right version in those "archives" where the "latest" is not really the latest anymore.

Original source