diff --git a/CHANGELOG.md b/CHANGELOG.md index e76de1b7..cd88ccd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ CHANGELOG ========= +v1.0.5 - 5 Apr. 2017 +--------------------- + +- Fix view disabling not working on initialized views +[\#1334](https://github.com/marmelab/ng-admin/pull/1336) +([floo51](https://github.com/floo51)) v1.0.3 - 3 Apr. 2017 --------------------- diff --git a/examples/blog/config.js b/examples/blog/config.js index af7a147f..e9f13810 100644 --- a/examples/blog/config.js +++ b/examples/blog/config.js @@ -84,8 +84,7 @@ .baseApiUrl('http://localhost:3000/') // The base API endpoint can be customized by entity .identifier(nga.field('id')); // you can optionally customize the identifier used in the api ('id' by default) - var tag = nga.entity('tags') - .readOnly(); // a readOnly entity has disabled creation, edition, and deletion views + var tag = nga.entity('tags'); var subCategories = [ { category: 'tech', label: 'Computers', value: 'computers' }, diff --git a/package.json b/package.json index 90f912ca..a516ff14 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng-admin", - "version": "1.0.4", + "version": "1.0.5", "license": "MIT", "private": false, "main": "lib/javascripts/ng-admin.js", @@ -14,7 +14,7 @@ "lib/" ], "dependencies": { - "admin-config": "~0.12.1", + "admin-config": "~0.12.2", "angular": "~1.6.1", "angular-numeraljs": "^1.1.6", "angular-sanitize": "^1.3.15",