diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index b5d03742..957161e4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -2,7 +2,7 @@ name: Bug report about: Before filing a new report, please review the Troubleshooting page in CodeLLDB Wiki. --- - + OS: VSCode version: diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 50c9c4d7..280d0b1e 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,11 +1,11 @@ blank_issues_enabled: false contact_links: - name: Question - url: https://github.com/vadimcn/vscode-lldb/discussions + url: https://github.com/vadimcn/codelldb/discussions about: Please ask and answer questions here. - name: Troubleshooting - url: https://github.com/vadimcn/vscode-lldb/wiki/Troubleshooting + url: https://github.com/vadimcn/codelldb/wiki/Troubleshooting about: Common problems and how to troubleshoot them. - name: Bug reporting guidelines - url: https://github.com/vadimcn/vscode-lldb/wiki/Reporting-Bugs + url: https://github.com/vadimcn/codelldb/wiki/Reporting-Bugs about: How to create actionable bug reports. diff --git a/CHANGELOG.md b/CHANGELOG.md index 518d16d6..f6ae6c66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -484,7 +484,7 @@ mode. The address may still be seen when a display format override is specified # 0.5.0 - The minimum supported VSCode version is now 1.11. - Rust visualizers are now activated automatically (no need for `sourceLanguages: ["rust"]`). -- Added [data visualization](https://github.com/vadimcn/vscode-lldb/wiki/Data-visualization) tutorial. +- Added [data visualization](https://github.com/vadimcn/codelldb/wiki/Data-visualization) tutorial. - Bug fixes. # 0.4.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 90718376..2f3dabca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ set(VERSION "1.9.0") # Base version include(cmake/CopyFiles.cmake) set(CMAKE_CXX_STANDARD 11) -set(CMAKE_INSTALL_PREFIX $ENV{HOME}/.vscode/extensions/vscode-lldb CACHE PATH "Install location") +set(CMAKE_INSTALL_PREFIX $ENV{HOME}/.vscode/extensions/codelldb CACHE PATH "Install location") set(VERSION_SUFFIX "-" CACHE INTERNAL "Version suffix") if (VERSION_SUFFIX STREQUAL "-") @@ -97,7 +97,7 @@ add_dependencies(codelldb_dylib lldb formatters) # Extension package content -set(PLATFORM_PACKAGE_URL "https://github.com/vadimcn/vscode-lldb/releases/download/v\${version}/\${platformPackage}" CACHE STRING "") +set(PLATFORM_PACKAGE_URL "https://github.com/vadimcn/codelldb/releases/download/v\${version}/\${platformPackage}" CACHE STRING "") configure_file(package.json ${CMAKE_CURRENT_BINARY_DIR}/package.json @ONLY) configure_file(webpack.config.js ${CMAKE_CURRENT_BINARY_DIR}/webpack.config.js @ONLY) file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/package-lock.json DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) @@ -215,8 +215,8 @@ endforeach() file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/vscodeignore-full ${Content}) set(VsceOptions - --baseContentUrl https://github.com/vadimcn/vscode-lldb/blob/v${VERSION} - --baseImagesUrl https://github.com/vadimcn/vscode-lldb/raw/v${VERSION} + --baseContentUrl https://github.com/vadimcn/codelldb/blob/v${VERSION} + --baseImagesUrl https://github.com/vadimcn/codelldb/raw/v${VERSION} ) add_custom_target(vsix_bootstrap diff --git a/README.md b/README.md index 8edb9627..3b22ae21 100644 --- a/README.md +++ b/README.md @@ -16,15 +16,15 @@ For full details please see [User's Manual](MANUAL.md).
The primary focus of this project are the C++ and Rust languages, for which CodeLLDB includes built-in visualizers for vectors, strings, maps, and other standard library types.
That said, it is usable with most other compiled languages whose compiler generates compatible debugging information, -such as Ada, Fortran, Kotlin Native, Nim, Objective-C, Pascal, [Swift](https://github.com/vadimcn/vscode-lldb/wiki/Swift) +such as Ada, Fortran, Kotlin Native, Nim, Objective-C, Pascal, [Swift](https://github.com/vadimcn/codelldb/wiki/Swift) and Zig. # Supported Platforms ## Host -- [Linux](https://github.com/vadimcn/vscode-lldb/wiki/Linux) with glibc 2.18+ for x86_64, aarch64 or armhf, -- [MacOS](https://github.com/vadimcn/vscode-lldb/wiki/MacOS) X 10.10+ for x86_64 and 11.0+ for arm64, -- [Windows](https://github.com/vadimcn/vscode-lldb/wiki/Windows) 10 for x86_64. +- [Linux](https://github.com/vadimcn/codelldb/wiki/Linux) with glibc 2.18+ for x86_64, aarch64 or armhf, +- [MacOS](https://github.com/vadimcn/codelldb/wiki/MacOS) X 10.10+ for x86_64 and 11.0+ for arm64, +- [Windows](https://github.com/vadimcn/codelldb/wiki/Windows) 10 for x86_64. ## Target CodeLLDB supports AArch64, ARM, AVR, MSP430, RISCV, X86 architectures and may be used to debug on embedded platforms @@ -34,12 +34,12 @@ via [remote debugging](MANUAL.md#remote-debugging). - [CodeLLDB User's Manual](MANUAL.md) - how to use this extension. - [Debugging in VS Code](https://code.visualstudio.com/docs/editor/debugging) - if you are new to VSCode debugging. - [LLDB Tutorial](https://lldb.llvm.org/use/tutorial.html) - all of LLDB's CLI commands and scripting features may be used in CodeLLDB. -- [Wiki pages](https://github.com/vadimcn/vscode-lldb/wiki) - [troubleshooting](https://github.com/vadimcn/vscode-lldb/wiki/Troubleshooting) and other tips and tricks. -- [Discussions](https://github.com/vadimcn/vscode-lldb/discussions) - for questions and discussions. +- [Wiki pages](https://github.com/vadimcn/codelldb/wiki) - [troubleshooting](https://github.com/vadimcn/codelldb/wiki/Troubleshooting) and other tips and tricks. +- [Discussions](https://github.com/vadimcn/codelldb/discussions) - for questions and discussions. # Screenshots -C++ debugging with data visualization ([Howto](https://github.com/vadimcn/vscode-lldb/wiki/Data-visualization)):
+C++ debugging with data visualization ([Howto](https://github.com/vadimcn/codelldb/wiki/Data-visualization)):
![source](images/plotting.png)

diff --git a/package.json b/package.json index 79e99dea..44afb201 100644 --- a/package.json +++ b/package.json @@ -22,12 +22,12 @@ "private": true, "repository": { "type": "git", - "url": "https://github.com/vadimcn/vscode-lldb.git" + "url": "https://github.com/vadimcn/codelldb.git" }, "bugs": { - "url": "https://github.com/vadimcn/vscode-lldb/issues" + "url": "https://github.com/vadimcn/codelldb/issues" }, - "qna": "https://github.com/vadimcn/vscode-lldb/discussions", + "qna": "https://github.com/vadimcn/codelldb/discussions", "engines": { "vscode": "^1.60.0" },