Skip to content

Commit b4062d5

Browse files
committed
Release v1.14.0: unpin icon for the Unfreeze menu entries (#24)
Freeze and Unfreeze sat under each other in the column and row context menus with almost the same pin icon, so the picture never said which one undid the other. Unfreeze now uses a pin with a slash across it, in all four entries: Unfreeze column, Unfreeze all columns, Unfreeze row and Unfreeze all rows. That glyph landed in @vscode/codicons 0.0.46, so the dependency moves from 0.0.45 to 0.0.46-24. The icon font ships bundled in media/, so the new glyph travels with the extension and needs nothing from the host. Pinned exactly rather than with a caret. 0.0.46 has no stable release, only prereleases, and "^0.0.46-24" would also match 0.0.46-25 and later. The old "^0.0.45" could not float at all, so the caret would have widened what a fresh install resolves. Matches how ag-grid-community is pinned.
1 parent f9bf143 commit b4062d5

3 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to CSV Grid Editor are documented here.
44

5+
## [1.14.0] - 2026-08-03
6+
7+
### Changed
8+
- **Unfreeze has its own icon** - **Freeze** and **Unfreeze** sat under each other in the context menu with almost the same pin icon, so nothing about the picture told you which one undid the other. Unfreeze now uses a pin with a slash across it, in **Unfreeze column**, **Unfreeze all columns**, **Unfreeze row** and **Unfreeze all rows** ([#24](https://github.com/Robin-Reiche/csv-grid-editor/pull/24)). The icon font is bundled with the extension, so this came with an update of the codicon set it ships.
9+
10+
Thanks to [@yukina3230](https://github.com/yukina3230) for the change.
11+
512
## [1.13.1] - 2026-06-25
613

714
### Fixed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "csv-grid-editor",
33
"displayName": "CSV Grid Editor: CSV & TSV Viewer",
44
"description": "Open, view and edit CSV and TSV files in a fast sortable filterable grid. Inline editing, find and replace, freeze rows, column stats, Excel copy and paste and export to JSON. Free.",
5-
"version": "1.13.1",
5+
"version": "1.14.0",
66
"publisher": "RobinReiche",
77
"license": "MIT",
88
"icon": "icon.png",
@@ -75,7 +75,7 @@
7575
"devDependencies": {
7676
"@types/node": "^20.0.0",
7777
"@types/vscode": "^1.80.0",
78-
"@vscode/codicons": "^0.0.46-24",
78+
"@vscode/codicons": "0.0.46-24",
7979
"ag-grid-community": "32.3.3",
8080
"esbuild": "^0.27.4",
8181
"typescript": "^5.3.0"

0 commit comments

Comments
 (0)