summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix threading issues in ClassHandleProvider that are likely to come up if a ↵Gravatar Joe2025-09-132-17/+55
| | | | plugin frequently invalidates class handles
* Add a way for plugins to invalidate data (mappings, javadocs, decompile), ↵Gravatar Joe2025-09-136-9/+147
| | | | and add a way for them to listen for this.
* Add GuiService for plugins to make additions to the GUI. Also add enough ↵Gravatar Joe2025-09-1326-79/+305
| | | | context to do something useful.
* Add I18n serviceGravatar Joe2025-09-139-26/+69
|
* Fix guava again (#562)Gravatar Joseph Burton2025-09-121-2/+5
|
* Fix crash from multimap conversion (#558)Gravatar Joseph Burton2025-09-031-1/+1
|
* Always specify locale in toUpperCase and toLowerCase (#556)Gravatar Juuz2025-09-039-11/+20
| | | | Not all of these changes are strictly needed to avoid the Turkish i issue specifically, but it's good to be consistent.
* Update Gradle and fix buildscripts (#557)Gravatar Juuz2025-08-219-52/+48
| | | | | | | | | | | | | | | | | | | | * Fix Gradle configuration cache compat with generateResources task The task now also declares its inputs properly, making it support up-to-date checks. * Update Gradle and Shadow Shadow 9 is incompatible with including the flatlaf natives, so I updated to the last 8.x version which also works with Gradle 9. The Shadow plugin automatically publishes the shadow jar, so I removed the overlapping publications which overrode each other. * Fix more Gradle 10 deprecations * Enable configuration cache by default * Fix missing task dependency of :enigma-cli:test
* Get rid of Guava (#555)Gravatar J. Fronny2025-08-21102-360/+399
| | | | | | | | | | | | | * Get rid of Guava * Fix NPE * Apply suggestions from review * Checkstyle * Add braces to precondition checks * Forbid space
* Services rework (#554)Gravatar Joseph Burton2025-08-2011-292/+358
| | | | | | | * Refactor services * Split out built-in name proposal into a separate plugin so that it can be disabled separately * Fix checkstyle
* Support multiple input jars (#553)Gravatar Juuz2025-08-208-33/+68
| | | | | | | | | * Support multiple input jars This is needed for FabricMC/fabric-loom#1354. * Remove unnecessary null check in GuiController.reloadAll * Remove outdated TODO
* Optimize JAR indexing (#552)Gravatar Joseph Burton2025-08-0622-507/+517
| | | | | | | | | | | | | * Multithread JAR indexing * Replace `Analyzer` with custom `AnalyzerAdapter` implementation * Compute frames on class files from Java 1.5 or older * Delete InterpreterPair * Don't analyze non-enum initializers in EnumFieldNameFindingVisitor * Classes may not have frames in java 6
* Bump versionGravatar modmuss502025-01-131-1/+1
|
* Update ASM and VFGravatar modmuss502025-01-131-5/+5
|
* Update to Mapping-IO 0.7 (#550)Gravatar Julian Burner2025-01-133-2/+5
|
* Update to Mapping-IO 0.6 (#547)Gravatar NebelNidas2024-08-274-46/+56
| | | | | | | * Update to Mapping-IO 0.6 * Make `legacy` suffix translatable * Only respect `use_mappingio=false` when Enigma has an alternative reader/writer
* Bump versionGravatar modmuss2024-08-191-1/+1
|
* Fix Enigma dir writer behaving incorrectly after the first write (#546)Gravatar NebelNidas2024-08-191-6/+6
| | | | | | | * Fix Enigma dir writer behaving incorrectly after first write when using MIO * Fix checkstyle * Fix misleading field name
* Bump versionGravatar modmuss2024-04-101-1/+1
|
* Add temporary bodge to MIO Enigma dir writer to support deltas (#543)Gravatar NebelNidas2024-04-102-10/+55
|
* Invert Mapping-IO Proguard mappings to mirror legacy behavior (#542)Gravatar NebelNidas2024-04-081-1/+22
| | | | | * Invert Proguard data read from / written by Mapping-IO to mirror legacy behavior * Fix code style
* fix NoSuchFileException when exporting sources (not jar) (#494)Gravatar Taewon Kim2024-04-071-0/+2
| | | | | | | | | | | | | | | | * fix writer doesnt create file * Update enigma/src/main/java/cuchaz/enigma/EnigmaProject.java Co-authored-by: Alejandro González <7822554+AlexTMjugador@users.noreply.github.com> * doesnt need to create file manually Co-authored-by: modmuss <modmuss50@gmail.com> --------- Co-authored-by: Alejandro González <7822554+AlexTMjugador@users.noreply.github.com> Co-authored-by: modmuss <modmuss50@gmail.com>
* Add file extensions to open and save dialogs (#532)Gravatar Juuz2024-04-066-35/+197
| | | | | | | | | | | | | | | | | | | | | | | | | * Add file extensions to Save As dialog * Include leading dots in file extensions for simplicity * Add file extensions to open mappings dialogs * Remove unused tinyMappingsFileChooser * Use the same file chooser for all mapping IO * Fix NPE by using Enigma directories as the default mapping format Fixes #533. * Fix code style * Allow .mappings extension for single Enigma files * gradlew.bat --------- Co-authored-by: NebelNidas <nebelnidas@gmail.com>
* Add Vineflower decompiler (#541)Gravatar NebelNidas2024-04-0621-20/+630
| | | | | | | | | * Add Vineflower integration * Fix some confusing names * Rename method to reflect visitor pattern naming schemes * Remove dead null check
* Bump versionGravatar modmuss2024-03-281-1/+1
|
* Clear undo history when updating editor text. (#540)Gravatar modmuss2024-03-281-0/+6
| | | We don't care about the undo/redo history of the syntax pane, any change history would be stored separately
* Fix possible NPE in MappingIoConverterGravatar modmuss502024-02-152-2/+5
|
* Bump versionGravatar modmuss502024-02-151-1/+1
|
* Update CFRGravatar modmuss502024-02-151-1/+1
|
* Fix editor scaling (#536)Gravatar Julian Burner2023-12-245-26/+49
|
* Merge pull request #463 from NebelNidas/mapping-ioGravatar modmuss2023-11-2819-122/+556
|\ | | | | Initial Mapping-IO support
| * Merge branch 'upstream' into mapping-ioGravatar NebelNidas2023-11-2810-44/+62
| |\ | |/ |/|
* | Update deps (#535)Gravatar modmuss2023-11-1911-136/+154
| |
| * Fix checkstyleGravatar NebelNidas2023-11-161-1/+1
| |
| * Mark MIO-related methods as internalGravatar NebelNidas2023-11-161-0/+4
| |
| * Keep API compatibilityGravatar NebelNidas2023-11-161-5/+16
| |
| * Don't only write diffs when MIO writer was last usedGravatar NebelNidas2023-11-162-1/+7
| |
| * Fix importing mappings without field source descriptorsGravatar NebelNidas2023-11-168-17/+60
| |
| * Allow XSRG and CSRG to be importedGravatar NebelNidas2023-11-161-1/+3
| |
| * Update Mapping-IO to full release of 0.5Gravatar NebelNidas2023-11-151-1/+1
| |
| * Use System Property for Mapping-IOGravatar NebelNidas2023-10-098-112/+168
| |
| * Use `VisitableMappingTree` where possibleGravatar NebelNidas2023-10-092-22/+30
| |
| * Update to latest Mapping-IO releaseGravatar NebelNidas2023-10-091-1/+1
| |
| * Make Mapping-IO the defaultGravatar NebelNidas2023-10-092-19/+19
| |
| * Add support for method vars and arg/var commentsGravatar NebelNidas2023-10-091-20/+56
| |
| * Update to latest Mapping IO commitGravatar NebelNidas2023-10-094-11/+16
| |
| * Add progress listener to Mapping-IO conversion; deduplicate lang filesGravatar NebelNidas2023-10-0911-56/+62
| |
| * Add Mapping-IO import support; small cleanupGravatar NebelNidas2023-10-094-93/+147
| |
| * Add initial Mapping-IO export supportGravatar NebelNidas2023-10-096-101/+304
|/
* Bump versionGravatar modmuss2023-09-251-1/+1
|