Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
micw committed Dec 13, 2018
1 parent b50f4f1 commit 92a4d19
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ Versions
| 0.90.X | 0.90 | v0.90 |
| 1.X | 1.0 | v1.6.1 | micwy/elasticsearch-kopf:1.x
| 2.X | 2.0 | v2.1.1 | micwy/elasticsearch-kopf:2.x
| 5.X,6.X | master | v6.0.1 | micwy/elasticsearch-kopf:6.x
| 5.X,6.X | dev | v6.0.2-alpha | micwy/elasticsearch-kopf:dev
| 5.X | master | v6.0.2 | micwy/elasticsearch-kopf:5.x
| 6.X | master | v6.0.2 | micwy/elasticsearch-kopf:6.x
| 5.X,6.X | dev | v6.0.3-alpha | micwy/elasticsearch-kopf:dev

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion src/kopf/controllers/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kopf.controller('GlobalController', ['$scope', '$location', '$sce', '$window',
function($scope, $location, $sce, $window, AlertService, ElasticService,
ExternalSettingsService, PageService) {

$scope.version = '6.0.2-alpha';
$scope.version = '6.0.2';

$scope.modal = new ModalControls();

Expand Down
8 changes: 7 additions & 1 deletion src/kopf/services/elastic.js
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,13 @@ kopf.factory('ElasticService', ['$http', '$q', '$timeout', '$location',

this.clusterRequest = function(method, path, params, data, success, error) {
var url = this.connection.host + path;
var config = {method: method, url: url, data: data, params: params};
var config = {
method: method,
url: url,
data: data,
params: params,
headers: {'Content-Type' : 'application/json'}
};
this.addAuth(config);
$http(config).
success(function(data, status, headers, config) {
Expand Down

0 comments on commit 92a4d19

Please sign in to comment.