Skip to content

Releases: Platypi/platypusts

v0.9.9

19 Dec 20:36
Compare
Choose a tag to compare

Breaking change in all plat.Utils iterator functions:

The argument order has been switched in all the iterator functions so that they are callback-first. This is to allow for better function currying.

The pluck function arguments have also been switched.

v0.9.8

09 Dec 02:13
Compare
Choose a tag to compare

fixes issue with Regex.prototype.fullUrlRegex matching non-full urls.

v0.9.7

09 Dec 00:32
Compare
Choose a tag to compare

Breaking Change

You must now use TypeScript >= 1.3

This release has the "protected" keyword implemented, and therefor requires tsc>=1.3.

v0.9.6

09 Dec 00:19
Compare
Choose a tag to compare
  • Fixes ajax issues on mobile
  • Adds better one-time databinding support

v0.9.5

18 Nov 18:06
Compare
Choose a tag to compare

This is the final release before we update to TypeScript 1.3. The next release will break builds that are using TypeScript < 1.3 (because we are going to be implementing the protected keyword).

Breaking Changes for this release:

Anchor control is now a Link (plat-link). You will no longer get any functionality from <a> tags by default (apart from using plat-href). You can quickly patch this by doing something like the following:

plat.register.control('a', plat.ui.controls.Link);

The above code will make anchor tags work as they previously were. The reasoning behind the change is that we do not want to limit the potential use cases of anchor tags. The Link control becomes an anchor tag and functions just like anchor tags (uses href, etc), so the styling should remain the same.

v0.9.4

07 Nov 02:43
Compare
Choose a tag to compare

Fixes breaking change with anchor tag, enabling you to specify that the anchor tag should not normalize the href.

Fixes bug with the base url for hash-based routing.

0.9.3

06 Nov 23:39
Compare
Choose a tag to compare
Merge branch 'dev'