Compare commits

...

4 Commits

Author SHA1 Message Date
Anthony Lapenna 2e2aba1bbb Merge branch 'release/1.13.6' 2017-07-17 16:00:40 +02:00
Anthony Lapenna f2347b2f77 chore(version): bump version number 2017-07-17 15:59:43 +02:00
Anthony Lapenna a39645a297 fix(images): fix the system/df call to display unused images (#1037) 2017-07-17 15:58:53 +02:00
Anthony Lapenna 806a0b92a0 Merge tag '1.13.5' into develop
Release 1.13.5
2017-07-13 18:08:50 +02:00
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -305,7 +305,7 @@ type (
const (
// APIVersion is the version number of the Portainer API.
APIVersion = "1.13.5"
APIVersion = "1.13.6"
// DBVersion is the version number of the Portainer database.
DBVersion = 2
// DefaultTemplatesURL represents the default URL for the templates definitions.
+2 -2
View File
@@ -1,7 +1,7 @@
angular.module('portainer.rest')
.factory('System', ['$resource', 'DOCKER_ENDPOINT', 'EndpointProvider', function SystemFactory($resource, DOCKER_ENDPOINT, EndpointProvider) {
'use strict';
return $resource(DOCKER_ENDPOINT + '/:endpointId/:action', {
return $resource(DOCKER_ENDPOINT + '/:endpointId/:action/:subAction', {
name: '@name',
endpointId: EndpointProvider.endpointID
},
@@ -13,6 +13,6 @@ angular.module('portainer.rest')
isArray: true, transformResponse: jsonObjectsToArrayHandler
},
auth: { method: 'POST', params: { action: 'auth' } },
dataUsage: { method: 'GET', params: { action: 'system/df' } }
dataUsage: { method: 'GET', params: { action: 'system', subAction: 'df' } }
});
}]);
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "portainer",
"version": "1.13.5",
"version": "1.13.6",
"homepage": "https://github.com/portainer/portainer",
"authors": [
"Anthony Lapenna <anthony.lapenna at gmail dot com>"
+1 -1
View File
@@ -2,7 +2,7 @@
"author": "Portainer.io",
"name": "portainer",
"homepage": "http://portainer.io",
"version": "1.13.5",
"version": "1.13.6",
"repository": {
"type": "git",
"url": "git@github.com:portainer/portainer.git"