Skip to content

Commit cbe3841

Browse files
committed
Prepare 1.0.2 release
1 parent e1c1664 commit cbe3841

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Despite not applying for the internship, I wanted to finish the project and rele
1818

1919
## Usage preview
2020

21+
> _The video was shot in version 1.0.0_
22+
2123
https://github.com/Rekkonnect/Syndiesis/assets/8298332/4d754285-c9d9-4637-a885-88c78ce3484b
2224

2325
## Stack
@@ -92,8 +94,8 @@ Desired features are listed in the [issues](https://github.com/Rekkonnect/Syndie
9294
- `Ctrl+W` - Select currently hovered word
9395
- `Ctrl+Shift+V` - Paste current content on clipboard and replace entire snippet with pasted content
9496
- `Ctrl+A` - Select all
95-
- `Tab` - Insert up to 4 spaces to fill a 4-character section within the line, or increase indentation by 4 spaces on selected lines
96-
- `Shift+Tab` - Reduce indentation on current or selected lines by 4 spaces
97+
- `Tab` - Insert up to N spaces to fill a N-character section within the line, or increase indentation on selected lines
98+
- `Shift+Tab` - Reduce indentation on current or selected lines
9799

98100
## Design philosophy
99101

Syndiesis/Syndiesis.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<PropertyGroup Label="Metadata">
12-
<Version>1.0.1</Version>
12+
<Version>1.0.2</Version>
1313
<Authors>Alex Kalfakakos</Authors>
1414
<Copyright>© 2024 Alex Kalfakakos</Copyright>
1515
<Description>The most revolutionary syntax visualizer for C#</Description>
@@ -30,7 +30,6 @@
3030
<ItemGroup>
3131
<PackageReference Include="Avalonia" Version="11.0.10" />
3232
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
33-
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
3433
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.10" />
3534
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.10" />
3635
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />

docs/changelog.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## 1.0.2
4+
5+
### Features
6+
7+
- Code editor
8+
- Hovering mouse sets the `Ibeam` cursor instead of the default
9+
- No background fill on selected line if text is selected
10+
- Dragging mouse selects text
11+
- Double-click engages word selection mode
12+
- Allow customizing indentation width in spaces
13+
- Syntax tree view
14+
- Missing tokens with trivia are now displayed
15+
- Larger spacing between token value display and kind
16+
- Settings
17+
- Settings are now stored in `appsettings.json`
18+
19+
### Bugfixes
20+
21+
- Code editor
22+
- Clear selection upon setting source
23+
- Capture preferred cursor character position
24+
- On text deletion
25+
- Syntax tree view
26+
- Support `PreprocessingMessageTrivia`
27+
328
## 1.0.1
429

530
### Features

0 commit comments

Comments
 (0)