From 8c39e62805d01fc31fd89072b5d43795284d523e Mon Sep 17 00:00:00 2001 From: warpdesign Date: Sat, 2 Nov 2019 18:17:20 +0100 Subject: [PATCH] BUMPED: version to 2.1.1 --- README.md | 2 +- e2e/cypress.json | 4 +++- e2e/cypress/integration/nav.spec.ts | 2 +- package.json | 2 +- src/components/WithMenuAccelerators.tsx | 1 - 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7cb7b7a5..69b2de2d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## Features -- Dual-view window +- Split-view window - Tabs support - Fully keyboard controlled - Fully localized (French & English available) diff --git a/e2e/cypress.json b/e2e/cypress.json index 0967ef42..8e055f1d 100644 --- a/e2e/cypress.json +++ b/e2e/cypress.json @@ -1 +1,3 @@ -{} +{ + "projectId": "npcmx4" +} diff --git a/e2e/cypress/integration/nav.spec.ts b/e2e/cypress/integration/nav.spec.ts index 69009755..0c893f0b 100644 --- a/e2e/cypress/integration/nav.spec.ts +++ b/e2e/cypress/integration/nav.spec.ts @@ -47,7 +47,7 @@ describe('app shortcuts', () => { }); }); - it('click on dual should toggle dual view', () => { + it('click on split should toggle split view', () => { cy.get('.data-cy-toggle-splitview') .click() .should('have.class', Classes.INTENT_PRIMARY) diff --git a/package.json b/package.json index c729828a..6d6ca1fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-explorer", - "version": "2.1.0", + "version": "2.1.1", "description": "Plugin-based file explorer written with React", "main": "build/main.js", "build": { diff --git a/src/components/WithMenuAccelerators.tsx b/src/components/WithMenuAccelerators.tsx index 85354af4..2e213781 100644 --- a/src/components/WithMenuAccelerators.tsx +++ b/src/components/WithMenuAccelerators.tsx @@ -87,7 +87,6 @@ export function WithMenuAccelerators< e: MenuAcceleratorEvent, data: { combo: string; data: any } ) => { - console.log('******* onAccelerator !!', e, data); // check if combo is valid const callback = this.getCallback(data.combo); if (typeof callback === "function") {