Skip to content

Commit

Permalink
Rename project repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimcn committed Mar 11, 2023
1 parent c4e5a5b commit edd37e5
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Bug report
about: Before filing a new report, please review the Troubleshooting page in CodeLLDB Wiki.
---
<!-- ⚠️ Before filing a new report, please review https://github.com/vadimcn/vscode-lldb/wiki/Troubleshooting ⚠️ -->
<!-- ⚠️ Before filing a new report, please review https://github.com/vadimcn/codelldb/wiki/Troubleshooting ⚠️ -->

OS: <!-- including version -->
VSCode version: <!-- from Help/About -->
Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 "-")
Expand Down Expand Up @@ -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})
Expand Down Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ For full details please see [User's Manual](MANUAL.md).<br>
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.<br>
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
Expand All @@ -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)):<br>
C++ debugging with data visualization ([Howto](https://github.com/vadimcn/codelldb/wiki/Data-visualization)):<br>
![source](images/plotting.png)
<br>
<br>
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down

0 comments on commit edd37e5

Please sign in to comment.