From e4ea9bc6b64ebfe9c138fe263b7fede3ea47ecd9 Mon Sep 17 00:00:00 2001 From: Florian FERBACH Date: Wed, 5 Apr 2017 11:40:50 +0200 Subject: [PATCH 1/3] Update admin-config to fix the disabling of views --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 90f912ca..cbf63b3a 100644 --- a/package.json +++ b/package.json @@ -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", From 453cb692557629d43a6c75f7cba5401a017bd95f Mon Sep 17 00:00:00 2001 From: Florian FERBACH Date: Wed, 5 Apr 2017 11:44:32 +0200 Subject: [PATCH 2/3] Prepare release 1.0.5 --- CHANGELOG.md | 6 ++++++ package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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/package.json b/package.json index cbf63b3a..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", From ec0eda17a46634a68e54ce1b8bdb0c22d5e3c030 Mon Sep 17 00:00:00 2001 From: Florian FERBACH Date: Wed, 5 Apr 2017 12:18:10 +0200 Subject: [PATCH 3/3] Fix test fixtures --- examples/blog/config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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' },