Skip to content

Commit d1ec0e6

Browse files
committed
Merge branch 'release/0.8.3'
2 parents 707cb0c + 43ad3bf commit d1ec0e6

30 files changed

+2179
-511
lines changed

CHANGELOG

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1+
v0.8.3
2+
------
3+
* "destroyStrategy" support, thanks @jbsaff! This means that `condition` can now remove values
4+
from the model when their fields are hidden.
5+
* Bugfix for global option propagation, thanks @golfmat1
6+
* `notitle` now works on fieldset as well, thanks @stramel
7+
* `trackBy` on selects, thanks @Fridus
8+
* update list variable when watching for array changes, thanks @lukebennet
9+
* doc changes for the "save to gist" feature, thanks @niklasb
10+
* validation error message mixups, thanks @leipert
11+
* ObjectPath, deps and browserify fixes, thanks @saller, @LoicMahieu, @thardyman, @davidlgj
12+
113
v0.8.2
214
-------
3-
* Fix embarrassing typo in package.json
15+
* Fix embarrassing typo in package.json
416

517
v0.8.1
618
------

README.md

+20-11
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,29 @@
11
Angular Schema Form
22
===================
3-
[![Build Status](https://travis-ci.org/Textalk/angular-schema-form.svg?branch=master)](https://travis-ci.org/Textalk/angular-schema-form)
4-
[![Coverage Status](https://coveralls.io/repos/Textalk/angular-schema-form/badge.png?branch=master)](https://coveralls.io/r/Textalk/angular-schema-form?branch=development)
5-
[![Bower version](https://badge.fury.io/bo/angular-schema-form.svg)](http://badge.fury.io/bo/angular-schema-form)
6-
[![npm version](https://badge.fury.io/js/angular-schema-form.svg)](http://badge.fury.io/js/angular-schema-form)
3+
[![bower version](https://img.shields.io/bower/v/angular-schema-form.svg?style=flat-square)](#bower)
4+
[![npm version](https://img.shields.io/npm/v/angular-schema-form.svg?style=flat-square)](https://www.npmjs.org/package/angular-schema-form)
5+
[![npm downloads](https://img.shields.io/npm/dm/angular-schema-form.svg?style=flat-square)](http://npm-stat.com/charts.html?package=angular-schema-form&from=2015-01-01)
6+
[![Gitter](https://img.shields.io/badge/GITTER-JOIN%20CHAT%20%E2%86%92-ff69b4.svg?style=flat-square)](https://gitter.im/Textalk/angular-schema-form?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
7+
[![Build Status](https://img.shields.io/travis/Textalk/angular-schema-form.svg?style=flat-square)](https://travis-ci.org/Textalk/angular-schema-form)
8+
[![Build Status](https://img.shields.io/coveralls/jekyll/jekyll.svg?style=flat-square)](https://coveralls.io/r/Textalk/angular-schema-form?branch=development)
9+
10+
11+
712

813

914
Generate forms from JSON schemas using AngularJS!
1015

11-
Web Page / Twitter
16+
The Web Site / The Twitter / The Movie
1217
--------
13-
[schemaform.io](http://schemaform.io) / [@SchemaFormIO](http://twitter.com/SchemaFormIO)
18+
[schemaform.io](http://schemaform.io) / [@SchemaFormIO](http://twitter.com/SchemaFormIO) / [Movie](https://www.youtube.com/watch?v=duBFMipRq2o)
19+
20+
If you use ASF in your project/company please let us know! We'd love to feature you on the site.
1421

1522
Demo Time!
1623
----------
1724
[Try out the example page](http://schemaform.io/examples/bootstrap-example.html). Try editing the schema or form definition and see what comes out!
1825

19-
Now you can save your code and share it!
26+
Hint: By pressing the 'Save to gist' button (top left), you can save your example into a shareable link.
2027

2128
What is it?
2229
----------
@@ -100,6 +107,8 @@ bower install angular-schema-form
100107
This will install the latest release and basic dependencies. See
101108
[dependecies section below](#dependencies).
102109

110+
You can also load the files via [cdnjs.com](https://cdnjs.com/libraries/angular-schema-form).
111+
103112
### Manual
104113

105114
You can also just download the contents of the `dist/` folder and add dependencies manually.
@@ -131,7 +140,7 @@ The minified files include templates - no need to load additional HTML files.
131140
### Script Loading
132141

133142
Schema form is split into two main files, `dist/schema-form.min.js` and
134-
`dist/boostrap-decorator.min.js` and they need be loaded in that order. AngularJ,
143+
`dist/boostrap-decorator.min.js` and they need be loaded in that order. AngularJS,
135144
[tv4](https://github.com/geraintluff/tv4) and [objectpath](https://github.com/mike-marcacci/objectpath)
136145
also needs to be loaded *before* Schema Form.
137146

@@ -190,10 +199,10 @@ Unit tests are run with [karma](http://karma-runner.github.io) and written using
190199

191200
To run the tests:
192201

193-
1. Install all dependencies via NPM
202+
1. Install all dependencies via NPM.
194203
2. Install dev dependencies with bower.
195-
3. Install the Karma CLI
196-
4. Run the tests
204+
3. Install the Karma CLI.
205+
4. Run the tests.
197206

198207
```bash
199208
$ npm install

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dist/schema-form.js",
55
"dist/bootstrap-decorator.js"
66
],
7-
"version": "0.8.2",
7+
"version": "0.8.3",
88
"authors": [
99
"Textalk",
1010
"David Jensen <[email protected]>",

dist/bootstrap-decorator.js

+30-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)