Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Svg.Editor.Avalonia.Forms/Services/TextInputService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public TextInputService()
return new TextTool.TextProperties
{
FontSizeIndex = textSizeSelected,
LineHeight = 12f,
LineHeight = 1.25f,
Text = textValue
};
}
Expand All @@ -50,7 +50,7 @@ public TextInputService()
return new TextTool.TextProperties
{
FontSizeIndex = sizeIndex,
LineHeight = 12f,
LineHeight = 1.25f,
Text = text
};
}
Expand Down
4 changes: 3 additions & 1 deletion Svg.Editor.Avalonia.Forms/Svg.Editor.Avalon.Forms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Version>3.2.0-optiq09</Version>
<Version>3.2.0-optiq11</Version>
<PackageReleaseNotes>
#3.2.0-optiq11
Fixed huge paragraph spacing in multi-line text (LineHeight 12f -> 1.25f)
#3.2.0-optiq09
SvgVisualElement always rebuild the cached pens/brushes when the token differs
fix pin color under select tool
Expand Down
4 changes: 3 additions & 1 deletion Svg.Editor.Avalonia.Views/Svg.Editor.Avalon.Views.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Version>3.2.0-optiq09</Version>
<Version>3.2.0-optiq11</Version>
<PackageReleaseNotes>
#3.2.0-optiq11
Fixed huge paragraph spacing in multi-line text (LineHeight 12f -> 1.25f)
#3.2.0-optiq09
SvgVisualElement always rebuild the cached pens/brushes when the token differs
fix pin color under select tool
Expand Down
4 changes: 2 additions & 2 deletions Svg.Editor.Core.Tests/TextInputServiceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public async Task GetUserInput_WithConfirmedResult_ReturnsEnteredTextAndSelected
result.ShouldNotBeNull();
result.Text.ShouldBe("Hello world");
result.FontSizeIndex.ShouldBe(2);
result.LineHeight.ShouldBe(12f);
result.LineHeight.ShouldBe(1.25f);
}

[Test]
Expand Down Expand Up @@ -84,7 +84,7 @@ public async Task GetUserInput_WithCancelledResult_ReturnsOriginalTextAndSelecte
result.ShouldNotBeNull();
result.Text.ShouldBe(originalText);
result.FontSizeIndex.ShouldBe(originalIndex);
result.LineHeight.ShouldBe(12f);
result.LineHeight.ShouldBe(1.25f);
}

[Test]
Expand Down
4 changes: 3 additions & 1 deletion Svg.Editor.Core/Svg.Editor.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
<AssemblyName>Svg.Editor</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<TargetFramework>net10.0</TargetFramework>
<Version>3.2.0-optiq09</Version>
<Version>3.2.0-optiq11</Version>
<LangVersion>latest</LangVersion>
<PackageReleaseNotes>
#3.2.0-optiq11
Fixed huge paragraph spacing in multi-line text (LineHeight 12f -> 1.25f)
#3.2.0-optiq09
SvgVisualElement always rebuild the cached pens/brushes when the token differs
fix pin color under select tool
Expand Down
4 changes: 3 additions & 1 deletion Svg/Svg.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net48;net10.0</TargetFrameworks>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<Version>3.2.0-optiq10</Version>
<Version>3.2.0-optiq11</Version>
<Authors>gentledpp,zepr</Authors>
<Company>Opti-Q GmbH</Company>
<PackageReleaseNotes>
#3.2.0-optiq11
Fixed huge paragraph spacing in multi-line text (LineHeight 12f -> 1.25f)
#3.2.0-optiq10
use a fallback font when the embedded font does not provide a glyph for a character
#3.2.0-optiq09
Expand Down
Loading