-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCHANGELOG
45 lines (35 loc) · 2.51 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
SmartMvvm.Xaml + SmartMvvm.Avalonia.Xaml Changelog
========================
v2.0
------
- Breaking: Raised lower limit for supported .NET Core version to 3.1.
- Extended `{Use}` markup extension to also support `{StaticResource}` markup extension as constructor parameter.
(while this seems to be more boilerplate code tooling like R# will understand these as references)
- Added a new convinient constructor to `{Is}` markup extension that checks the passed value for being either true or not empty.
- Breaking: Unified naming for comparison modes of `{Is}` markup extension to always use `Non` instead of `Not` for negative naming.
- Breaking: Minor adjustment to several markup extension to behave more intuitive. (see commit 947d07c899346ff65e86adf4334b68a4eb11b5b2)
- Added `SourceLink` support to NuGet.
- Introduced a new `{IsTypeOf}` markup extension for simply checking a value for a specific type.
- Introduced a new `{Switch}` markup extension for checking a value for multiple cases such as the `switch` keyword in C#.
- Ported this NuGet over to Avalonia as a separate NuGet. (SmartMvvm.Avalonia.Xaml)
v1.2.0
------
- Extended `{Is}` markup extension to easily check `boolean` expressions for being `true` or `false`.
- Introduced a new `{Byte}` markup extension that can be used to create `byte` values.
- Introduced a new `{Thickness}` markup extension that can be used to create `System.Windows.Thickness` values where each if its properties can freely be defined using constants or `Binding`s.
v1.1.0
------
- Fixed a bug where any logic based markup extension failed if there wasn't at least one `Binding` in use.
- Fixed a bug where `{Less}` markup extension mistakenly also succeeded if both input values where equal to each other.
- Breaking: Changed the behavior that the range defined by the `Epsilon` property for the `{Equal}` markup extension now also includes the range boundaries.
(e.g. 2 is now equal to 3 if `Epsilon` is set to 1)
- Introduced a new `{Is}` markup extension that can be used to check for a specific property of a given value.
v1.0.0
------
- First real release (no pre-release tag any more).
- Breaking: `{If}` markup extension now returns `boolean` values rather than `null`, if `Then` and `Else` properties are not set.
- Introduced new constructor to `{If}` markup extension to provide a convenient way of comparison two input values.
- Breaking: Removed old constructor from `{If}` markup extension to prevent wrong constructor resolution from XAML markup parser.
v0.9.0
------
- Initial release.