Skip to content

Commit

Permalink
Updating doc versions for a release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrburke committed Oct 16, 2010
1 parent 6aa3225 commit 89d4ecd
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The standard require.js file is around 5KB when minified via Closure Compiler an

RequireJS works in IE 6+, Firefox 2+, Safari 3.2+, Chrome 3+, and Opera 10+.

Latest Release: [0.14.3](http://requirejs.org/docs/download.html)
Latest Release: [0.14.4](http://requirejs.org/docs/download.html)

* [Start](requirejs/tree/master/docs/start.md)
* [Using it with jQuery](requirejs/tree/master/docs/jquery.md)
Expand Down
2 changes: 1 addition & 1 deletion dist/pre.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@
<li class="section"><a href="http://github.com/jrburke/requirejs">GitHub</a></li>
<li><a class="local" href="contributing.html">Contributing</a></li>

<li class="section">0.14.3 Docs</li>
<li class="section">0.14.4 Docs</li>
</ul>
<div id="content">
33 changes: 19 additions & 14 deletions docs/download.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,47 @@
# Download RequireJS

### Latest Release: 0.14.3
### Latest Release: 0.14.4

* Support for **define()**. It works the same as **require.def()**. It is supported in order to conform with the [Asynchronous Module Proposal](http://wiki.commonjs.org/wiki/Modules/AsynchronousDefinition). require.def will continue to work, but you are encouraged to gradually migrate to define() for better compatibly with other Async Module loaders.
* text! plugin now works in Node.
* __dirname and __filename support in the r.js Node adapter.
* [Bug fix for priority option](http://github.com/jrburke/requirejs/commit/79188c726f90aefa34a16435e929a7bb98098358).
* GPL license option removed: project is now just MIT and new BSD dual-licensed, since the new BSD license is compatible with the GPL.
* Support jQuery 1.4.3. The bundled RequireJS+jQuery bundle now uses RequireJS 1.4.3, and it is now possible to load jQuery directly from a CDN.
* Remove the Transport D pre-built option from the download page. The Transport D adapter is still in the source bundler though.

#### <a name="requirejs">require.js</a> [Minified](http://requirejs.org/docs/release/0.14.3/minified/require.js) | [With Comments](http://requirejs.org/docs/release/0.14.3/comments/require.js)
#### <a name="requirejs">require.js</a> [Minified](http://requirejs.org/docs/release/0.14.4/minified/require.js) | [With Comments](http://requirejs.org/docs/release/0.14.4/comments/require.js)

All you need to start using require.js in the browser. Does not include i18n, text, order, JSONP plugins or Node/Rhino support.

#### <a name="requirejsplugins">require.js with plugins</a> [Minified](http://requirejs.org/docs/release/0.14.3/minified/allplugins-require.js) | [With Comments](http://requirejs.org/docs/release/0.14.3/comments/allplugins-require.js)
#### <a name="requirejsplugins">require.js with plugins</a> [Minified](http://requirejs.org/docs/release/0.14.4/minified/allplugins-require.js) | [With Comments](http://requirejs.org/docs/release/0.14.4/comments/allplugins-require.js)

require.js for use in the browser with the i18n, text, order and JSONP plugins included.

#### <a name="jqueryrequirejs">jQuery 1.4.2 with require()</a> [Minified](http://requirejs.org/docs/release/0.14.3/minified/require-jquery-1.4.2.js) | [With Comments](http://requirejs.org/docs/release/0.14.3/comments/require-jquery-1.4.2.js)
#### <a name="jqueryrequirejs">jQuery 1.4.2 with require()</a> [Minified](http://requirejs.org/docs/release/0.14.4/minified/require-jquery-1.4.2.js) | [With Comments](http://requirejs.org/docs/release/0.14.4/comments/require-jquery-1.4.2.js)

A build of jQuery with integrated require() support. **Does not include** RequireJS plugin support, so the i18n, text, order, JSONP plugins will not work with this build.

#### <a name="jqueryrequirejsplugins">jQuery 1.4.2 with require() and plugins</a> [Minified](http://requirejs.org/docs/release/0.14.3/minified/requireplugins-jquery-1.4.2.js) | [With Comments](http://requirejs.org/docs/release/0.14.3/comments/requireplugins-jquery-1.4.2.js)
#### <a name="jqueryrequirejsplugins">jQuery 1.4.2 with require() and plugins</a> [Minified](http://requirejs.org/docs/release/0.14.4/minified/requireplugins-jquery-1.4.2.js) | [With Comments](http://requirejs.org/docs/release/0.14.4/comments/requireplugins-jquery-1.4.2.js)

A build of jQuery with integrated require() support that includes plugin support, including the i18n, text, order and JSONP plugins.

<hr>

#### <a name="samplejquery">Sample jQuery 1.4.2 project with require()</a> [Download](http://requirejs.org/docs/release/0.14.3/jquery-require-sample.zip)
#### <a name="samplejquery">Sample jQuery 1.4.2 project with require()</a> [Download](http://requirejs.org/docs/release/0.14.4/jquery-require-sample.zip)

A zip file containing a build of jQuery with integrated require() support, with an sample project included to show how it can be used when using jQuery. **Does not include** RequireJS plugin support, so the i18n, text, order, JSONP plugins will not work with this build.

<hr>

#### <a name="node">RequireJS adapter for Node</a>

**[r.js](http://requirejs.org/docs/release/0.14.3/node/r.js)**: use this file if you want to code to the RequireJS module format in Node. The [Node instructions](node.md) explain how to use it. It includes all the code needed for RequireJS to function with Node.
**[r.js](http://requirejs.org/docs/release/0.14.4/node/r.js)**: use this file if you want to code to the RequireJS module format in Node. The [Node instructions](node.md) explain how to use it. It includes all the code needed for RequireJS to function with Node.

**[index.js](http://requirejs.org/docs/release/0.14.3/node/index.js)**: the standard HTTP server-based Hello World app for Node, but coded to work with the r.js adapter. Download it in the same directory as r.js and then run this command:
**[index.js](http://requirejs.org/docs/release/0.14.4/node/index.js)**: the standard HTTP server-based Hello World app for Node, but coded to work with the r.js adapter. Download it in the same directory as r.js and then run this command:

node r.js index.js

Then you can go to http://127.0.0.1:8000/ and see "Hello World" printed after about 2 seconds.

<hr>

#### <a name="optimizationtool">Optimization Tool / Full Source</a> [Download](http://requirejs.org/docs/release/0.14.3/requirejs-0.14.3.zip)
#### <a name="optimizationtool">Optimization Tool / Full Source</a> [Download](http://requirejs.org/docs/release/0.14.4/requirejs-0.14.4.zip)

A zip file that is the optimization tool for RequireJS. It also includes the full source for require.js and its plugins.

Expand All @@ -56,6 +53,14 @@ If you want to use RequireJS in Rhino, you should use this download.

### Previous releases

### 0.14.3

* Support for **define()**. It works the same as **require.def()**. It is supported in order to conform with the [Asynchronous Module Proposal](http://wiki.commonjs.org/wiki/Modules/AsynchronousDefinition). require.def will continue to work, but you are encouraged to gradually migrate to define() for better compatibly with other Async Module loaders.
* text! plugin now works in Node.
* __dirname and __filename support in the r.js Node adapter.
* [Bug fix for priority option](http://github.com/jrburke/requirejs/commit/79188c726f90aefa34a16435e929a7bb98098358).
* GPL license option removed: project is now just MIT and new BSD dual-licensed, since the new BSD license is compatible with the GPL.

### 0.14.2

* Bug fixes:
Expand Down
2 changes: 1 addition & 1 deletion require.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ setInterval: false, importScripts: false, jQuery: false */
var require, define;
(function () {
//Change this version number for each release.
var version = "0.14.3",
var version = "0.14.4",
empty = {}, s,
i, defContextName = "_", contextLoads = [],
scripts, script, rePkg, src, m, dataMain, cfg = {}, setReadyState,
Expand Down

0 comments on commit 89d4ecd

Please sign in to comment.