Skip to content

Commit e1682b3

Browse files
authored
Merge pull request #320 from gui-cs/update-latest-v2
Update latest v2
2 parents 109506a + ffa40a3 commit e1682b3

176 files changed

Lines changed: 5410 additions & 4566 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ jobs:
66
package:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
10+
11+
- name: Setup .NET
12+
uses: actions/setup-dotnet@v4
13+
with:
14+
dotnet-version: '10.0.x'
1015

1116
- name: Build
1217
run: cd src && dotnet build

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
# User-specific files (MonoDevelop/Xamarin Studio)
1414
*.userprefs
1515

16+
.claude
17+
1618
# Mono auto generated files
1719
mono_crash.*
1820

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,12 +198,12 @@ italics are experimental and require passing the `-e` flag when starting applica
198198
- [x] GraphView
199199
- [x] HexView
200200
- [x] Label
201-
- [x] LineView
201+
- [x] Line
202202
- [x] ListView
203203
- [x] MenuBar
204204
- [ ] Copy/Paste preserve menu entries
205205
- [x] ProgressBar
206-
- [x] RadioGroup
206+
- [x] OptionSelector
207207
- [ ] [SplitContainer](https://github.com/gui-cs/Terminal.Gui/pull/2258) (Unreleased)
208208
- [ ] Copy/Paste preserve split content panels
209209
- [x] StatusBar

Showcase/Buttons.Designer.cs

Lines changed: 168 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Showcase/Buttons.cs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
//------------------------------------------------------------------------------
3+
4+
// <auto-generated>
5+
// This code was generated by:
6+
// TerminalGuiDesigner v2.0.2.0
7+
// You can make changes to this file and they will not be overwritten when saving.
8+
// </auto-generated>
9+
// -----------------------------------------------------------------------------
10+
namespace Showcase {
11+
using Terminal.Gui;
12+
13+
14+
public partial class Buttons {
15+
16+
public Buttons() {
17+
InitializeComponent();
18+
}
19+
}
20+
}

Showcase/Checkboxes.Designer.cs

Lines changed: 166 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)