Browse Source

Merge branch 'main' into mdi-visible-fix

Tig Kindel 3 years ago
parent
commit
d2e46ae300

+ 1 - 0
ReactiveExample/Program.cs

@@ -9,6 +9,7 @@ namespace ReactiveExample {
 			RxApp.MainThreadScheduler = TerminalScheduler.Default;
 			RxApp.TaskpoolScheduler = TaskPoolScheduler.Default;
 			Application.Run (new LoginView (new LoginViewModel ()));
+			Application.Shutdown ();
 		}
 	}
 }

+ 1 - 1
ReactiveExample/ReactiveExample.csproj

@@ -4,7 +4,7 @@
         <TargetFramework>net6.0</TargetFramework>
     </PropertyGroup>
     <ItemGroup>
-        <PackageReference Include="ReactiveUI.Fody" Version="16.3.10" />
+        <PackageReference Include="ReactiveUI.Fody" Version="17.1.9" />
         <PackageReference Include="ReactiveUI" Version="17.1.9" />
         <PackageReference Include="ReactiveMarbles.ObservableEvents.SourceGenerator" Version="1.1.4" PrivateAssets="all" />
     </ItemGroup>

+ 8 - 0
Terminal.Gui/Terminal.Gui.csproj

@@ -43,6 +43,14 @@
     <Title>Terminal.Gui is a framework for creating console user interfaces</Title>
 
     <PackageReleaseNotes>
+      v1.4.0
+      * #1546  Fixes #1535. Added IsMouseDisabled prop to Application   
+      * #1515  Upgrading to Net6.0                                      
+      * #1508  Allows ListView trigger the Enter and Leave events.      
+      * #1506  Prevents a Process breaks rendering on Linux.            
+      * #1505  Fixes #1499. Allowing border settings for the MessageBox.
+      * #1504  Fixes #1502. Prevents high CPU usage.                    
+
       v1.3.0
       * #1491  Fix link to MainLoop docs in README.md
       * #1489  Dynamic menu/statusbar and Enable property fix.