Skip to content

Commit

Permalink
Merge branch 'release/0.8.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlgj committed Mar 20, 2015
2 parents 6630430 + 55261fa commit 247e441
Show file tree
Hide file tree
Showing 39 changed files with 1,819 additions and 334 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
v0.8.0
Loads of stuff happened this release, so we're bumping version to 0.8.0.
Note as well that there is a small change to `tabsarray` type regarding its title, the title is now
interpolated instead of eval'd. So if you have any problems slap on a `{{ }}` around the tab title.
See the docs on `tabarray` for an more info.

* Custom validation via ngModel.$validators and ngModel.$asyncValidators, thanks @davidlgj
* Inject errors from backend directly to a field with events, thanks @davidlgj, @burdiuz, @jdgblinq
* Icons to `button` type, thanks @maff
* Fixed spoiled comment, thanks @mchapman
* A new `template` field type, insert a angular template, like a mini add-on.
* Support for schema type that allows null, thanks @ulion
* Option groups in selects, thanks @DennisHalmstad
* input group addons, thanks @quietlyconfident
* validationMessages overhaul, nicer validationMessages with interpolation and a new sf-messages
directive for add-on to use. thanks @davidlgj
* interpolation instead of eval'ing in tabarray title, thanks @coridyn
* Lots of bugfixes, most notable checkboxes validation now works, thanks @davidlgj, @coridyn,
@ulion, @adamcbuckley

v0.7.13
-------
* Bugfix for condition, it depended on jQuery
Expand Down
13 changes: 9 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
Contributing
------------
Contributions are welcome!
We love contributions!

**Please base any merge request on the *development* branch instead of *master*.**

The reason for this is that we're trying to use
[git flow](http://danielkummer.github.io/git-flow-cheatsheet/), and it makes merging your pull request heck of a lot easier for us.
[git flow](http://danielkummer.github.io/git-flow-cheatsheet/), and it makes merging your pull
request heck of a lot easier for us.

Please avoid including anything from the `dist/` directory as that can make merging harder, and we always generate these files when we make a new release.
Please avoid including anything from the `dist/` directory as that can make merging harder, and we
always generate these files when we make a new release.

If its a new field type consider making it an add-on instead,
especially if it has dependecies. See [extending Schema Form documentation.](docs/extending.md)
especially if it has external dependencies. See [extending Schema Form documentation.](docs/extending.md)

With new features we love to see updates to the docs as well as tests, that makes it super
easy and fast for us to merge it!

Also consider running any code through the code style checker [jscs](https://github.com/mdevils/node-jscs)
(or even better use it in your editor) with preset set to `google`. You can also us `gulp jscs` to
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Generate forms from JSON schemas using AngularJS!

Web Page
--------
[http://textalk.github.io/angular-schema-form/](http://textalk.github.io/angular-schema-form/)
[schemaform.io](http://schemaform.io)

Demo Time!
----------
Expand Down Expand Up @@ -41,7 +41,10 @@ apart from JSON Form?

Documentation
-------------
There is one section of documentation covering [defaults and form types](docs/index.md). There is another section for how you [extend angular schema form with your own types](https://github.com/Textalk/angular-schema-form/blob/master/docs/extending.md).
You can find [all documentation here](docs/index.md), it covers all the different field types
and their options.

It also covers how to [extend angular schema form with your own field types](https://github.com/Textalk/angular-schema-form/blob/master/docs/extending.md).

Basic Usage
-----------
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dist/schema-form.js",
"dist/bootstrap-decorator.js"
],
"version": "0.7.13",
"version": "0.8.0",
"authors": [
"Textalk",
"David Jensen <david.lgj@gmail.com>",
Expand Down
33 changes: 13 additions & 20 deletions dist/bootstrap-decorator.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bootstrap-decorator.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 247e441

Please sign in to comment.