diff --git a/README.md b/README.md index e01e0dc..59f1ea8 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ Despite not applying for the internship, I wanted to finish the project and rele ## Usage preview +> _The video was shot in version 1.0.0_ + https://github.com/Rekkonnect/Syndiesis/assets/8298332/4d754285-c9d9-4637-a885-88c78ce3484b ## Stack @@ -92,8 +94,8 @@ Desired features are listed in the [issues](https://github.com/Rekkonnect/Syndie - `Ctrl+W` - Select currently hovered word - `Ctrl+Shift+V` - Paste current content on clipboard and replace entire snippet with pasted content - `Ctrl+A` - Select all - - `Tab` - Insert up to 4 spaces to fill a 4-character section within the line, or increase indentation by 4 spaces on selected lines - - `Shift+Tab` - Reduce indentation on current or selected lines by 4 spaces + - `Tab` - Insert up to N spaces to fill a N-character section within the line, or increase indentation on selected lines + - `Shift+Tab` - Reduce indentation on current or selected lines ## Design philosophy diff --git a/Syndiesis/Syndiesis.csproj b/Syndiesis/Syndiesis.csproj index 76f9ed8..e47e2c1 100644 --- a/Syndiesis/Syndiesis.csproj +++ b/Syndiesis/Syndiesis.csproj @@ -9,7 +9,7 @@ - 1.0.1 + 1.0.2 Alex Kalfakakos © 2024 Alex Kalfakakos The most revolutionary syntax visualizer for C# @@ -30,7 +30,6 @@ - diff --git a/docs/changelog.md b/docs/changelog.md index 59588ab..96570e9 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,30 @@ # Changelog +## 1.0.2 + +### Features + +- Code editor + - Hovering mouse sets the `Ibeam` cursor instead of the default + - No background fill on selected line if text is selected + - Dragging mouse selects text + - Double-click engages word selection mode + - Allow customizing indentation width in spaces +- Syntax tree view + - Missing tokens with trivia are now displayed + - Larger spacing between token value display and kind +- Settings + - Settings are now stored in `appsettings.json` + +### Bugfixes + +- Code editor + - Clear selection upon setting source + - Capture preferred cursor character position + - On text deletion +- Syntax tree view + - Support `PreprocessingMessageTrivia` + ## 1.0.1 ### Features