Skip to content

Commit

Permalink
Prepare 1.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Rekkonnect committed May 13, 2024
1 parent e1c1664 commit cbe3841
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions Syndiesis/Syndiesis.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup Label="Metadata">
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<Authors>Alex Kalfakakos</Authors>
<Copyright>© 2024 Alex Kalfakakos</Copyright>
<Description>The most revolutionary syntax visualizer for C#</Description>
Expand All @@ -30,7 +30,6 @@
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.10" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.10" />
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.10" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />
Expand Down
25 changes: 25 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit cbe3841

Please sign in to comment.