Skip to content

Commit 2eb6419

Browse files
docs update for v1.8.1 libs & docs patch release
1 parent 4dc4ff9 commit 2eb6419

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ large `.csv/.tsv`, `.xlsx/.xlsm`, `.json` array, `.arrow`, `.avro` & `.parquet`
77

88
# Data Preview 🈸 MVP Features
99

10-
- `CSV/TSV`, `XLSX/XLSM`, `JSON array`, `Arrow` & `Avro` data files Preview, Sorting & Filtering
10+
- `.csv/.tsv`, `.xlsc/.xlsm`, `.json` array, `Arrow` & `Avro` data files Preview, Sorting & Filtering
1111
- Grid Data summary display with Aggregate Functions, Row & Column Pivots (a.k.a. `Group By` & `Split By`)
1212
- Basic Charts auto-gen from data with Aggregate Functions, Row & Column Pivots
1313
- Pluggable Data Charting libraries for stock Charts: [highcharts](https://www.highcharts.com/demo) || [d3fc](https://d3fc.io/)
1414
- Dark & Light Data Preview Panel Themes
1515
- Persistent Data Preview Settings (Sort, Filter, Pivots, etc.) for restore on vscode Reload
16-
- `Avro`, `Arrow` & `Excel` data files JSON & `.schema.json` files auto-gen on the 1st Data Preview run.
16+
- `.avro`, `.arrow` & `Excel` data files `.json` array & `.schema.json` files auto-gen on the 1st Data Preview run.
1717

1818
![Perspective Viewer](https://github.com/RandomFractals/vscode-data-preview/blob/master/images/perspective-viewer.gif?raw=true
1919
"Perspective Viewer")
@@ -28,7 +28,7 @@ large `.csv/.tsv`, `.xlsx/.xlsm`, `.json` array, `.arrow`, `.avro` & `.parquet`
2828

2929
Install this [Data Preview](https://marketplace.visualstudio.com/items?itemName=RandomFractalsInc.vscode-data-preview) 🈸 via vscode Extensions tab (`Ctrl+Shift+X`) by searching for `data preview` || via [vscode marketplace search results](https://marketplace.visualstudio.com/search?term=data%20preview&target=VSCode&category=All%20categories&sortBy=Relevance).
3030

31-
List of Data Preview 🈸 extension vscode contributions, with `data.preview` command, keyboard shortcut, augmented vscode UI context menus, added data language mappings, supported data files list & configurable theme & charts Data Preview Settings:
31+
List of Data Preview 🈸 extension config Settings, with `data.preview` command info, keyboard shortcut, augmented vscode UI context menus, added Data Language mappings, supported Data Files list & configurable Theme & Charts Data Preview Settings:
3232

3333
![Data Preview Contributions](https://github.com/RandomFractals/vscode-data-preview/blob/master/images/vscode-data-preview-contributions.png?raw=true
3434
"Data Preview Contributions")
@@ -38,9 +38,9 @@ List of Data Preview 🈸 extension vscode contributions, with `data.preview` co
3838

3939
Setting | Type | Default Value | Description
4040
------- | ---- | ------------- | -----------
41-
data.preview.theme | string | | Data Preview theme: blank for light, or '.dark' for dark theme data previews display.
41+
data.preview.theme | string | | Data Preview Theme: blank for light or `.dark` for dark theme data previews display.
4242
data.preview.charts.plugin | string | hightcharts | Data Preview Charts library to use for stock charts: [highcharts](https://www.highcharts.com/demo) or [d3fc](https://d3fc.io/)
43-
data.preview.create.json.files | boolean | true | Creates JSON data & schema.json files, if available, for Arrow, Avro & Excel data files.
43+
data.preview.create.json.files | boolean | true | Creates `.json` data & `.schema.json` files, if available, for Arrow, Avro & Excel data files.
4444

4545
Data Preview 🈸 example using `.dark` theme with `d3fc` charts config, viewing
4646
[superstore](https://github.com/finos/perspective/blob/master/examples/simple/superstore.arrow)`.arrow` data file :)
@@ -69,7 +69,7 @@ Data Preview 🈸 example using `.dark` theme with `d3fc` charts config, viewing
6969

7070
```js
7171
{
72-
"when": "resourceFilename =~ /.*\\.(csv|tsv|txt|tab|dif|ods|prn|slk|xls|xlsb|xlsx|xlsm|xml|html|json|arrow|arr|avro|parquet|parq)/",
72+
"when": "resourceFilename =~ /.*\\.(csv|tsv|txt|tab|dif|ods|prn|slk|xls|xlsb|xlsx|xlsm|xml|html|json|arrow|arr|avro)/",
7373
"command": "data.preview",
7474
"group": "navigation"
7575
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
"data.preview.theme": {
167167
"type": "string",
168168
"default": "",
169-
"description": "Data Preview theme: blank for light, or '.dark' for dark theme data previews display."
169+
"description": "Data Preview Theme: blank for light or `.dark` for dark theme data previews display."
170170
},
171171
"data.preview.charts.plugin": {
172172
"type": "string",
@@ -175,12 +175,12 @@
175175
"d3fc"
176176
],
177177
"default": "highcharts",
178-
"description": "Data Preview charts library to use: highcharts || d3fc."
178+
"description": "Data Preview Charts library to use: highcharts || d3fc."
179179
},
180180
"data.preview.create.json.files": {
181181
"type": "boolean",
182182
"default": true,
183-
"description": "Creates JSON data & schema.json files, if available, for Arrow, Avro & Excel binary data files."
183+
"description": "Creates `.json` data & `.schema.json` files, if available, for Arrow, Avro & Excel binary data files."
184184
}
185185
}
186186
}

src/data.preview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ export class DataPreview {
114114
case 'data.preview':
115115
this._title = `Data Preview ${this._fileName} 🈸`;
116116
break;
117-
default: // TODO: data.help
118-
this._title = 'Data Help';
117+
default: // TODO: add data.preview.help
118+
this._title = 'Data Preview 🈸 Help';
119119
break;
120120
}
121121

0 commit comments

Comments
 (0)