Old Ionic Nightly

I’m trying to dabble with the new v0.9.19-alpha release in Plunker. However, the old v0.9.17 release is what’s coming up : http://code.ionicframework.com/nightly/js/ionic.js

/*!
 * Copyright 2013 Drifty Co.
 * http://drifty.com/
 *
 * Ionic, v0.9.17
 * A powerful HTML5 mobile app framework.
 * http://ionicframework.com/
 *
 * By @maxlynch, @helloimben, @adamdbradley <3
 *
 * Licensed under the MIT license. Please see LICENSE for more information.
 *
 */;

// Create namespaces 

How can we get access to the new one via Plunker? Also, is there any way to get different releases via the CDN? I tried dabbling with the URL to get different versions or even a directory listing but no luck.

Well I can’t say about plunker, but personally I use bower locally
Since this project is on heavy development and I point it to “master” branch.
When I get to work on my project I simply do “bower update” to get the latest changes (I’m on development atm so I don’t mind things breaking).
My bower.json is:

{
  "name": "package",
  "version": "0.0.0",
  "dependencies": {
    "ionic": "master"
  }
}

My .bowerrc:

{
    "directory": "www/components"
}

And my index.html has:

<html lang="en" ng-app="myApp">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">

    <!-- ionic css -->
    <link href="components/ionic/dist/css/ionic.css" rel="stylesheet">

    <!-- your app's css -->
    <link href="css/styles.css" rel="stylesheet">

    <!-- ionic/angularjs scripts -->
    <script src="components/ionic/dist/js/ionic.js"></script>
    <script src="components/ionic/dist/js/angular/angular.js"></script>
    <script src="components/ionic/dist/js/angular/angular-animate.js"></script>
    <script src="components/ionic/dist/js/angular/angular-route.js"></script>
    <script src="components/ionic/dist/js/angular/angular-resource.js"></script>
    <script src="components/ionic/dist/js/angular/angular-touch.js"></script>
    <script src="components/ionic/dist/js/angular/angular-sanitize.js"></script>
    <script src="components/ionic/dist/js/ionic-angular.js"></script>

That’s what I’m doing locally as well. However, without have a publicly accessible link to the newest releases, it’s fought to share samples and show bugs via Plunker.

Our demo’s will be mostly using exact versions from now on and I recommend the same for anyone creating plunkers or codepen’s.

This is the CDN you can use, and the version numbers will be changing as we move forward:
http://code.ionicframework.com/0.9.19/js/ionic-angular.js

The homepage of the CDN has references to each available version now:
http://code.ionicframework.com/