mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 07:47:54 +01:00
updated readmes for v2
This commit is contained in:
@@ -10,8 +10,8 @@ We welcome contributions from the community. See [Issues](https://github.com/gui
|
||||
|
||||
Terminal.Gui uses the [GitFlow](https://nvie.com/posts/a-successful-git-branching-model/) branching model.
|
||||
|
||||
* The `main` branch is always stable, and always matches the most recently released Nuget package.
|
||||
* The `develop` branch is where new development and bug-fixes happen. It is the default branch.
|
||||
* The `v1_release_` and `v2_release` branches are always stable, and always matches the most recently released Nuget package.
|
||||
* The `v1__develop` and `v2_develop` branches are where new development and bug-fixes happen. `v2_develop` is the default Github branch.
|
||||
|
||||
### Forking Terminal.Gui
|
||||
|
||||
@@ -33,11 +33,11 @@ You now have your own fork and a local repo that references it as `origin`. Your
|
||||
|
||||
### Starting to Make a Change
|
||||
|
||||
Ensure your local `develop` (for v1) or `v2_develop` (for v2) branch is up-to-date with `upstream` (`github.com/gui-cs/Terminal.Gui`):
|
||||
Ensure your local `v1_develop` (for v1) or `v2_develop` (for v2) branch is up-to-date with `upstream` (`github.com/gui-cs/Terminal.Gui`):
|
||||
```powershell
|
||||
cd ./Terminal.Gui
|
||||
git checkout develop
|
||||
git pull upstream develop
|
||||
git checkout v2_develop
|
||||
git pull upstream v2_develop
|
||||
```
|
||||
|
||||
Create a new local branch:
|
||||
|
||||
11
README.md
11
README.md
@@ -1,17 +1,16 @@
|
||||

|
||||

|
||||

|
||||
[](https://www.nuget.org/packages/Terminal.Gui)
|
||||

|
||||
[](https://www.nuget.org/packages/Terminal.Gui)
|
||||
[](LICENSE)
|
||||

|
||||
|
||||
***The current, stable, release of Terminal.Gui is [v1.x](https://www.nuget.org/packages/Terminal.Gui). It is stable, rich, and broadly used. The team is now focused on designing and building a significant upgrade we're referring to as `v2`. Therefore:***
|
||||
* *`v1` is now in maintenance mode, meaning we will accept PRs for v1.x (the `develop` branch) only for issues impacting existing functionality.*
|
||||
* *All new development happens on the `v2_develop` branch. See the V2 discussion [here](https://github.com/gui-cs/Terminal.GuiV2Docs/discussions/1940).*
|
||||
* *Developers are encouraged to continue building on [v1.x](https://www.nuget.org/packages/Terminal.Gui) until we announce `v2` is stable.*
|
||||
|
||||
* The current, stable, release of Terminal.Gui v1 is [](https://www.nuget.org/packages/Terminal.Gui).
|
||||
* The current `prealpha` release of Terminal.Gui v2 can be found on [Nuget](https://www.nuget.org/packages/Terminal.Gui).
|
||||
* Developers starting new TUI projects are encouraged to target `v2`. The API is signifcantly changed, and significantly improved. There will be breaking changes in the API before Beta, but the core API is stable.
|
||||
* `v1` is in maintenance mode and we will only accept PRs for issues impacting existing functionality.
|
||||
|
||||
**Terminal.Gui**: A toolkit for building rich console apps for .NET, .NET Core, and Mono that works on Windows, the Mac, and Linux/Unix.
|
||||
|
||||

|
||||
|
||||
@@ -6,9 +6,7 @@ All files required to build the **Terminal.Gui** library (and NuGet package).
|
||||
|
||||
- `\` - The root folder contains the source code for the library.
|
||||
- `Terminal.Gui.sln` - The Visual Studio solution
|
||||
- `Application.cs` - A `static` class that provides the base 'application driver'. Given it defines a **Terminal.Gui** application it is both logically and literally (because `static`) a singleton. It has direct dependencies on `MainLoop`, `Events.cs` `NetDriver`, `CursesDriver`, `WindowsDriver`, `Responder`, `View`, and `TopLevel` (and nothing else).
|
||||
- `MainLoop.cs` - Defines `IMainLoopDriver` and implements the `MainLoop` class.
|
||||
- A few supporting class files
|
||||
- `Application\` - The core `Application` logic, including `Application.cs`, which is is a `static` class that provides the base 'application engine', `RunState`, and `MainLoop`.
|
||||
|
||||
- `ConsoleDrivers\`
|
||||
- `ConsoleDriver.cs` - Definition for the Console Driver API.
|
||||
@@ -38,7 +36,7 @@ All files required to build the **Terminal.Gui** library (and NuGet package).
|
||||
- `Dialog` -
|
||||
- etc...
|
||||
|
||||
- `Types/` - A folder (not namespace) containing implementations of `Point`, `Rect`, and `Size` which are ancient versions of the modern `System.Drawing.Point`, `System.Drawing.Size`, and `System.Drawning.Rectangle`.
|
||||
- `FileServcies/` - File services classes.
|
||||
|
||||
## Version numbers
|
||||
|
||||
|
||||
Reference in New Issue
Block a user