From a0a0d38fe5aee909a12d64bdc1c076b81fb6397c Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Thu, 3 Sep 2026 07:49:10 +0200 Subject: [PATCH] docs(readme): remove development/debugging section and license note This change removes outdated development and debugging guidance from the README and streamlines the licensing note. It also deletes the embedded debugger license file and relies on the main LICENSE file for terms. - Remove outdated debugging guidance from README - Delete embedded debugger license file and rely on LICENSE --- README.md | 27 +-------------------------- debugger/NX_TCL_DEBUGGER_LICENSE.txt | 21 --------------------- 2 files changed, 1 insertion(+), 47 deletions(-) delete mode 100644 debugger/NX_TCL_DEBUGGER_LICENSE.txt diff --git a/README.md b/README.md index aa79514..2af36a5 100644 --- a/README.md +++ b/README.md @@ -98,35 +98,10 @@ Simply open any supported file type and enjoy: - Signature help while entering procedure arguments - Remote NX Tcl debugging with breakpoints and full stepping -## Development and debugging - -Install the root and client dependencies before the first debug session: - -```powershell -npm install -npm install --prefix client -npm run test:debugger -``` - -Use one of the checked-in VS Code launch configurations: - -- **Run Extension** debugs the TypeScript extension host. -- **Debug Extension and Python** debugs both the TypeScript extension and the - Python language server. This is the recommended configuration for LSP work. -- **Python Attach** attaches manually to an already running Python process. - -The launch configuration creates a fresh non-minified bundle with embedded -source maps and opens `test/test.tcl` so the extension activates immediately. -For combined debugging, the Python adapter listens on `127.0.0.1:5678`; the -language server waits for that adapter before initialization. The NX -Postprocessor Support output channel reports `Python debug mode: enabled` and -shows `_debug_server.py` in the server command when the debug path is active. - ## Contributing This extension is actively maintained. For issues or feature requests, please visit our [repository](https://git.cbsk-tech.de/Christoph/nx_post_support.git). ## License -AGPL-3.0 License - see LICENSE file for details. The embedded NX Tcl Remote Debugger adapter -retains its MIT notice in `debugger/NX_TCL_DEBUGGER_LICENSE.txt`. +AGPL-3.0 License - see LICENSE file for details. diff --git a/debugger/NX_TCL_DEBUGGER_LICENSE.txt b/debugger/NX_TCL_DEBUGGER_LICENSE.txt deleted file mode 100644 index 8365b5b..0000000 --- a/debugger/NX_TCL_DEBUGGER_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2026 NX Tcl Remote Debugger contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE.