Terminal.Gui.csproj 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  3. <DebugType></DebugType>
  4. </PropertyGroup>
  5. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  6. <DefineConstants>TRACE;DEBUG_IDISPOSABLE</DefineConstants>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all" />
  10. <PackageReference Include="NStack.Core" Version="0.16.0" />
  11. <PackageReference Include="MinVer" Version="3.0.0" PrivateAssets="all" />
  12. <InternalsVisibleTo Include="UnitTests" />
  13. <!-- <None Remove="ConsoleDrivers\#ConsoleDriver.cs#" /> -->
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Compile Update="Resources\Strings.Designer.cs">
  17. <DesignTime>True</DesignTime>
  18. <AutoGen>True</AutoGen>
  19. <DependentUpon>Strings.resx</DependentUpon>
  20. </Compile>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <EmbeddedResource Update="Resources\Strings.resx">
  24. <Generator>ResXFileCodeGenerator</Generator>
  25. <LastGenOutput>Strings.Designer.cs</LastGenOutput>
  26. </EmbeddedResource>
  27. </ItemGroup>
  28. <PropertyGroup>
  29. <MinVerSkip Condition="'$(Configuration)' == 'Debug'">true</MinVerSkip>
  30. </PropertyGroup>
  31. <PropertyGroup>
  32. <!-- See Terminal.Gui/README.md for how version numbering works -->
  33. <!-- This enables prefixing version tags with v, e.g. v1.0.0 Instead of 1.0.0 -->
  34. <MinVerTagPrefix>v</MinVerTagPrefix>
  35. <TargetFrameworks>net472;netstandard2.0;net6.0</TargetFrameworks>
  36. <RootNamespace>Terminal.Gui</RootNamespace>
  37. <AssemblyName>Terminal.Gui</AssemblyName>
  38. <DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
  39. <GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
  40. <GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
  41. <PackageId>Terminal.Gui</PackageId>
  42. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  43. <PackageProjectUrl>https://github.com/migueldeicaza/gui.cs/</PackageProjectUrl>
  44. <IncludeSymbols>true</IncludeSymbols>
  45. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  46. <PackageTags>csharp, terminal, c#, f#, gui, toolkit, console</PackageTags>
  47. <Description>Console user interface toolkit for .NET applications.</Description>
  48. <Owners>Miguel de Icaza</Owners>
  49. <Summary>Application framework for creating modern console applications using .NET</Summary>
  50. <Title>Terminal.Gui is a framework for creating console user interfaces</Title>
  51. <PackageReleaseNotes>
  52. v1.4.0
  53. * #1546 Fixes #1535. Added IsMouseDisabled prop to Application
  54. * #1515 Upgrading to Net6.0
  55. * #1508 Allows ListView trigger the Enter and Leave events.
  56. * #1506 Prevents a Process breaks rendering on Linux.
  57. * #1505 Fixes #1499. Allowing border settings for the MessageBox.
  58. * #1504 Fixes #1502. Prevents high CPU usage.
  59. v1.3.0
  60. * #1491 Fix link to MainLoop docs in README.md
  61. * #1489 Dynamic menu/statusbar and Enable property fix.
  62. * #1488 Fixed label positions to begin at Margins not just bottom left of screen
  63. * #1486 Scrollbarview ensures host always focused.
  64. * #1484 NetDriver fixes keys modifiers not reseting and enter key on Windows Terminal.
  65. * #1479 Trying updating FSharpExample to net5.0
  66. * #1478 Fixes #1475. Selection ending with a white space error.
  67. * #1476 Added PoshRedisViewer to the list of Showcases/Examples
  68. * #1473 Bump ReportGenerator from 4.8.12 to 4.8.13
  69. * #1472 ComboBox cursonDownKey nullref fix
  70. * #1468 Fixes #1467. AlternateForward/BackwardKey bypasses dialog modality
  71. * #1466 Fixes WindowsDriver HeightAsBuffer set to false.
  72. * #1450 Added Application.QuitKey property to allow change the quitting application key.
  73. * #1449 Bump ReactiveMarbles.ObservableEvents.SourceGenerator from 1.1.3 to 1.1.4
  74. * #1448 Fixes #1445. Fixing more the Curses and WSL clipboard.
  75. * #1447 Fixes #1446. Added more features to the Border and Toplevel focus.
  76. * #1441 Fixes #1438. Backspace not redrawing screen under some situations.
  77. * #1440 feature: Don't pull Terminal.Gui from NuGet, use ReactiveMarbles.ObservableEvents
  78. * #1437 Fixed bug setting ColorScheme on Autocomplete
  79. * #1436 Border feature
  80. * #1432 tweaked readme
  81. v1.2.1
  82. * Fixes code block fencing
  83. * NetDriver triple click mouse bug fix.
  84. * WindowsDriver double click mouse bug fix.
  85. * Fixes CursesDriver mouse and reset issue.
  86. * Correctly mark the .NET Framework reference assemblies as private.
  87. * Fix version conflicts caused by PR#1412
  88. * Autocomplete for TextView
  89. * Fixes #1402. Only WindowsDriver supports horizontal scroll.
  90. * Fixes #1396. Using the Loaded event instead the Ready event.
  91. * Fixes #1394. Added ReflectedType to check for overridden.
  92. * Fixes #1389. Added a unidirectional feature to the Marquee styles to the ProgressBar.
  93. * Fixes #1387. Allowing the UnitTests project to test internal keywords.
  94. * Fixes #1384. Added a VisibleChanged event on the View class.
  95. * Fixes #1381. Unit tests to demonstrate the Key enum ambiguity check.
  96. * Fixes #546. Enhancement ProgressBar.
  97. * Disables MinVer on Debug builds
  98. * Adds Lineview
  99. * CheckBox AutoSize should initialize with the Label default.
  100. * Fixes to avoid exception with the ComboBox in All Views Tester.
  101. * Simplifying FrameView constructors avoiding redundant code.
  102. * Button text should be centered by default.
  103. * Fixes #1078. ColorScheme setter now calls SetNeedsDisplay.
  104. * Bump ReportGenerator from 4.8.11 to 4.8.12
  105. * Fixes #1314. TextView now exposes file exceptions from callers.
  106. * Prevents application crash if OS clipboard is not supported.
  107. * Fixes #1358. Attribute.Foreground / Attribute.Background now working with CursesDriver
  108. * Added support for coloring cells in TableView
  109. * More unit test for issue #1344, testing IsVertical as False.
  110. * Fix for #1353 (tab view not refreshing in some circumstances)
  111. * Fixes #1344. Setting showBothScrollIndicator to false on the constructor don't throws NullReferenceException anymore.
  112. * Fixes #1341. Now if AutoSize is true the Bounds size is always updated by using the Dim.Fill or the Dim.Absolute.
  113. * Resolves: Add GitHub Codespaces configuration
  114. * Expose TextView color methods as protected virtual (allows custom colors)
  115. * Fixes InvalidOperationException from throwing when removing the label on the LabelsAsLabels scenario.
  116. * Added a Initialize method to the Window to simplify the constructors.
  117. * Fixes GetCurrentWidth and GetCurrentHeight providing the correct current values.
  118. * Fixes CursesDriver resize issue.
  119. * Toplevel improvement as a subviews container without frame borders.
  120. * Prevents ListView top to be less than zero if source count is zero.
  121. * Fixes #1326. Prevent selected item to be equal to the source count.
  122. * Fixes #1327. Fixes TextField backspace and canceling TextChanging.
  123. * Prevents WindowSize event from being always triggered in Netdriver unnecessarily.
  124. * Fix bug where series/annotations are added during render
  125. * Fixes #1318. Ensures that the OS clipboard is always sets.
  126. * Fixes #983. Improving clipboard with interaction with the OS.
  127. * Added Attributes tests; balanced Application.Init/Shutdown
  128. v1.1.1
  129. * Fixes #1307 - MainLoop timeouts duplicate keys error.
  130. v1.1.0
  131. * TextView CursorLeft/CursorRight change focus when at start/end #1271
  132. * Fixes #1273 - Add direction summaries
  133. * Fixes #1276 - Added TextDirection constructor to View and Label and improving AutoSize
  134. * Fixes #1272 - Fixes Linux/Mac window sizing
  135. * Fixes #1281 - Fixed CursesDriver colors. Added BasicColors scenario
  136. * Fixes #1266 - Using Ctrl+PageUp/PageDown to allowing navigate through windows.
  137. * TableView - adds last column dividing line #1289
  138. * Fixes #1291. Combining two PosAbsolute or two DimAbsolute result on a PosAbsolute or DimAbsolute
  139. * Changed Console.WriteLine to ITestOutputHelper in tests #1305
  140. v1.0.0
  141. * Version 1.0 Release!!! - Thank you to @migueldeicaza, @tig, @bdisp, @tznind, @jmprricone, and many more!
  142. v1.0.0-rc.13
  143. * NEW CONTROL: GraphView - thanks @tznind!
  144. * Fixes #1256 - OutConsoleGridView no longer works - ENTER does not work
  145. v1.0.0-rc.12
  146. * Fixes #1257 - ListView's ProcessKey should return false if no OpenSelectedItem handler is defined
  147. v1.0.0-rc.10
  148. * Fixes #931. Fixed the limit 25 lines issue
  149. * Fixes #1251. Fixes TextValidateProvider exception on the All View Tester scenario.
  150. v1.0.0-rc.9
  151. * Fixes #1210. Added AllowsReturn, AllowsTab and Multiline into the TextView.
  152. * Fixes #1241. Added SendKeys feature to the ConsoleDriver.
  153. * Fixes #418 and #931. Unix terminal hangs after exit.
  154. v1.0.0-rc.7
  155. * Added TextValidateField - Enables masked and validated text input. Thanks @jmperricone!
  156. * Refactored TreeView and TabView to reduce api surface area
  157. * Added code coverage reporting
  158. v1.0.0-rc.1
  159. * Added Dependabot support and updated dependencies
  160. * Renamed master branch to main
  161. * Fixes #1211. Added support to TextView for word based operations Ctrl+Del and Ctrl+Backspace
  162. * Fixes #1208. Now the selected text is overwritten if SelectedStart is greater than CursorPosition.
  163. * Fixes #1206. NetDriver now print the selected text. Attribute struct now create a valid Value for the current driver. Insert key is detected by NetDriver.
  164. * Fixes #1202. CheckBox now deals with a functional '_' underscore hotkey.
  165. * Fixes #1199. Normalize views constructors and did some typo fixing.
  166. * Fixes #1197. Prevents width negative value if added directly to the A
  167. * Added Vertical Alignment and Text Direction + UICatalog Demo (thanks @jmprricone!)
  168. * Fixes #1193. A non auto size default Button now preserves his width and thus the text alignment now work.
  169. * Fixes #1187. Prevents WordBackward throwing an exception if point is greater than the text length
  170. * Fixes #1185. Button click is only processed if there are no mouse mov
  171. * Fixes #1183. ListView now return true on the handled keys
  172. * Fixes #1179. TextView does not copy to the clipboard on deleting
  173. * Fixes #1177. Now is possible to copy or cut on the TextView with the...
  174. * Fixes #1175. demo.cs editor now implement "Copy", "Cut" and "Paste".
  175. * Fixes #1173. TextField only need to handle a single line.
  176. * Fixes #1171. Delete and Backspace now deletes the selected text
  177. * Fixes #1167. Application.Run method with #DEBUG can be simplified.
  178. * Fixes #1165. Changing the directory name label or the field name crashes
  179. * Fixes #1159. Dialog must have a default button if none is provided.
  180. v1.0.0-beta.11
  181. * NEW CONTROL: Tabview - thanks @tznind!
  182. * UI Catalog now shows correct Terminal.gui.dll version
  183. * Fixes #939 - README sample does not compile - thanks @buzzfrog!
  184. * Fixes #1154 - FileDialog blank constructor results in unstable window
  185. * Fixes #1155 - MoveForward/MoveBackward not bound on Text controls.
  186. * Fixes #1152 - Generic TreeView`1 breaks upon selection in All Views Tester)
  187. * Fixes #1148 - TextFormatter.Format does not keep the end spaces on wrapped text.
  188. * Fixes #134 - (HUGE) TextView: Add line wrapping.
  189. * Fixes #1145 - ScrollBar down arrow is not showing.
  190. * Fixes #1143 - Cannot change the MenuBar's background color.
  191. * Fixes #1141 - Cannot change the StatusBar's background color.
  192. * Fixes #1048 - BrighCyan to BrightCyan spelling
  193. * Fixes #1130 - Broken Table/TreeView links in docs.
  194. v1.0.0-beta.8
  195. * Now using MinVer to generate version numbers from git tags.
  196. * Updated publish-to-nuget to work with minver
  197. v1.0.0-pre.9
  198. * NEW CONTROL: TreeView - Thanks @tznind!
  199. * Fixes #1066. View sizing across the various terminals has been fixed; works in Windows Terminal again - thanks @bdisp
  200. * Fixes #1117. Newfile Modal.
  201. v1.0.0-pre.8
  202. * NOTE: Windows Terminal is broken - see #1099
  203. * NEW CONTROL: TableView - Thanks @tznind!
  204. * NetDriver is signficantly imporved - thanks @bdisp!
  205. * Fixes #1016. Window is drawing its frame over the menu.
  206. * Fixes #1018. Since childNeedsDisplay is used outside the View class it must to be a property.
  207. * Fixes #1024. TextView is printing theFixes #1030. Getting colors from the Attributes of a ColorScheme. new line character "\n" with a symbol
  208. * Fixes #1030. Getting colors from the Attributes of a ColorScheme.
  209. * Fixes #1034. The NuGet packages need to be updated.
  210. * Fixes #1043. The menu separator is being printed in the wrong place.
  211. * Fixes #93. Audit TextView just like we did TextField to ensure proper treatment of Unicode.
  212. * Fixes #1050. ScrollView takes too long to scroll enormous content size.
  213. * BREAKING CHANGE - Fixes #1052. Application.CurrentView looks unused.
  214. * Fixes #1053. ProcessMouseEvent seems to initialize MouseEvent incorrectly.
  215. * Fixes #1056. Window doesn't redraw his SuperView properly.
  216. * Fixes #1061. ComputerLayout scenario does not drawn correctly.
  217. * Added unhandled exception handling in Application.Run (#1063)
  218. * Fixes #1068. The ResizeView doesn't handle the AutoSize properly.
  219. * Fixes #1071. Toplevel.GetTopLevelSubviews (). Changed from HashSet to IList.
  220. * Fixes #1073, #1058, #480 #1049. Provides more automation to the ScrollBarView, allowing easily implement on any view.
  221. * Application.Shutdown() does not reset SynchronizationContext (#1085).
  222. * Fixes #1088. On WindowsDriver moving the mouse with a button pressed, when it is released, the button clicked event is fired, causing an unintentional event.
  223. * Fixes #1091. Continuous button pressed not working properly on Linux.
  224. * Fixes #1100. TextFormatter doesn't handle ColumnWidth greater than 1.
  225. * Cursor shape and visibility #1102
  226. v1.0.0-pre.6
  227. * If StatusBar.Visible is set to false, TopLevel resizes correctly enabling hiding/showing of a StatusBar. UICatalog demonstrates.
  228. * New sample/demo app - ReactiveExample - Shows how to use reactive extensions and ReactiveUI with gui.cs. (Thanks @worldbeater)
  229. * BREAKING API CHANGE - Removed IEnumerable from View and Window. Use Subviews property instead. See #950.
  230. * Fixes #998. Added a cancelable TextChanging event to prevent the TextChanged event being called if the changing is canceled.
  231. * Fixes #1002. Added a AutoSize property to the View class.
  232. * Fixes #1009. AutoHideScrollBars is causing ScrollView always redrawing.
  233. * Update to .NET 5 RTM
  234. * Fixes #995. Improving TextField to work properly with Unicode characters
  235. * Fixes #999. Toplevel should only redraw the subviews if !NeedDisplay.IsEmpty or layoutNeeded.
  236. * Fixes #992. TextFormatter class now respect the view dimensions. Some typo fixing too.
  237. * Fixes #990. Pos and Dim only can be properly used when all the views are totally initialized.
  238. * Fixes #979. Force call LayoutSubviews to perform layout.
  239. * Fixes #988. Update NStack.Core to version 0.15.0
  240. * Fixes #41 and #949. Unit test to compare the difference between System.Rune and System.Text.Rune.
  241. * Fixes #881, #928. Allowing more key combinations.
  242. * Fixes #976. Mouse prints sequence characters on the terminal and the screen is not fully cleared. Only for netcoreapp3.1.
  243. * BREAKING API CHANGE - #950 - Remove IEnumerable from View and Window
  244. * Fixes #959. CursorPosition with hotkeys.
  245. * Fixes #963. Added support for Unicode in TextField.
  246. * Fixes #961. Recreates the Frame when necessary.
  247. * Fixes #957. Terminal.Gui nuget package in Reactive example version.
  248. * Fixes #933. Updated to work with libncurses 6.2
  249. * Fixes #225 and maybe #41. Allowing Rune.ColumnWidth greater than one.
  250. * Use glyphs for checkmarks and selection.
  251. v0.90 - "Feature Complete" pre-release of Terminal.Gui (aka gui.cs) 1.0. This release is a signficant upgrade from the previous published release (0.81). Most of the major changes and bug fixes are listed below. NOTE: This release includes breaking changes to the API; we will strive to avoid any more breaking changes before 1.0.
  252. What's new:
  253. * New sample/demo app - UI Catalog - Replaces demo.cs with an easy to use and extend set of demo scenarios. (Thanks @tig!)
  254. * The API documentation is completely revamped and updated. Readme upated. Contributors guide added (Thanks @tig!)
  255. * MenuBar can now have MenuItems directly (enables top-level menu items with no submenu). (Thanks @tig!)
  256. * API semantics are much more consistent across classes. For example, all events are now defined in terms of event Action instead of EventHanlder. BREAKING CHANGE. (Thanks @bdisp, @worldbeater, and @tig!)
  257. * The project has been refactored an reorganized to reduce risk of bugs and make it easier to contribute.
  258. * Symbols are now included with the nuget package.
  259. Fixes/Improvements (partial list; see Github issues for complete list):
  260. * Fixes #396 - Text alignnment issues. (Thanks @tig!)
  261. * Fixes #423 - Fix putting results of ocgv on command line erases cursor. (Thanks @tig!)
  262. * Apps can now get KeyUp/KeyDown events. (Thanks @tig!)
  263. * Example/Designer csproj files updated to latest Visual Studio model. (Thanks @tig!)
  264. * Adjusted the default colors for Windows to make more readable. (Thanks @tig!)
  265. * Toplevel.Ready event - Fired once the Toplevel's MainLoop has started (#445). (Thanks @tig!)
  266. * All compile warnings fixed. (Thanks @tig!)
  267. * Fixed a crash in EnsureVisibleBounds. (Thanks @tig!)
  268. * Application.Init/Shutdown are more robust. (Thanks @tig!)
  269. * New "Draw Window Frame" code; consistent across Window, FrameView, and Menu. Fixes many drawing bugs. (Thanks @tig!)
  270. * Fixes #522 - Last view of Frameview not drawn. (Thanks @tig!)
  271. * Clipping has been fixed/restored - it now works properly. (#586) (Thanks @tig!)
  272. * Added a View.LayoutComplete event (#569). (Thanks @tig!)
  273. * Fixes #299 - MessageBox now auto sizes. (Thanks @tig!)
  274. * Fixes #557 - MessageBoxes on small screens. (Thanks @tig!)
  275. * Fixes #432 - MessageBox does not deal with long text; width/height params are goofy. (Thanks @tig!)
  276. * Fixes #35 - Dialog should have 1 char padding. (Thanks @tig!)
  277. * `MessageBox.Query` called with `width` and `height` == 0 get auto-size behavior. A new constructor is added making this easy to use. (Thanks @tig!)
  278. * Multi-line `MessageBox`es are now supported. Just use `\n` to add lines. The height of the MessageBox will adjust automatically. (Thanks @tig!)
  279. * The `MessageBoxes` Scenario in UI Catalog provides a full demo/test-case. (Thanks @tig!)
  280. * `Dialog` called with `width` and `height` == 0 are sized to 85% container. A new constructor is added making this easy to use. (Thanks @tig!)
  281. * Dialog (and MessageBox `Buttons` are now dynamically laid out using Computed layout. (Thanks @tig!)
  282. * A `Dialogs` Scenario has been added to UI Catalog making it easy to test the API. (Thanks @tig!)
  283. * `Button` now supports BOTH specifying a hotkey with '_' and the old behavior of using the first uppercase char (if '_' is not found). (Thanks @tig!)
  284. * All UI Catalog scenarios that use `Dialog` or `MessageBox` now use the simplified API. (Thanks @tig!)
  285. * `Terminal.Gui.dll` now has version metadata and UI Catalog's about box displays it as a test case. (Thanks @tig!)
  286. * Button, Dialog, and MessageBox API documentation has been updated/revised. (Thanks @tig!)
  287. * `View`, `Window`, `FrameView`, and `Dialog` have been upgraded to use the new `ConsoleDriver.DrawFrameWindow` API directly. (Thanks @tig!)
  288. * New ComboBox control (Thanks @fergusonr!)
  289. * ConsoleDriver now supports improved KeyModifers (shift keys) with an expanded Keys Sceanrio in UI Catalog. (Thanks @bdisp!)
  290. * Tons of mouse handling improvements. (Thanks @bdisp!)
  291. * Fsharp sample updated. (Thanks @bdisp!)
  292. * Fixes #562 - Background drawing issue. (Thanks @bdisp!)
  293. * Fixes #517 - Focus and mouse handlers enahced (BREAKING CHANGE). (Thanks @bdisp!)
  294. * Fixed resizing update and correct Toplevel colors without colors. (Thanks @bdisp!)
  295. * Fixed #515, #518, #536, #540. (Thanks @bdisp!)
  296. * Added Threading Scenario to UI catalog. (Thanks @bdisp!)
  297. * Added support for F11 and F12 keys. (Thanks @bdisp!)
  298. * Multiple improvements to Date/TimeField. (Thanks @bdisp!)
  299. * Fixes #409 - Invoke does not cause Wakeup #501. (Thanks @bdisp!)
  300. * Fixed Label text alignment. (Thanks @bdisp!)
  301. * Added mouse features in the Unix version. Supports xterm-1006. (Thanks @bdisp!)
  302. * Several StatusBar fixes. (Thanks @bdisp!)
  303. * Tons of mouse improvements including mouse wheel support (e.g. #404, #409). (Thanks @bdisp!)
  304. * Added a CloseFile method to the TextView as stated in #452. (Thanks @bdisp)
  305. * Added a OpenSelectedItem event to the ListView #429. (Thanks @bdisp!)
  306. * Fixes the return value of the position cursor in the TextField. (Thanks @bdisp!)
  307. * Updates screen on Unix window resizing. (Thanks @bdisp!)
  308. * Fixes the functions of the Edit-Copy-Cut-Paste menu for the TextField that was not working well. (Thanks @bdisp!)
  309. * More robust error handing in Pos/Dim. Fixes #355 stack overflow with Pos based on the size of windows at startup. Added a OnResized action to set the Pos after the terminal are resized. (Thanks @bdisp!)
  310. * Fixes #389 Window layouting breaks when resizing. (Thanks @bdisp!)
  311. * Fixes #557 MessageBox needs to take ustrings (BREAKING CHANGE). (Thanks @tig!)
  312. * Fixes ScrollView in several key ways. (Thanks @tig!)
  313. * Now supports Computed layout and has constructors that don't require parameters.
  314. * ScrollBarViews are now positioned using Computed layout versus error prone absolute
  315. * ScrollBarViews now correctly position themselves when one, either, or both are on/off.
  316. * IsVertical is now a public property that does the expected thing when changed
  317. * Mouse handling is better; there's still a bug where the mouse doesn't get grabbed by the ScrollView initially but I think this is a broader problem. I need @BDisp's help on this.
  318. * Supports "infinite scrolling" via the new OnDrawContent/DrawContent event on the View class.
  319. * The Scrolling Scenario was enhanced to demo dynamically adding/removing horizontal/vertical scrollbars (and to prove it was working right).
  320. * The Checkbox.Toggled event is now an EventHandler event and passes previous state. (Thanks @tig!)
  321. * Fixes #102 All Views now support parameterless constructors. (Thanks @Bdisp and @tig!)
  322. * Fixes #583 Button can now be sized. Button now supports TextAlignment. (Thanks @Bdisp!)
  323. * Fixes #421 Now builds on Linux with "dotnet build". (Thanks @AArnott!)
  324. * MenuItem now supports checked/selected items. (Thanks @tig!)
  325. * Label no longer incorreclty displays formfeed char. (Thanks @tig!)
  326. * Fixes #645 - RadioGroup now supports unicode. (Thanks @tig!)
  327. * Fixes #573 - RadioGroup supports Computed Layout. (Thanks @tig!)
  328. * RadioGroup now uses a single, good looking, glyph. (Thanks @tig!)
  329. * RadioGroup now supportrs the Action-based event pattern correctly. BREAKING CHANGE. (Thanks @tig!)
  330. * ConsoleDriver and Drivers have new standard glyph definitions for things like right arrow. (Thanks @tig!)
  331. * ScrollView updated to use pretty glyphs. (Thanks @tig!)
  332. * Menubar now uses pretty arrow glyph for sub-menus. (Thanks @tig!)
  333. * View now has a Text property, implemented via the new TextFormatting class. (Thanks @tig!)
  334. * TextAlignment is implemented once across all Views that support it.
  335. * Unicode support is now much more robust and complete; dozens of bugs fixed.
  336. * Any view dervied from View now has a Text property with multi-line text formatting, including word-wrap and hotkey support.
  337. * Label is now mostly just an alias for View; supports Clicked
  338. * Button is now a very thin class derived from View (no API changes).
  339. * Dozens of unit tests for TextAlignment are provided reducing the chance of regressions.
  340. * Fixes #351. Added a horizontal display for RadioGroup. (Thanks @bidsp!)
  341. * Fixes #644. Added a UICatalog Scenario for a dynamic menu bar. (Thanks @bidsp!)
  342. * Fixes #838. Added a Visible property to the View. (Thanks @bidsp!)
  343. </PackageReleaseNotes>
  344. </PropertyGroup>
  345. </Project>