Skip to content

Commit b440ad3

Browse files
committed
docs(downloading): update the downloading docs
1 parent 8b2532c commit b440ad3

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

docs/content/misc/downloading.ngdoc

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ development.
1616
production.
1717

1818
To point your code to an angular script on the angular server, use the following template. This
19-
example points to (non-minified) version 0.10.6:
19+
example points to (non-minified) version 1.0.2:
2020

2121
<pre>
2222
<!doctype html>
2323
<html ng-app>
2424
<head>
2525
<title>My Angular App</title>
26-
<script src="http://code.angularjs.org/angular-0.10.6.js"></script>
26+
<script src="http://code.angularjs.org/1.0.2/angular.js"></script>
2727
</head>
2828
<body>
2929
</body>
@@ -42,29 +42,31 @@ Download the version you want and have fun.
4242

4343
Each directory under <http://code.angularjs.org/> includes the following set of files:
4444

45-
* __`angular-<version>.js`__ — This file is non-obfuscated, non-minified, and human-readable by
45+
* __`angular.js`__ — This file is non-obfuscated, non-minified, and human-readable by
4646
opening it it any editor or browser. In order to get better error messages during development, you
4747
should always use this non-minified angular script.
4848

49-
* __`angular-<version>.min.js`__ — This is a minified and obfuscated version of
50-
`angular-<version>.js` created with the Closure compiler. Use this version for production in order
49+
* __`angular.min.js`__ — This is a minified and obfuscated version of
50+
`angular.js` created with the Closure compiler. Use this version for production in order
5151
to minimize the size of the application that is downloaded by your user's browser.
5252

53-
* __`angular-<version>.tgz`__ — This is a tarball archive that contains all of the files released
53+
* __`angular.zip`__ — This is a zip archive that contains all of the files released
5454
for this angular version. Use this file to get everything in a single download.
5555

56-
* __`angular-ie-compat-<version>.js`__ — This is a special file that contains code and data
57-
specifically tailored for getting Internet Explorer to work with angular. If you host your own copy
58-
of angular files, make sure that this file is available for download, and that it resides under the
59-
same parent path as `angular-<version>.js` or `angular-<version>.min.js`.
60-
61-
* __`angular-mocks-<version>.js`__ — This file contains an implementation of mocks that makes
56+
* __`angular-mocks.js`__ — This file contains an implementation of mocks that makes
6257
testing angular apps even easier. Your unit/integration test harness should load this file after
6358
`angular-<version>.js` is loaded.
6459

65-
* __`angular-scenario-<version>.js`__ — This file is a very nifty JavaScript file that allows you
60+
* __`angular-scenario.js`__ — This file is a very nifty JavaScript file that allows you
6661
to write and execute end-to-end tests for angular applications.
6762

68-
* __`docs-<version>`__ — this directory contains all the files that compose the
63+
* __`angular-loader.min.js`__ — Module loader for Angular modules. If you are loading multiple script files containing
64+
Angular modules, you can load them asynchronosuly and in any order as long as you load this file first. Often the
65+
contents of this file are copy&pasted into the `index.html` to avoid even the inial request to `angular-loader.min.js`.
66+
See [angular-seed](https://github.com/angular/angular-seed/blob/master/app/index-async.html) for an example of usage.
67+
68+
* __`angular-resource.js`__, __`angular-cookies.js`__, etc - extra Angular modules with additional functionality.
69+
70+
* __`docs`__ — this directory contains all the files that compose the
6971
<http://docs.angularjs.org/> documentation app. These files are handy to see the older version of
7072
our docs, or even more importantly, view the docs offline.

0 commit comments

Comments
 (0)