Skip to content

Commit 8c39e62

Browse files
committed
BUMPED: version to 2.1.1
1 parent 3d6bce1 commit 8c39e62

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Features
88

9-
- Dual-view window
9+
- Split-view window
1010
- Tabs support
1111
- Fully keyboard controlled
1212
- Fully localized (French & English available)

e2e/cypress.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
{}
1+
{
2+
"projectId": "npcmx4"
3+
}

e2e/cypress/integration/nav.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ describe('app shortcuts', () => {
4747
});
4848
});
4949

50-
it('click on dual should toggle dual view', () => {
50+
it('click on split should toggle split view', () => {
5151
cy.get('.data-cy-toggle-splitview')
5252
.click()
5353
.should('have.class', Classes.INTENT_PRIMARY)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-explorer",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Plugin-based file explorer written with React",
55
"main": "build/main.js",
66
"build": {

src/components/WithMenuAccelerators.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ export function WithMenuAccelerators<
8787
e: MenuAcceleratorEvent,
8888
data: { combo: string; data: any }
8989
) => {
90-
console.log('******* onAccelerator !!', e, data);
9190
// check if combo is valid
9291
const callback = this.getCallback(data.combo);
9392
if (typeof callback === "function") {

0 commit comments

Comments
 (0)