From 88d692523db28ab1e08563ca0a76c468536e58ef Mon Sep 17 00:00:00 2001 From: Vadim Chugunov Date: Fri, 10 Mar 2023 22:37:58 -0800 Subject: [PATCH] Docs --- CHANGELOG.md | 13 +++++++++---- README.md | 6 +++--- package.json | 6 +++--- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6ae6c66..97fd1bee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,18 @@ # Release Notes -# 1.8.2 + +# 1.9.0 + +## New +- Updated the bundled LLDB to v16.0.0 +- It is now possible to combine number format specifiers (`foo,x`) and "reinterpret as array" speficiers (`foo,[10]`) + together: `foo,x[10]` (Feature request #851). +- Added support for native VSCode [disassmbly view](https://devblogs.microsoft.com/cppblog/visual-studio-code-c-july-2021-update-disassembly-view-macro-expansion-and-windows-arm64-debugging/#disassembly-view) (thanks @puremourning!). ## Fixed - #813: Mixed GAS/Intel syntax in disassembly view. - #842: Syntax error in conditional breakpoint. - -## New -- Added support for VSCode native Disassembly View (thanks @puremourning!). +- #840: Make the whole command string readable in the "Select a process" dropdown window. # 1.8.1 diff --git a/README.md b/README.md index 3b22ae21..735bc031 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,9 @@ and Zig. # Supported Platforms ## Host -- [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. +- Linux with glibc 2.18+ for x86_64, aarch64 or armhf. +- MacOS X 10.10+ for x86_64 and 11.0+ for arm64. +- Windows 10 and 11 for x86_64. [See Windows notes in wiki!](https://github.com/vadimcn/codelldb/wiki/Windows) ## Target CodeLLDB supports AArch64, ARM, AVR, MSP430, RISCV, X86 architectures and may be used to debug on embedded platforms diff --git a/package.json b/package.json index 44afb201..ec4083fc 100644 --- a/package.json +++ b/package.json @@ -70,12 +70,12 @@ "commands": [ { "category": "LLDB", - "title": "Display Format ...", + "title": "Display Format...", "command": "lldb.displayFormat" }, { "category": "LLDB", - "title": "Show Disassembly ...", + "title": "Show Disassembly...", "command": "lldb.showDisassembly" }, { @@ -969,7 +969,7 @@ } }, { - "label": "CodeLLDB: Attach by PID", + "label": "CodeLLDB: Attach to PID", "description": "Attach to a running process with the specified process id.", "body": { "type": "lldb",