Skylot
6d052d39ad
build: check repo name and build type to skip deploy on PR and forks
2019-03-20 13:59:19 +03:00
Ahmed Ashour
2b242b9109
style: remove unused imports (PR #475 )
2019-03-20 13:28:58 +03:00
skylot
1c8741332e
GUI: disable package if "excluded" ( #477 )
2019-03-20 13:25:17 +03:00
Ahmed Ashour
a3ff03c8f3
GUI: disable package if "excluded"
2019-03-20 09:37:57 +01:00
Skylot
3019ee5655
build: check secret variable to skip deploy on pull requests
2019-03-19 21:22:28 +03:00
Skylot
03ae3bcefa
fix: process field init code in dependency collector ( #467 )
2019-03-19 16:45:40 +03:00
Skylot
52deb48aac
fix: move instruction out of try/catch ( #468 )
2019-03-19 16:45:40 +03:00
Jan Peter Stotz
214866fcb9
chore: About box and logos
2019-03-16 18:12:39 +01:00
Skylot
7654661b77
fix: inline desugared lambda classes ( #467 )
2019-03-15 22:19:43 +03:00
Skylot
51a9c741a5
chore: update dependencies and gradle
2019-03-15 19:37:19 +03:00
Skylot
bce86d3211
build: check env variables for deploy stages (i.e skip deploy in forks)
2019-03-14 18:22:19 +03:00
tRuNKator
a4a8b05ef0
fix: replace dot character with underscore in style resource name (PR #466 )
2019-03-14 15:46:37 +03:00
Skylot
6116a75022
fix: rename R fields using resource names ( #465 )
2019-03-12 20:27:25 +03:00
Skylot
7243ab5cb6
fix: don't replace resources names with field names ( #465 )
2019-03-12 19:35:05 +03:00
Jan S
43538902a3
fix: restore support for AAR files (issue #95 ) (PR #464 )
2019-03-09 17:20:34 +03:00
Skylot
28d348b364
fix: additional checks for synthetic methods remove, rename and inline ( #452 )
2019-02-22 17:50:31 +03:00
Jan S
91691fbd6a
fix: allow APK files without code (no contained dex files) (PR #455 )
2019-02-22 17:45:21 +03:00
Skylot
9856b6d3c5
fix: remove invalid chars from class names ( #453 )
2019-02-21 19:14:55 +03:00
Skylot
e1ca290424
fix: avoid ConcurrentModificationException in EliminatePhiNodes pass
2019-02-21 15:29:38 +03:00
Skylot
0fa19fb0ac
fix: remove unreachable blocks ( #451 )
2019-02-21 15:24:18 +03:00
Skylot
f8acc31b0b
fix(gui): remove output directories from persistent settings ( #447 )
2019-02-20 10:40:39 +03:00
Skylot
bcadc28207
fix(gui): use system font as default instead bundled Hack ( #442 , #445 )
2019-02-17 19:01:03 +03:00
Skylot
7e95758a6e
fix(gui): add scroll to preferences dialog
2019-02-17 18:48:27 +03:00
Skylot
d44dd0de84
fix(gui): show current font in preferences
2019-02-17 18:46:05 +03:00
Skylot
db1b027da2
fix: improve bridge methods renaming ( #397 )
2019-02-16 13:07:13 +03:00
Skylot
7f4e641860
fix: skip duplicated block in complex if ( #441 )
2019-02-15 16:27:43 +03:00
Skylot
710245d597
fix: replace recursive analysis algorithms with iterations to avoid StackOverflow on big methods ( #441 )
2019-02-14 21:17:31 +03:00
skylot
8c7140d6b8
fix: change not allowed access modifiers for methods ( #387 ) (PR #439 )
...
Fix visibility access modifies for methods (see discussions in #370 and #387 ):
* all virtual methods become public
* direct methods become private (instead constructors and static methods for now)
* such modifications perform by default and can be disabled by the option in preferences (`--respect-bytecode-access-modifiers` in jadx-cli)
* if changed to method added comment (`Access modifiers changed, original: private`)
v0.9.0
2019-02-11 14:56:03 +03:00
Jan S
bf42b97580
build: compile for Java 8; enable G1GC on Java 8 (PR #436 )
2019-01-23 17:34:03 +03:00
skylot
f8c0449d4e
feat(gui): add icons to jadx-gui ( #420 ) (PR #428 )
2019-01-23 11:00:24 +03:00
Skylot
b28eaa1a94
fix(gui): add synchronization to SimpleIndex class ( #435 )
2019-01-23 10:06:13 +03:00
Skylot
be509c7104
fix(gui): use editor font in search node column
2019-01-23 10:05:00 +03:00
Skylot
2931617202
fix(gui): use editor font in files tree and fix bundled font loading
2019-01-23 09:39:57 +03:00
Skylot
82d0d622a8
fix: refactor, improve performance and fix some issues in resource processing
...
fix(gui): instead gradle export was executed normal export
fix(gui): content of some resource files was not shown
perf: direct resource files saving without full length buffer in memory
perf(gui): line numbers will be disabled on big files due to performance issue
feat(gui): click on HeapUsageBar will run GC and update memory info
feat(gui): add more file types for syntax highlights
refactor: ResContainer class changed for support more types of data (added link to resource file)
2019-01-22 18:51:09 +03:00
Skylot
bcaca781b1
style(gui): reformat code and fix some warnings
2019-01-21 13:47:05 +03:00
Jan S
ffedaea505
fix(gui): limit the spare memory to max. 512MiB ( #434 )
2019-01-21 09:52:00 +03:00
Skylot
aec986447e
fix: support multi-exception catch blocks ( #421 )
2019-01-19 16:28:25 +03:00
Skylot
b0e3cfedf4
fix: update apksig library to latest version ( #431 )
2019-01-19 09:49:20 +03:00
Skylot
da41efa3db
fix: force rename by checks from RenameVisitor ( #432 )
2019-01-18 16:50:11 +03:00
Jan S
9e0cd2e14e
fix(gui): add synchronizations to search index creation ( #433 )
...
* fix: unsynchronized search index creation (code usage) results in ArrayIndexOutOfBoundsException and stuck at 99%
* fix: use computeIfAbsent instead of synchronized block
2019-01-18 16:47:44 +03:00
Jan S
d1af751226
feat(gui): APK signature check v1/v2 using the apksig library from Google ( #431 )
...
* feat: APK signature check v1/v2 using the apksig library from Google
* fix: proposed changes implemented
2019-01-18 12:26:22 +03:00
Skylot
618b014b3d
fix: rename method wrapped by synthetic only from same class ( #430 )
2019-01-16 22:27:50 +03:00
Jan S
7c353a6c6f
fix(gui): unsynchronized search index creation results in NullPointerException upon performing search ( #429 )
2019-01-15 13:05:45 +03:00
Jan S
72b2663949
fix: ArrayIndexOutOfBoundsException in string concatenation visitor ( #427 )
...
* fix: ArrayIndexOutOfBoundsException in string concatenation visitor
* fix: typo in comment
* fix: StringBuilder chain processing created wrong code
* test: simple JUnit test cases added for testing StringBuilder chain processing (chains that can be and that can't be simplified)
2019-01-12 21:12:28 +03:00
Skylot
727285e3df
chore: update dependencies and gradle
2019-01-12 19:07:37 +03:00
Skylot
a932c7c569
build: add java 11 to build on travis
2019-01-12 13:06:41 +03:00
Skylot
1272ae2d4d
fix(gui): don't skip indexing code lines starting with '}' ( #426 )
2019-01-10 23:46:59 +03:00
Skylot
ddaf0375dc
docs: add pyjadx link in readme ( #424 )
2019-01-07 11:28:03 +03:00
Jan S
f60bb6b121
fix: various UI improvements ( #419 )
...
* fixed wait time for background jobs
* enable multi-threaded decompiling
* added preference for excluding certain packages from decompiling and indexing
* show message dialog in case classes are not indexed because of low memory
* added heap usage bar for visualizing Java memory usage
2019-01-06 15:46:54 +03:00
Donlon
fd3498add6
fix: show method alias in "method not decompiled" messages ( #410 )
2019-01-06 14:02:37 +03:00