File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 0.9.0] - 2020-06-22
4
+
5
+ ### Added
6
+
7
+ - Support for Lua 5.4
8
+ - Lookup in __ index metadata table in expression evaluation
9
+ - Location display for Lua function values and Jump to Source context menu option
10
+ - Alternative name is generated for unnamed scripts
11
+
12
+ ### Changed
13
+
14
+ - Fixes for Lua libraries built with optimizations
15
+ - Fix for Lua sources without a valid name
16
+ - Compatibility Mode improvements
17
+ - Lua table address is now displayed in Watch
18
+ - Stability fixes
19
+ - Additional source file search locations
20
+ - '.lua' is added to temporary file names if the Lua source name doesn't contain it already
21
+ - Fixed long debugger startup when application is linked with /DEBUG: FULL and symbol file is large
22
+
3
23
## [ 0.8.8] - 2020-06-10
4
24
5
25
### Added
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<PackageManifest Version =" 2.0.0" xmlns =" http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns : d =" http://schemas.microsoft.com/developer/vsx-schema-design/2011" >
3
3
<Metadata >
4
- <Identity Id =" LuaDkmDebugger.e3e2ef04-27c9-46a6-ad45-79bd29067eb6" Version =" 0.8.8 " Language =" en-US" Publisher =" WheretIB" />
4
+ <Identity Id =" LuaDkmDebugger.e3e2ef04-27c9-46a6-ad45-79bd29067eb6" Version =" 0.9.0 " Language =" en-US" Publisher =" WheretIB" />
5
5
<DisplayName >C++ debugger extensions for Lua</DisplayName >
6
6
<Description xml : space =" preserve" >This extension adds integrated debugging for Lua scripts executing inside C++ applications with Lua library.</Description >
7
7
<License >license.txt</License >
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ Supported Lua versions:
25
25
* Quick Info tooltip display with variable value evaluation on mouse over in the code window
26
26
* External C function/closure pointer display with 'Go To Source' provided by Visual Studio
27
27
* Assertion failure, 'error' call and runtime errors are displayed as unhandled exceptions ('Break on Error' option)
28
+ * Location display and Jump to Source context menu option for Lua function values
28
29
* When Lua library is used together with sol library, C++ object in user data is available
29
30
30
31
![ Example debug session] ( https://github.com/WheretIB/LuaDkmDebugger/blob/master/resource/front_image_2.png?raw=true )
You can’t perform that action at this time.
0 commit comments