Skip to content

Commit 8d30468

Browse files
authored
Update docs (#35)
* docs: update README and changelog * Update versions and remove tests
1 parent 39ef27c commit 8d30468

File tree

4 files changed

+430
-22
lines changed

4 files changed

+430
-22
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66

77
## [Unreleased]
88

9-
- Row and Column Insertion/Deletion.
9+
- Row Insertion/Deletion.
10+
11+
## [1.1.0] - 2025-06-11
12+
- New: Column sorting by clicking header labels.
13+
- Added: Font selection dropdown honoring VS Code fonts.
14+
- Added: Editing of empty CSV files.
15+
- Improved: Large files load in 1000-row chunks.
16+
- Enhanced: `Ctrl/Cmd + A` selects the entire table.
17+
- Fixed: Row indexing when the header row is disabled.
18+
- Improved: Safer rendering for HTML-like content.
1019

1120
## [1.0.6] - 2024-05-20
1221
- New: Multi-cell selection with intuitive `Shift + Click` support.

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,16 @@ Working with CSV files shouldn’t be a chore. With CSV, you get:
3030
- **Smart Resizing:** Automatic calculation of column widths for improved readability.
3131
- **Dynamic Color Coding:** Visual cues based on data type help you quickly identify numbers, dates, booleans, and more.
3232
- **Sticky Headers:** Keep column titles in view as you scroll through large datasets.
33-
- **Enhanced Keyboard Navigation:** Navigate cells with Tab/Shift+Tab and use keyboard shortcuts for quick editing, saving, and selection.
33+
- **Enhanced Keyboard Navigation:** Navigate cells with Tab/Shift+Tab and use keyboard shortcuts for quick editing, saving, selection, and full-table `Ctrl/Cmd + A` select-all.
3434
- **Advanced Multi-Cell Selection:** Easily select and copy blocks of data, then paste them elsewhere as properly formatted CSV.
3535
- **Add/Delete Columns:** Right-click any cell to add a column left or right, or remove the selected column.
36+
- **Edit Empty CSVs:** Create or open an empty CSV file and start typing immediately.
37+
- **Column Sorting:** Click column headers to sort ascending or descending.
38+
- **Custom Font Selection:** Choose a font from a dropdown or inherit VS Code's default.
3639
- **Find & Highlight:** Built-in find widget helps you search for text within your CSV with real-time highlighting and navigation through matches.
3740
- **Preserved CSV Integrity:** All modifications respect CSV formatting—no unwanted extra characters or formatting issues.
3841
- **Optimized for Performance:** Designed for medium-sized datasets, ensuring a smooth editing experience without compromising on functionality.
42+
- **Large File Support:** Loads big CSVs in chunks so even large datasets open quickly.
3943

4044
---
4145

@@ -63,12 +67,21 @@ Working with CSV files shouldn’t be a chore. With CSV, you get:
6367

6468
## Planned Improvements
6569

66-
- **Row Insertion/Deletion:** Quickly add or remove rows without leaving the editor.
70+
- **Row Insertion/Deletion:** Quickly add or remove rows without leaving the editor (coming soon).
6771

6872
---
6973

7074
## Release Notes
7175

76+
### v1.1.0
77+
- **New:** Column sorting by clicking header labels.
78+
- **Added:** Font selection dropdown that honors VS Code font settings.
79+
- **Added:** Ability to create and edit empty CSV files.
80+
- **Improved:** Large CSV files load in 1000-row chunks for better performance.
81+
- **Enhanced:** `Ctrl/Cmd + A` now selects all cells in the grid.
82+
- **Fixed:** Correct row indexing when the header row is disabled.
83+
- **Improved:** Safer rendering for cells containing HTML-like text.
84+
7285
### v1.0.6
7386
- **New:** Multi-cell selection with intuitive `Shift + Click` support.
7487
- **Enhanced:** Clipboard integration for copying selected cells as clean, CSV-formatted text.

0 commit comments

Comments
 (0)