misja111
misja111

Reputation: 343

How to use older version of Dart editor

Today, when I was trying to run my dart application in Dartium, I was forced to download a new version (r19425) of the Dart Editor + SDK. However this latest version breaks web_ui due to issue https://code.google.com/p/dart/issues/detail?id=8979, and my project is using the web_ui package.

Until the issue is fixed I would like to use an older version of the editor/sdk. But how should I do that? If I try to use an older build it just forces me to update it again ...

Upvotes: 3

Views: 821

Answers (4)

Alexandre Ardhuin
Alexandre Ardhuin

Reputation: 76193

The older versions of the stable Dart SDK can be downloaded at http://gsdview.appspot.com/dart-archive/channels/stable/release/ . You have to look into the VERSION file contained in every folder to see the public version corresponding to the build number used as folder name.

The versions from the Dev channel are available at http://gsdview.appspot.com/dart-archive/channels/dev/release/ .

Upvotes: 0

Jenny Messerly
Jenny Messerly

Reputation: 466

I've just uploaded 0.4.1+3 for web_ui. Try running "pub update" and let me know if that fixes the problem.

Upvotes: 2

Chris Buckett
Chris Buckett

Reputation: 14398

All the trunk builds (right back to 1141 for nostalgia's sake) are available at this URL:

http://gsdview.appspot.com/dart-editor-archive-integration/

Pick your version, download the relevant archive, and unzip somewhere.

Upvotes: 3

John Evans
John Evans

Reputation: 7383

You can disable the auto-update.

Tools->Preferences->Update

Deselect "Download Updates Automatically"

Upvotes: 0

Related Questions