Skip to content

Commit fb499bd

Browse files
authored
Merge pull request #24 from tintinweb/better-error-reporting
Better Error Reporting; prep v0.1.0
2 parents 7fd19ff + c6dce55 commit fb499bd

102 files changed

Lines changed: 1274 additions & 639 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Logs
2+
*.class
3+
logs
4+
*.log
5+
npm-debug.log*
6+
yarn-debug.log*
7+
yarn-error.log*
8+
*.DS_STORE
9+
# Runtime data
10+
pids
11+
*.pid
12+
*.seed
13+
*.pid.lock
14+
15+
# Directory for instrumented libs generated by jscoverage/JSCover
16+
lib-cov
17+
18+
# Coverage directory used by tools like istanbul
19+
coverage
20+
21+
# nyc test coverage
22+
.nyc_output
23+
24+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
25+
.grunt
26+
27+
# Bower dependency directory (https://bower.io/)
28+
bower_components
29+
30+
# node-waf configuration
31+
.lock-wscript
32+
33+
# Compiled binary addons (https://nodejs.org/api/addons.html)
34+
build/Release
35+
36+
# Dependency directories
37+
node_modules/
38+
jspm_packages/
39+
40+
# TypeScript v1 declaration files
41+
typings/
42+
43+
# Optional npm cache directory
44+
.npm
45+
46+
# Optional eslint cache
47+
.eslintcache
48+
49+
# Optional REPL history
50+
.node_repl_history
51+
52+
# Output of 'npm pack'
53+
*.tgz
54+
55+
# Yarn Integrity file
56+
.yarn-integrity
57+
58+
# dotenv environment variables file
59+
.env
60+
61+
# next.js build output
62+
.next

.vscodeignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.apk
2+
*.jar
3+
*.zip
4+
**/*.class
5+
.unotes

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## 0.1.0
4+
- new: better error reporting. if the extension fails to decompile a target it will now show an output with the stderr of the external tool in the vscode/output view.
5+
6+
<img width="705" alt="image" src="https://user-images.githubusercontent.com/2865694/179998678-4eaca055-1be8-4c19-b850-1c1caf3c3fb3.png">
7+
8+
- fix: ghidra decompile script exception handling. the script now continues if ghidra is unable to decompile certain functions.
9+
- updated: jadx to [1.4.2](https://github.com/skylot/jadx/releases/tag/v1.4.2)
10+
- updated: jd-cli to [1.2.1](https://github.com/intoolswetrust/jd-cli/releases/tag/jd-cli-1.2.1)
11+
- updated: Readme reference to brew cask command to the newer --cask syntax #17 - thanks @demns
12+
13+
314
## 0.0.8
415
- fix: ghidra compatibility issues #15
516

bundled_tools/jadx-1.1.0/README.md

Lines changed: 0 additions & 125 deletions
This file was deleted.

bundled_tools/jadx-1.1.0/bin/jadx

Lines changed: 0 additions & 183 deletions
This file was deleted.

0 commit comments

Comments
 (0)