Skip to content

Commit

Permalink
version bump 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkorotkov committed Jul 5, 2020
1 parent 0c6a368 commit d931a47
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 11 deletions.
3 changes: 1 addition & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ let mainWindow

autoUpdater.on('error', e => {
trackEvent('Error', 'Update', e.message || 'no message')
console.log('Error', e)
})

autoUpdater.setFeedURL({
Expand Down Expand Up @@ -76,7 +75,7 @@ function createWindow() {
backgroundColor: '#000',
webPreferences: {
nodeIntegration: true,
devTools: true,
devTools: false,
},
})

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Elastron",
"version": "1.2.0",
"version": "1.2.1",
"description": "Full featured elasticsearch client",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 0 additions & 2 deletions src/store/elasticsearch/allocation.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ export const allocation = store => {

store.on('elasticsearch/allocation/fetch', async state => {
try {
trackEvent('Allocation', 'Fetch')

store.dispatch('elasticsearch/allocation/update', {
loading: true,
})
Expand Down
2 changes: 0 additions & 2 deletions src/store/elasticsearch/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ export const index = store => {
store.on('elasticsearch/index/fetch', async state => {
if (state.index.loading) return
try {
trackEvent('Index', 'Fetch')

store.dispatch('elasticsearch/index/loading', true)
const api = new API(state.connection)
const info = await api.getIndex(state.index.selected)
Expand Down
2 changes: 0 additions & 2 deletions src/store/elasticsearch/indices.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ export const indices = store => {

store.on('elasticsearch/indices/fetch', async (state, cb) => {
try {
trackEvent('Indices', 'Fetch')

store.dispatch('elasticsearch/indices/update', {
loading: true,
})
Expand Down
2 changes: 0 additions & 2 deletions src/store/elasticsearch/shards.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ export const shards = store => {

store.on('elasticsearch/shards/fetch', async state => {
try {
trackEvent('Shards', 'Fetch')

store.dispatch('elasticsearch/shards/update', {
loading: true,
})
Expand Down

0 comments on commit d931a47

Please sign in to comment.