1
0
Fork 0
mirror of https://github.com/kbparagua/paloma synced 2023-03-27 23:21:17 -04:00

Update Changelog.md

This commit is contained in:
Karl Bryan Paragua 2013-03-10 10:16:45 +08:00
parent 2cce846636
commit 694db57c7d

View file

@ -1,6 +1,21 @@
Changelog
=
Version 2.0.0
-
* Change `js_callback` to `js` only.
* Request and Callback details are automatically included on `params` (example: controller, action, namespace, controller_path, etc...)
* Hooks for Rails controller and scaffold generators.
* Change `Paloma.callbacks['namespace/controller/action']` to `Paloma.callbacks['namespace/controller']['action']`.
* `paloma.js` file removed.
* `_callbacks.js` renamed to `_manifest.js`.
* `_local.js` renamed to `_locals.js`.
* Filters are now available (before_filter, after_filter, and around_filter).
* Skip filters are now available (skip_before_filter, skip_after_filter, skip_around_filter).
* Locals can now be easily accessible using the `_l` object.
* Issue javascript warning instead of javascript error when Paloma is not included on `application.js`.
* Codes are now inside closures, to prevent variable clashes.
Version 1.2.0
-
* AddGenerator with multiple actions: `rails g paloma:add namespace/controller action1 action2 action3`