Skip to content

Commit

Permalink
Persistent previews respect modified columns. Removed nag screen.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Juback committed Aug 20, 2021
1 parent 12e8234 commit fe81643
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 3.0.43 (August 20, 2021)
Fixed issue where persistent previews ignored changes to column structure in the underlying CSV file. Formerly, it was necessary to execute the `CSV: Clear Preview State` command to view the changes.

Updated Wijmo license to remove nag screen.

## 3.0.42 (May 25, 2021)
Added support for untrusted workspaces.

Expand Down
2 changes: 1 addition & 1 deletion out/csv.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function initPage() {
return true;
}
for (var i = 0; i < stateCols.length; i++) {
if (stateCols[i].name !== flexCols[i].name) {
if (stateCols[i].header !== flexCols[i].header) {
return true;
}
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gc-excelviewer",
"displayName": "Excel Viewer",
"description": "View Excel spreadsheets and CSV files within Visual Studio Code workspaces.",
"version": "3.0.42",
"version": "3.0.43",
"icon": "img/gc-excelviewer.png",
"publisher": "GrapeCity",
"license": "SEE LICENSE IN LICENSE.txt",
Expand Down

0 comments on commit fe81643

Please sign in to comment.