Skip to content

Releases: jails-org/Jails

Cadmus

09 Apr 16:05
Compare
Choose a tag to compare
  • Adding namespace support for public methods. It's now possible to discriminate which component should respond to an event method calling.

It is specially usefull when you have more then 1 component in the same markup, and both has methods with equal names.

In this example, box and view components has .update() public method. To distinguish which one should respond to a method call, you can use namespaces.

<div class="my-component"  data-component="box view"></div>

controller.js

...
var component = this.x('.my-component');

component('box:update'); // Should execute .update() from box component
component('view:update'); // Should execute .update() from view component

component('update'); // Should execute .update() from both components
...

Narcissus

12 Mar 17:04
Compare
Choose a tag to compare

Jails is being very stable, very clean for a long time now, Narcissus version is all about it's beauty and looking.

  • Changing Jails from AMD to UMD format
  • Changing ready class to jls-ready class on the documentElement when Jails is ready.
  • Changing multiple components reference, moving from comma to spaces to be more HTML standard compliant.

1.1.1

22 Jan 14:05
Compare
Choose a tag to compare

Oedipus

Bug fixing

.off() method was present on documentation but not correctly implemented.

Oedipus

06 Dec 20:30
Compare
Choose a tag to compare
  • Jails.render() interface
  • Focusin & Focusout feature

1.0.5

05 Nov 20:14
Compare
Choose a tag to compare
  • Fixing annotations missing after Jails.refresh()
  • Intelligent .refresh()
  • Async Publish/Subscribe
  • Event Delegation fixes

Orpheus

17 Oct 17:11
Compare
Choose a tag to compare

Finally free of jQuery Dependency!

Jails 1.0.0 version is getting more and more simplified, mature and standalone.

  • Builded from scratch using the same philosophy
  • Stand-alone Event Handlers
  • Supporting IE8 and improving potential older browsers by using Adapters
  • Vanilla JS oriented
  • Modules & Components rewritten in Vanilla style and improved

Theseus

11 Sep 20:52
Compare
Choose a tag to compare

Jails is more Mature, more Reliable and Elegant. Looking for simplicity and flexibility.

  • Improvement on performance, exposed .publish() and .subscribe().
  • Added new pub/sub internally.
  • Refactories

Bellerophon

11 Sep 20:55
Compare
Choose a tag to compare

More Modular, Decoupled and Focused on module architecture.

Achilles

11 Sep 21:04
Compare
Choose a tag to compare
Achilles Pre-release
Pre-release

Achilles is the first beta version for production use.

Mark 1

11 Sep 21:02
Compare
Choose a tag to compare
Mark 1 Pre-release
Pre-release

The first attempt to solve all the mistakes from the past, by creating a new framework.
It borns the new Jails idea, an AMD framework that relates modules and components of an application.