ソースを参照

Merge pull request #2031 from tig/v_1_8_0

Release v1.8.0
Tig Kindel 2 年 前
コミット
08791e7c88

+ 1 - 1
.github/workflows/api-docs.yml

@@ -29,7 +29,7 @@ jobs:
       working-directory: docfx
       # https://stackoverflow.com/questions/56726429/how-to-run-multiple-commands-in-one-github-actions-docker
       run: |
-        rm ../docs -Recurse -Force
+        rm ../docs -Recurse -Force -ErrorAction SilentlyContinue
         docfx docfx.json
       continue-on-error: false      
 

+ 1 - 1
Example/Example.csproj

@@ -11,7 +11,7 @@
     <InformationalVersion>1.0</InformationalVersion>
   </PropertyGroup>
   <ItemGroup>
-    <PackageReference Include="NStack.Core" Version="1.0.1" />
+    <PackageReference Include="NStack.Core" Version="1.0.3" />
   </ItemGroup>
   <ItemGroup>
     <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj" />

+ 37 - 2
Terminal.Gui/Terminal.Gui.csproj

@@ -17,7 +17,7 @@
   </PropertyGroup>
   <ItemGroup>
     <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
-    <PackageReference Include="NStack.Core" Version="1.0.1" />
+    <PackageReference Include="NStack.Core" Version="1.0.3" />
     <InternalsVisibleTo Include="UnitTests" />
   </ItemGroup>
   <!-- Uncomment the RestoreSources element to have dotnet restore pull NStack from a local dir for testing -->
@@ -79,10 +79,45 @@
     <Summary>A toolkit for building rich console apps for .NET that works on Windows, Mac, and Linux/Unix.</Summary>
     <Title>Terminal.Gui - Cross Platform Terminal user interface toolkit for .NET</Title>
     <PackageReleaseNotes>
+      Release v1.8.0
+      * Fixes #2043. Update to NStack v1.0.3
+      * Fixes #2045. TrySetClipboardData test must be enclosed with a lock.
+      * Fixes #2025. API Docs are now generated via Github Action - View Source Works
+      * Fixes #1991. Broken link in README
+      * Fixes #2026. Added ClearOnVisibleFalse to flag if the view must be cleared or not.
+      * Fixes #2017 and #2013. MainLoopTests.InvokeLeakTest failures
+      * Fixes #2014. Application mouseGrabView is run twice if return true.
+      * Fixes #2011. Wizard no longer needs to set specific colors, because #1971 has been fixed.
+      * Fixes #2006. ProgressBarStyles isn't disposing the _fractionTimer on quitting if running.
+      * Fixes #2004. TextFormatter.Justified not adding the extra spaces.
+      * Fixes #2002. Added feature to fill the remaining width with spaces.
+      * Fixes #1999. Prevents the mouseGrabView being executed with a null view.
+      * Fixes #1994. BREAKING CHANGE. Ensure only a single IdleHandlers list can exist.
+      * Fixes #1979. MessageBox.Query not wrapping since 1.7.1
+      * Fixes #1989. ListView: Ensures SelectedItem visibility on MoveDown and MoveUp.
+      * Fixes #1987. Textview insert text newline fix
+      * Fixes #1984. Setting Label.Visible to false does not hide the Label
+      * Fixes #820. Added HideDropdownListOnClick property.
+      * Fixes #1981. Added SplitNewLine method to the TextFormatter.
+      * Fixes #1973. Avoid positioning Submenus off screen.
+      * Added abstract MakeColor and CreateColors to create the colors at once.
+      * Fixes #1800. TextView now uses the same colors as TextField.
+      * Fixes #1969. ESC on CursesDriver take to long to being processed.
+      * Fixes #1967. New keys for DeleteAll on TextField and TextView.
+      * Fixes #1962 - Change KeyBindings to allow chaining commands
+      * Fixes #1961 Null reference in Keybindings Scenario and hotkey collision
+      * Fixes #1963. Only remove one character on backspace when wordwrap is on
+      * Fixes #1959. GoToEnd should not fail on an empty TreeView
+      * Fixes #1953. TextView cursor position is not updating by mouse.
+      * Fixes #1951. TextView with selected text doesn't scroll beyond the cursor position.
+      * Fixes #1948. Get unwrapped cursor position when word wrap is enabled on TextView.
+      * Ensures that the isButtonShift flag is disabled in all situations.
+      * Fixes #1943. Mouse ButtonShift is not preserving the text selected.
+
       Release v1.7.2
       * Fixes #1773. Base color scheme for ListView hard to read
       * Fixes #1934. WindowsDriver crash when the height is less than 1 with the VS Debugger
-      
+
       Release v1.7.1
       * Fixes #1930. Trailing whitespace makes MessageBox.Query buttons disappear.
       * Fixes #1921. Mouse continuous button pressed is not working on ScrollView.

+ 1 - 1
docfx/build.ps1

@@ -2,7 +2,7 @@
 
 dotnet build --configuration Release ../Terminal.sln
 
-rm ../docs -Recurse -Force
+rm ../docs -Recurse -Force -ErrorAction SilentlyContinue
 
 $env:DOCFX_SOURCE_BRANCH_NAME="main"