Skip to content

Commit 69b397c

Browse files
committed
1.0.9
1 parent b22ecd2 commit 69b397c

5 files changed

Lines changed: 11 additions & 4 deletions

File tree

Extension/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.0.9
2+
* Added an option: env
3+
14
## 1.0.8
25
* Added an option: sourceBasePath
36

Extension/install.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
copy /y *.dll c:\users\Seungjae\.vscode\extensions\devCAT.lua-debug-1.0.1
2-
copy /y *.exe c:\users\Seungjae\.vscode\extensions\devCAT.lua-debug-1.0.1
1+
copy /y *.dll c:\users\rica\.vscode\extensions\devCAT.lua-debug-1.0.8
2+
copy /y *.exe c:\users\rica\.vscode\extensions\devCAT.lua-debug-1.0.8

Extension/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lua-debug",
33
"displayName": "Lua Debugger",
4-
"version": "1.0.8",
4+
"version": "1.0.9",
55
"publisher": "devCAT",
66
"icon": "images/icon.png",
77
"description": "Visual Studio Code debugger extension for Lua 5.1",
@@ -45,7 +45,8 @@
4545
"arguments": "main.lua",
4646
"listenPublicly": false,
4747
"listenPort": 56789,
48-
"encoding": "UTF-8"
48+
"encoding": "UTF-8",
49+
"env": {}
4950
},
5051
{
5152
"name": "launch-gideros",

debuggee/.vscode/launch.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"listenPublicly": false,
1212
"listenPort": 56789,
1313
"encoding": "UTF-8"
14+
"env": { "asdf": "qwer" }
1415
},
1516
{
1617
"name": "launch-gideros",

debuggee/main.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ print('debuggee.start(): ', tostring(startResult), breakerType)
1313

1414
local json = require 'dkjson'
1515

16+
print(os.getenv('asdf'))
17+
1618
local c = coroutine.create(function()
1719
local function r(i)
1820
if i > 0 then

0 commit comments

Comments
 (0)