[Lldb-commits] [lldb] [lldb-dap] Adding an icon to the lldb-dap package. (PR #137695)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 28 12:33:20 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: John Harrison (ashgti)
<details>
<summary>Changes</summary>
This shows up in the extension UI and in the VSCode extension marketplace.
I used the llvm/llvm-www/blob/main/img/LLVMWyvernSmall.png for the image.
Here is what this looks like locally:
<img width="1020" alt="Screenshot 2025-04-28 at 12 30 33 PM" src="https://github.com/user-attachments/assets/cd615161-06db-4a37-8f8a-df65ca620a67" />
---
Full diff: https://github.com/llvm/llvm-project/pull/137695.diff
3 Files Affected:
- (modified) lldb/tools/lldb-dap/.vscodeignore (+2-1)
- (added) lldb/tools/lldb-dap/llvm-logo.png ()
- (modified) lldb/tools/lldb-dap/package.json (+1)
``````````diff
diff --git a/lldb/tools/lldb-dap/.vscodeignore b/lldb/tools/lldb-dap/.vscodeignore
index 0491ba879fc3f..511bbf3d08399 100644
--- a/lldb/tools/lldb-dap/.vscodeignore
+++ b/lldb/tools/lldb-dap/.vscodeignore
@@ -5,5 +5,6 @@
!LICENSE.TXT
!package.json
!README.md
+!llvm-logo.png
!out/**
-!syntaxes/**
+!syntaxes/**
\ No newline at end of file
diff --git a/lldb/tools/lldb-dap/llvm-logo.png b/lldb/tools/lldb-dap/llvm-logo.png
new file mode 100644
index 0000000000000..039e8d67931c6
Binary files /dev/null and b/lldb/tools/lldb-dap/llvm-logo.png differ
diff --git a/lldb/tools/lldb-dap/package.json b/lldb/tools/lldb-dap/package.json
index 1ef42b4a0d95c..a0230421814e9 100644
--- a/lldb/tools/lldb-dap/package.json
+++ b/lldb/tools/lldb-dap/package.json
@@ -14,6 +14,7 @@
"bugs": {
"url": "https://github.com/llvm/llvm-project/issues"
},
+ "icon": "llvm-logo.png",
"keywords": [
"C",
"C++",
``````````
</details>
https://github.com/llvm/llvm-project/pull/137695
More information about the lldb-commits
mailing list