mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
* Implement Unix driver
* Add more sequences related with macOS
* Helper method to map char to control keys
* Add DriverName property
* Fix error on Unix unit tests
* Fix Non-nullable property 'DriverName' must contain a non-null value when exiting constructor.
* Fix Ctrl being ignored in the range \u0001-\u001a
* Add unit test for the MapChar method
* Fix cursor visibility and cursor styles
* Avoid sometimes error when running gnome-terminal
* Captures Ctrl+Shift+Alt+D7
* Captures Ctrl+D4, Ctrl+D5, Ctrl+D6 and Ctrl+D7
* Add unit test for Ctrl+Shift+Alt+7
* Fix issue on Windows where sending AltGr+some key fail assertion
* Exclude Oem1 from assertion
* Fix regex pattern
* Remove driverName from the constructor
* Revert "Remove driverName from the constructor"
This reverts commit 004e9f9588.
* Remove driverName from the constructor
* Add generic CreateSubcomponents method avoiding redundancy
* Add v2unix profiles
* Replace with hexadecimal values
---------
Co-authored-by: Tig <tig@users.noreply.github.com>
147 lines
5.0 KiB
JSON
147 lines
5.0 KiB
JSON
{
|
|
"profiles": {
|
|
"UICatalog": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--debug-log-level Debug"
|
|
},
|
|
"UICatalog --driver NetDriver": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--driver NetDriver"
|
|
},
|
|
"UICatalog --driver WindowsDriver": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--driver WindowsDriver"
|
|
},
|
|
"UICatalog --driver v2": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--driver v2 -dl Trace"
|
|
},
|
|
"UICatalog --driver v2win": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--driver v2win -dl Trace"
|
|
},
|
|
"UICatalog --driver v2net": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--driver v2net -dl Trace"
|
|
},
|
|
"WSL: UICatalog": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "dotnet UICatalog.dll",
|
|
"distributionName": ""
|
|
},
|
|
"WSL: UICatalog --driver NetDriver": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "dotnet UICatalog.dll --driver NetDriver",
|
|
"distributionName": ""
|
|
},
|
|
"WSL: UICatalog --driver v2": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "dotnet UICatalog.dll --driver v2",
|
|
"distributionName": ""
|
|
},
|
|
"WSL: UICatalog --driver v2unix": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "dotnet UICatalog.dll --driver v2unix",
|
|
"distributionName": ""
|
|
},
|
|
"WSL: UICatalog --driver v2net": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "dotnet UICatalog.dll --driver v2net",
|
|
"distributionName": ""
|
|
},
|
|
"WSL-Gnome: UICatalog": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "bash -c 'while [ ! -e \"$XDG_RUNTIME_DIR/bus\" ]; do sleep 0.1; done; gnome-terminal --wait -- bash -l -c \"dotnet UICatalog.dll; exec bash\"'",
|
|
"distributionName": ""
|
|
},
|
|
"WSL-Gnome: UICatalog --driver NetDriver": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "bash -c 'while [ ! -e \"$XDG_RUNTIME_DIR/bus\" ]; do sleep 0.1; done; gnome-terminal --wait -- bash -l -c \"dotnet UICatalog.dll --driver NetDriver; exec bash\"'",
|
|
"distributionName": ""
|
|
},
|
|
"WSL-Gnome: UICatalog --driver v2": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "bash -c 'dbus-run-session -- gnome-terminal --wait -- bash -l -c \"dotnet UICatalog.dll --driver v2; exec bash\"'",
|
|
"distributionName": ""
|
|
},
|
|
"WSL-Gnome: UICatalog --driver v2unix": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "bash -c 'dbus-run-session -- gnome-terminal --wait -- bash -l -c \"dotnet UICatalog.dll --driver v2unix; exec bash\"'",
|
|
"distributionName": ""
|
|
},
|
|
"WSL-Gnome: UICatalog --driver v2net": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "bash -c 'dbus-run-session -- gnome-terminal --wait -- bash -l -c \"dotnet UICatalog.dll --driver v2net; exec bash\"'",
|
|
"distributionName": ""
|
|
},
|
|
"Benchmark All": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--benchmark"
|
|
},
|
|
"Benchmark All --driver NetDriver": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--driver NetDriver --benchmark"
|
|
},
|
|
"Benchmark All --driver v2win": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--driver v2win --benchmark"
|
|
},
|
|
"Benchmark All --driver v2net": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--driver v2net --benchmark"
|
|
},
|
|
"WSL: Benchmark All": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "dotnet UICatalog.dll --benchmark",
|
|
"distributionName": ""
|
|
},
|
|
"WSL: Benchmark All --driver v2": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "dotnet UICatalog.dll --driver v2 --benchmark",
|
|
"distributionName": ""
|
|
},
|
|
"WSL: Benchmark All --driver v2unix": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "dotnet UICatalog.dll --driver v2unix --benchmark",
|
|
"distributionName": ""
|
|
},
|
|
"WSL: Benchmark All --driver v2net": {
|
|
"commandName": "Executable",
|
|
"executablePath": "wsl",
|
|
"commandLineArgs": "dotnet UICatalog.dll --driver v2net --benchmark",
|
|
"distributionName": ""
|
|
},
|
|
"Docker": {
|
|
"commandName": "Docker"
|
|
},
|
|
"All Views Tester": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "\"All Views Tester\" -b -t 5000"
|
|
},
|
|
"UICatalog --disable-cm": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--disable-cm\r\n"
|
|
},
|
|
"UICatalog --disable-cm --driver v2win": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "--disable-cm --driver v2win"
|
|
},
|
|
"Themes": {
|
|
"commandName": "Project",
|
|
"commandLineArgs": "Themes"
|
|
}
|
|
}
|
|
} |