Skip to content

Commit a1de6d7

Browse files
authored
Merge pull request #136 from Rekkonnect/release/1.2.3
Prepare release 1.2.3
2 parents 8d333a9 + 00b3d66 commit a1de6d7

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ Below is a short list of features:
5858

5959
- Code editor
6060
- AvaloniaEdit's features
61+
- Font zoom
6162
- Syntax and semantic colorization
6263
- Go to definition using F12
6364
- Custom nagivation to outer syntax nodes based on the current selection
@@ -75,6 +76,9 @@ Below is a short list of features:
7576
- Node details view
7677
- Indication of throwing properties per node
7778
- Loading nodes respects responsiveness of the app
79+
- General
80+
- Auto updating via [GitHub Releases](https://github.com/Rekkonnect/Syndiesis/releases)
81+
- Appearance and behavior customization through settings
7882

7983
A large portion of the app is built using basic components in Avalonia. The code editor is from [AvaloniaEdit](https://github.com/avaloniaUI/AvaloniaEdit).
8084
Some icons were taken from the free version of [FontAwesome](https://fontawesome.com/).

Syndiesis/Syndiesis.csproj

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
2+
33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
55
<TargetFramework>net9.0</TargetFramework>
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<PropertyGroup Label="Metadata">
12-
<Version>1.2.2</Version>
12+
<Version>1.2.3</Version>
1313
<Authors>Alex Kalfakakos</Authors>
1414
<Copyright>© 2024-2025 Alex Kalfakakos</Copyright>
1515
<Description>The most revolutionary syntax visualizer for C#</Description>
@@ -27,28 +27,23 @@
2727
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Allow Dev Errors|AnyCPU'">
2828
<DefineConstants>$(DefineConstants);ALLOW_DEV_ERRORS</DefineConstants>
2929
</PropertyGroup>
30-
30+
3131
<ItemGroup>
3232
<AvaloniaResource Include="Assets\**" />
3333
<None Remove=".gitignore" />
34-
<None Remove="Assets\Icons\diagnostic-error.png" />
35-
<None Remove="Assets\Icons\diagnostic-suggestion.png" />
36-
<None Remove="Assets\Icons\diagnostic-warning.png" />
3734
</ItemGroup>
38-
35+
3936
<ItemGroup>
4037
<TrimmableAssembly Include="Avalonia.Themes.Fluent" />
4138
<TrimmableAssembly Include="Avalonia.Themes.Default" />
4239
</ItemGroup>
43-
40+
4441
<ItemGroup>
4542
<PackageReference Include="Avalonia" Version="11.3.0" />
4643
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.3.0" />
4744
<PackageReference Include="Avalonia.Desktop" Version="11.3.0" />
4845
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.3.0" />
49-
<PackageReference Include="Avalonia.Diagnostics" Condition="'$(Configuration)'=='Allow Dev Errors'">
50-
<Version>11.0.10</Version>
51-
</PackageReference>
46+
<PackageReference Condition="'$(Configuration)' == 'Allow Dev Errors'" Include="Avalonia.Diagnostics" Version="11.3.0" />
5247
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.0" />
5348
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
5449
<PackageReference Include="Garyon" Version="0.4.1" />

0 commit comments

Comments
 (0)