diff --git a/api/cli/defaults_windows.go b/api/cli/defaults_windows.go index 9e4be3a80..3a4106c74 100644 --- a/api/cli/defaults_windows.go +++ b/api/cli/defaults_windows.go @@ -2,11 +2,11 @@ package cli const ( defaultBindAddress = ":9000" - defaultDataDirectory = "C:\\ProgramData\\Portainer" + defaultDataDirectory = "C:\\data" defaultAssetsDirectory = "." defaultTemplatesURL = "https://raw.githubusercontent.com/portainer/templates/master/templates.json" defaultTLSVerify = "false" - defaultTLSCACertPath = "C:\\ProgramData\\Portainer\\certs\\ca.pem" - defaultTLSCertPath = "C:\\ProgramData\\Portainer\\certs\\cert.pem" - defaultTLSKeyPath = "C:\\ProgramData\\Portainer\\certs\\key.pem" + defaultTLSCACertPath = "C:\\certs\\ca.pem" + defaultTLSCertPath = "C:\\certs\\cert.pem" + defaultTLSKeyPath = "C:\\certs\\key.pem" ) diff --git a/api/portainer.go b/api/portainer.go index 0bd3fe6d8..6d928e1b2 100644 --- a/api/portainer.go +++ b/api/portainer.go @@ -119,7 +119,7 @@ type ( const ( // APIVersion is the version number of portainer API. - APIVersion = "1.11.2" + APIVersion = "1.11.3" ) const ( diff --git a/app/app.js b/app/app.js index 08d2de18a..3c563dd9e 100644 --- a/app/app.js +++ b/app/app.js @@ -568,4 +568,4 @@ angular.module('portainer', [ .constant('ENDPOINTS_ENDPOINT', 'api/endpoints') .constant('TEMPLATES_ENDPOINT', 'api/templates') .constant('PAGINATION_MAX_ITEMS', 10) - .constant('UI_VERSION', 'v1.11.2'); + .constant('UI_VERSION', 'v1.11.3'); diff --git a/bower.json b/bower.json index 11fe570e4..d69e8403e 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "portainer", - "version": "1.11.2", + "version": "1.11.3", "homepage": "https://github.com/portainer/portainer", "authors": [ "Anthony Lapenna " diff --git a/package.json b/package.json index 5a08800ae..c1400d2c9 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Portainer.io", "name": "portainer", "homepage": "http://portainer.io", - "version": "1.11.2", + "version": "1.11.3", "repository": { "type": "git", "url": "git@github.com:portainer/portainer.git"