You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Scientific Calculator bugs and dependency updates
- Bump version to 0.1.1
- Fix Enter key re-activating last clicked button instead of calculating
- Fix unary minus being ignored in calculations
- Update Avalonia 11.3.9 → 11.3.10, System.Text.Json 10.0.0 → 10.0.1
- Fix deprecation/platform warnings in AsciiArtGenerator and ImageConverter
- Add ".NET" suffix to app title in all localizations
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.1.1] - 2025-12-23
9
+
10
+
### Changed
11
+
12
+
- Updated Avalonia packages from 11.3.9 to 11.3.10 (required by Flowery.NET).
13
+
- Updated System.Text.Json from 10.0.0 to 10.0.1.
14
+
- Updated App_Title in all localization files to include ".NET" suffix.
15
+
16
+
### Fixed
17
+
18
+
- Fixed deprecation warning in `AsciiArtGenerator.cs` by replacing `SKFilterQuality` with `SKSamplingOptions`.
19
+
- Fixed CA1416 platform compatibility warnings in `ImageConverter.cs` by adding `[SupportedOSPlatform("windows")]` attribute.
20
+
- Fixed Scientific Calculator: Enter key now always triggers calculation instead of re-activating the last clicked button.
21
+
- Fixed Scientific Calculator: Unary minus was being ignored, causing negative results to become positive in subsequent calculations (e.g., `-1522 + 2000` incorrectly returned `3517` instead of `478`).
22
+
- App title in all localizations now state ".NET" at the end
0 commit comments