diff options
| author | 2019-01-30 21:05:32 +0200 | |
|---|---|---|
| committer | 2019-01-30 21:05:32 +0200 | |
| commit | ba7a354efae7d49833c887cf147ac940c975a1fa (patch) | |
| tree | 02e14fda81dd5984e24f2df392c57c6e829fc875 /build.gradle | |
| parent | Rewrite the Jenkinsfile to use the new declarative pipeline syntax, lets hope... (diff) | |
| download | enigma-ba7a354efae7d49833c887cf147ac940c975a1fa.tar.gz enigma-ba7a354efae7d49833c887cf147ac940c975a1fa.tar.xz enigma-ba7a354efae7d49833c887cf147ac940c975a1fa.zip | |
Remap sources (#106)
* Source remapping beginnings
* Fix navigation to remapped classes
* Translate identifier info reference
* Remap local variables with default names in source
* Caching translator
* Fix lack of highlighting for first opened class
* Fix unicode variable names
* Unicode checker shouldn't be checking just alphanumeric
* Fix package tree being built from obf names
* Don't index `this` as method call for method::reference
* Apply proposed names
* Fix source export issues
* Replace unicode var names at bytecode level uniquely
* Drop imports from editor source
* Class selector fixes
* Delta keep track of base mappings to enable lookup of old names
* Optimize source remapping by remapping source with a StringBuffer instead of copying
* Bump version
Diffstat (limited to 'build.gradle')
| -rw-r--r-- | build.gradle | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index 0b776559..aefebe1a 100644 --- a/build.gradle +++ b/build.gradle | |||
| @@ -12,8 +12,6 @@ buildscript { | |||
| 12 | } | 12 | } |
| 13 | } | 13 | } |
| 14 | 14 | ||
| 15 | import org.apache.tools.ant.filters.ReplaceTokens | ||
| 16 | |||
| 17 | apply plugin: 'java' | 15 | apply plugin: 'java' |
| 18 | apply plugin: 'eclipse' | 16 | apply plugin: 'eclipse' |
| 19 | apply plugin: 'idea' | 17 | apply plugin: 'idea' |
| @@ -21,7 +19,7 @@ apply plugin: 'com.github.johnrengelman.shadow' | |||
| 21 | apply plugin: 'maven' | 19 | apply plugin: 'maven' |
| 22 | 20 | ||
| 23 | group = 'cuchaz' | 21 | group = 'cuchaz' |
| 24 | version = '0.13.0' | 22 | version = '0.13.1' |
| 25 | 23 | ||
| 26 | def filteredSourceDir = file("${buildDir}/filtered") | 24 | def filteredSourceDir = file("${buildDir}/filtered") |
| 27 | 25 | ||