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
Copy file name to clipboardExpand all lines: Directory.Build.props
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,12 @@
1
1
<Project>
2
2
<!-- NuGet Specs -->
3
3
<PropertyGroup>
4
-
<Version>0.28.0</Version>
4
+
<Version>0.29.0</Version>
5
5
<Authors>Fabulous Contributors</Authors>
6
-
<PackageVersion>0.28.0</PackageVersion>
7
-
<PackageReleaseNotes>Added a dispatch method accessible in the app projects (https://github.com/fsprojects/Fabulous/pull/240)
8
-
Added a debounche helper function (https://github.com/fsprojects/Fabulous/pull/237)</PackageReleaseNotes>
6
+
<PackageVersion>0.29.0</PackageVersion>
7
+
<PackageReleaseNotes>BREAKING CHANGES:
8
+
Replaced Minimum and Maximum properties of Slider/Stepper by a single MinimumMaximum property (tuple) (https://github.com/fsprojects/Fabulous/pull/246)
9
+
Replaced the "fscd" daemon (embedded in the Fabulous.LiveUpdate package) by a new dotnet CLI tool "fabulous-cli". See https://fsprojects.github.io/Fabulous/tools.html for more informations. (https://github.com/fsprojects/Fabulous/pull/247)</PackageReleaseNotes>
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
#### 0.29.0
2
+
3
+
BREAKING CHANGES:
4
+
* Replaced Minimum and Maximum properties of Slider/Stepper by a single MinimumMaximum property (tuple) (https://github.com/fsprojects/Fabulous/pull/246)
5
+
* Replaced the "fscd" daemon (embedded in the Fabulous.LiveUpdate package) by a new dotnet CLI tool "fabulous-cli". See https://fsprojects.github.io/Fabulous/tools.html for more informations. (https://github.com/fsprojects/Fabulous/pull/247)
6
+
1
7
#### 0.28.0
2
8
3
9
* Added a dispatch method accessible in the app projects (https://github.com/fsprojects/Fabulous/pull/240)
match maximum with None -> () | Some v -> attribBuilder.Add(View._MaximumAttribKey, (v))
3202
-
match minimum with None -> () | Some v -> attribBuilder.Add(View._MinimumAttribKey, (v))
3195
+
match minimumMaximum with None -> () | Some v -> attribBuilder.Add(View._MinimumMaximumAttribKey, (v))
3203
3196
match value with None -> () | Some v -> attribBuilder.Add(View._ValueAttribKey, (v))
3204
3197
match increment with None -> () | Some v -> attribBuilder.Add(View._IncrementAttribKey, (v))
3205
3198
match valueChanged with None -> () | Some v -> attribBuilder.Add(View._ValueChangedAttribKey, (fun f -> System.EventHandler<Xamarin.Forms.ValueChangedEventArgs>(fun _sender args -> f args))(v))
@@ -3220,21 +3213,17 @@ type View() =
3220
3213
// update the inherited View element
3221
3214
let baseElement = (if View.ProtoView.IsNone then View.ProtoView <- Some (View.View())); View.ProtoView.Value
0 commit comments