Skip to content

Commit

Permalink
release 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
unscriptable committed Aug 16, 2011
1 parent 6745298 commit cc7c383
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 21 deletions.
33 changes: 20 additions & 13 deletions README.md
@@ -1,22 +1,29 @@
curl (cujo resource loader)
=====================

version 0.5
version 0.5.1

What's New?

* dojo 1.6 support has been moved to separate module (curl/dojo16Compat)
* curl/domReady now returns a callback function (not a promise)
* new async! plugin to allow a module to defer definition
* new css! plugin that inlines css into javascript when used with cram
* cram (AMD builder) support (css! and async! plugins)
* `require` is no longer an alias for `curl` unless you set the
`apiName` config param to "require"
* configuration parameters for plugins are now defined in a sub-object
of the main config object: { css: { cssOption: true } }
* Fixed !order option for js! plugin in non-Firefox browsers (0.4.3)
* Fixed the compiled version in 0.4.2 (dist/ folder)
* Several fixes to path and package mapping were made in 0.4.1
* 0.5.1:
* fixes to domReady! in the compiled dist/ versions and
* fixes for commonjs compatibility caused by google-closure in dist/
versions
* support for parent module ids (../sibling-of-parent)
* 0.5:
* dojo 1.6 support has been moved to separate module (curl/dojo16Compat)
* curl/domReady now returns a callback function (not a promise)
* new async! plugin to allow a module to defer definition
* new css! plugin that inlines css into javascript when used with cram
* cram (AMD builder) support (css! and async! plugins)
* `require` is no longer an alias for `curl` unless you set the
`apiName` config param to "require"
* configuration parameters for plugins are now defined in a sub-object
of the main config object: { css: { cssOption: true } }
* earlier:
* Fixed !order option for js! plugin in non-Firefox browsers (0.4.3)
* Fixed the compiled version in 0.4.2 (dist/ folder)
* Several fixes to path and package mapping were made in 0.4.1

TODO:

Expand Down
4 changes: 2 additions & 2 deletions dist/curl-for-dojo1.6/curl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/curl-kitchen-sink/curl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/curl-with-js-and-domReady/curl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/curl/curl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/curl.js
Expand Up @@ -41,7 +41,7 @@
*/

var
version = '0.5',
version = '0.5.1',
head = doc['head'] || doc.getElementsByTagName('head')[0],
// configuration information
baseUrl,
Expand Down

0 comments on commit cc7c383

Please sign in to comment.