Skip to content

Commit

Permalink
Remove ${command.CurrentSource}. It is same to ${file}
Browse files Browse the repository at this point in the history
  • Loading branch information
satoren committed Jan 26, 2017
1 parent 8808651 commit 99d74da
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 14 deletions.
14 changes: 10 additions & 4 deletions vscode_extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,22 @@

## [Unreleased]

## [0.1.2] - 2017-01-24

## [0.1.4] - 2017-01-26
### Changed
- Remove ${command.CurrentSource}. It is same to ${file}
- Support operators in hit count condition breakpoint ``<``, ``<=``, ``==``, ``>``, ``>=``, ``%``

## [0.1.3] - 2017-01-24
### Fixed
- hit conditional breakpoint not working
- Hit conditional breakpoint not working
### Changed
- Change pointer output format. e.g. ``function(0x41b1f0)`` to ``function: 0x41b1f0``

## [0.1.1] - 2017-01-24
### Fixed
- can not set break last line
- no output stdout at debug console
- Can not set break last line
- No output stdout at debug console

## [0.1.0] - 2017-01-24
- Initial release
14 changes: 7 additions & 7 deletions vscode_extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This extension is debug Lua programs with Visual Studio Code.

![preview](lrdb.gif)
![Lua Debug](https://raw.githubusercontent.com/satoren/LRDB/master/vscode_extension/images/lrdb.gif)

## Features

Expand All @@ -31,26 +31,26 @@ launch.json example:
"type": "lua",
"request": "launch",
"name": "Lua Launch",
"program": "${command.CurrentSource}",
"program": "${file}",
"cwd": "${workspaceRoot}",
"stopOnEntry": true
}
]
}
```
${command.CurrentSource} is opened at VSCode file.



## Known Issues


## Release Notes

### 0.1.2
Bug fixed
### 0.1.4
- Remove ${command.CurrentSource}. It is same to ${file}
- Support operators in hit count condition breakpoint ``<``, ``<=``, ``==``, ``>``, ``>=``, ``%``


### 0.1.1
### 0.1.3
Bug fixed

### 0.1.0
Expand Down
File renamed without changes
File renamed without changes
4 changes: 2 additions & 2 deletions vscode_extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "lrdb",
"displayName": "LRDB",
"description": "Lua Remote DeBugger",
"version": "0.1.2",
"version": "0.1.4",
"publisher": "satoren",
"engines": {
"vscode": "^1.8.0"
Expand Down Expand Up @@ -139,6 +139,6 @@
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"icon": "icon.png",
"icon": "images/icon.png",
"license": "LICENSE_1_0.txt"
}
2 changes: 1 addition & 1 deletion vscode_extension/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const initialConfigurations = {
type: 'lua',
request: 'launch',
name: 'Lua Launch',
program: '${command.CurrentSource}',
program: '${file}',
cwd: "${workspaceRoot}",
stopOnEntry: true
},
Expand Down

0 comments on commit 99d74da

Please sign in to comment.