diff --git a/CHANGELOG.md b/CHANGELOG.md index ef6e75a7..4ed9f613 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.6 + +* double click to edit search results, fixes [#225](https://github.com/cars10/elasticvue/issues/225) + ## 1.0.5 * adds request logging to desktop app diff --git a/browser_extension/chrome/manifest.json b/browser_extension/chrome/manifest.json index a2383e3c..9d8bf2c6 100644 --- a/browser_extension/chrome/manifest.json +++ b/browser_extension/chrome/manifest.json @@ -1,6 +1,6 @@ { "name": "Elasticvue", - "version": "1.0.5", + "version": "1.0.6", "description": "Elasticsearch frontend", "manifest_version": 3, "icons": { diff --git a/browser_extension/firefox/manifest.json b/browser_extension/firefox/manifest.json index 27a688d8..2f26fa18 100644 --- a/browser_extension/firefox/manifest.json +++ b/browser_extension/firefox/manifest.json @@ -1,6 +1,6 @@ { "name": "Elasticvue", - "version": "1.0.5", + "version": "1.0.6", "description": "Elasticsearch frontend", "manifest_version": 2, "icons": { diff --git a/package.json b/package.json index 67e94aec..80f0542b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "elasticvue", "private": true, - "version": "1.0.5", + "version": "1.0.6", "scripts": { "dev": "vite", "build": "vite build", diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index c4be6830..30263b83 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "package": { "productName": "elasticvue", - "version": "1.0.5" + "version": "1.0.6" }, "build": { "distDir": "../dist", diff --git a/src/components/clusterselection/EditCluster.vue b/src/components/clusterselection/EditCluster.vue index 0f6455c3..e9a94b1b 100644 --- a/src/components/clusterselection/EditCluster.vue +++ b/src/components/clusterselection/EditCluster.vue @@ -3,7 +3,7 @@ :title="t('cluster_selection.edit_cluster.edit.title')" @click.stop="dialog = true" /> - +

diff --git a/src/components/clusterselection/NewCluster.vue b/src/components/clusterselection/NewCluster.vue index 654210ad..325fa5d9 100644 --- a/src/components/clusterselection/NewCluster.vue +++ b/src/components/clusterselection/NewCluster.vue @@ -1,7 +1,7 @@