You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.7 KiB
1.7 KiB
Change log
v1.3.2
- Increase underscore range
- Minor underscore refactors
v1.3.1
- Fix UMD setup and build process
v1.3.0
- Add Wreqr.noConflict()
- Add Wreqr.VERSION
- Fixed a bug where reqres would not return a value using the 'top-level' Channel API.
v1.2.1
- Remove AMD builds and add a single UMD style build.
v1.2.0
- Adds Radio, allowing you to create explicit namespaces called Channels. A Channel is made up of an instance of each of the three messaging systems.
v1.1.0
- Removes the Error on unhandled commands/requests
v1.0.1
- update dependencies
v1.0.0
- major version release
- minor fixes
v0.2.0
-
Handlers (Commands/RequestResponse)
- BREAKING: renamed
addHandler
tosetHandler
to clarify the point of single handlers per named item - Allow an
initialize
function when extending from the base type - Added a
setHandlers
function that takes an object literal as the parameter, to configure multiple handlers in a single call
- BREAKING: renamed
-
Commands
- Introduced Wreqr.CommandStorage to store commands for later execution
- When a command has no handler, it will be stored for later execution
- When a handler for a stored command is added, the stored command will be executed
-
Updated build process to use Grunt v0.4
v0.1.1
- Fixed "option strict" to be "use strict" ... #facepalm :P
- Added jam package config
v0.1.0
- Fix calls to
.apply
to account for IE < 9 throwing an error whenarguments
is null or undefined
v0.0.1
-
Commands
- Can specify multiple arguments for
execute
method
- Can specify multiple arguments for
-
RequestResponse
- Can speicfy multiple arguments for
request
method
- Can speicfy multiple arguments for
v0.0.0
- Initial release