{"id":16379335,"url":"https://github.com/booky10/stackdeobfuscator","last_synced_at":"2025-03-16T15:34:08.888Z","repository":{"id":149255597,"uuid":"616603713","full_name":"booky10/StackDeobfuscator","owner":"booky10","description":"Minecraft fabric mod for making errors readable","archived":false,"fork":false,"pushed_at":"2024-10-21T17:11:10.000Z","size":1151,"stargazers_count":27,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-22T09:13:07.136Z","etag":null,"topics":["fabric","minecraft","mod"],"latest_commit_sha":null,"homepage":"https://stackdeobf.booky.dev","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/booky10.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-20T17:59:39.000Z","updated_at":"2024-10-21T17:11:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"3df4ffeb-9047-4c0f-8c4f-65b4152ee7a6","html_url":"https://github.com/booky10/StackDeobfuscator","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/booky10%2FStackDeobfuscator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/booky10%2FStackDeobfuscator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/booky10%2FStackDeobfuscator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/booky10%2FStackDeobfuscator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/booky10","download_url":"https://codeload.github.com/booky10/StackDeobfuscator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221665745,"owners_count":16860304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fabric","minecraft","mod"],"created_at":"2024-10-11T03:48:13.924Z","updated_at":"2024-10-27T10:53:29.272Z","avatar_url":"https://github.com/booky10.png","language":"Java","readme":"# Stack Deobfuscator\n\n## Downloads\n\n- Modrinth: https://modrinth.com/mod/stackdeobf\n- Curseforge: https://curseforge.com/minecraft/mc-mods/stackdeobf\n\nThe configuration is documented on the [wiki](https://github.com/booky10/StackDeobfuscator/wiki/Configuration).\n\nA hosted web-version is available at [stackdeobf.booky.dev](https://stackdeobf.booky.dev/).\nSee [wiki](https://github.com/booky10/StackDeobfuscator/wiki/Web-Remapping#installation-self-hosting) for self-hosting\nthis page.\n\n## What does this mod do?\n\nAll errors displayed in the console and all crash reports will be remapped from unreadable production names (e.g.\n`net.minecraft.class_310`) to readable mapped names (e.g. `net.minecraft.client.MinecraftClient`).\n\nThis allows mod developers to more easily identify issues in a non-development environment, as the errors are instantly\nhuman-readable.\n\n### Comparison\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eBefore\u003c/b\u003e\u003c/summary\u003e\n\n\u003e ```\n\u003e [23:13:08] [Render thread/ERROR]: Reported exception thrown!\n\u003e net.minecraft.class_148: Manually triggered debug crash\n\u003e          at net.minecraft.class_309.method_1474(class_309.java:509) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.class_310.method_1574(class_310.java:1955) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.class_310.method_1523(class_310.java:1180) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.class_310.method_1514(class_310.java:801) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.client.main.Main.main(Main.java:237) ~[minecraft-1.19.4-client.jar:?]\n\u003e          at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:462) ~[fabric-loader-0.14.18.jar:?]\n\u003e          at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.14.18.jar:?]\n\u003e          at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.14.18.jar:?]\n\u003e          at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:88) ~[NewLaunch.jar:?]\n\u003e          at org.prismlauncher.EntryPoint.listen(EntryPoint.java:126) ~[NewLaunch.jar:?]\n\u003e          at org.prismlauncher.EntryPoint.main(EntryPoint.java:71) ~[NewLaunch.jar:?]\n\u003e Caused by: java.lang.Throwable: Manually triggered debug crash\n\u003e          at net.minecraft.class_309.method_1474(class_309.java:506) ~[client-intermediary.jar:?]\n\u003e          ... 10 more\n\u003e ```\n\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eAfter (yarn/quilt mappings)\u003c/b\u003e\u003c/summary\u003e\n\n\u003e ```\n\u003e [23:11:25] [Render thread/ERROR]: Reported exception thrown!\n\u003e net.minecraft.util.crash.CrashException: Manually triggered debug crash\n\u003e          at net.minecraft.client.Keyboard.pollDebugCrash(Keyboard.java:509) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.client.MinecraftClient.tick(MinecraftClient.java:1955) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.client.MinecraftClient.render(MinecraftClient.java:1180) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.client.MinecraftClient.run(MinecraftClient.java:801) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.client.main.Main.main(Main.java:237) ~[minecraft-1.19.4-client.jar:?]\n\u003e          at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:462) ~[fabric-loader-0.14.18.jar:?]\n\u003e          at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.14.18.jar:?]\n\u003e          at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.14.18.jar:?]\n\u003e          at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:88) ~[NewLaunch.jar:?]\n\u003e          at org.prismlauncher.EntryPoint.listen(EntryPoint.java:126) ~[NewLaunch.jar:?]\n\u003e          at org.prismlauncher.EntryPoint.main(EntryPoint.java:71) ~[NewLaunch.jar:?]\n\u003e Caused by: java.lang.Throwable: Manually triggered debug crash\n\u003e          at net.minecraft.client.Keyboard.pollDebugCrash(Keyboard.java:506) ~[client-intermediary.jar:?]\n\u003e          ... 10 more\n\u003e ```\n\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eAfter (mojang mappings)\u003c/b\u003e\u003c/summary\u003e\n\n\u003e ```\n\u003e [23:04:12] [Render thread/ERROR]: Reported exception thrown!\n\u003e net.minecraft.ReportedException: Manually triggered debug crash\n\u003e          at net.minecraft.client.KeyboardHandler.tick(KeyboardHandler.java:509) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.client.Minecraft.tick(Minecraft.java:1955) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.client.Minecraft.runTick(Minecraft.java:1180) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.client.Minecraft.run(Minecraft.java:801) ~[client-intermediary.jar:?]\n\u003e          at net.minecraft.client.main.Main.main(Main.java:237) ~[minecraft-1.19.4-client.jar:?]\n\u003e          at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:462) ~[fabric-loader-0.14.18.jar:?]\n\u003e          at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.14.18.jar:?]\n\u003e          at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.14.18.jar:?]\n\u003e          at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:88) ~[NewLaunch.jar:?]\n\u003e          at org.prismlauncher.EntryPoint.listen(EntryPoint.java:126) ~[NewLaunch.jar:?]\n\u003e          at org.prismlauncher.EntryPoint.main(EntryPoint.java:71) ~[NewLaunch.jar:?]\n\u003e Caused by: java.lang.Throwable: Manually triggered debug crash\n\u003e          at net.minecraft.client.KeyboardHandler.tick(KeyboardHandler.java:506) ~[client-intermediary.jar:?]\n\u003e          ... 10 more\n\u003e ```\n\n\u003c/details\u003e\n\n## Mappings Overview\n\nMappings are downloaded and parsed asynchronously. They are downloaded only once per version.\nYarn and Quilt refresh their version every 48 hours to check for updates.\n\n| Mappings | Compatible Minecraft Versions               | Download Size (zipped¹)²               | Cached Size (gzipped)²              |\n|----------|---------------------------------------------|----------------------------------------|-------------------------------------|\n| Yarn     | 18w49a (1.14 snapshot) or higher            | `1.4 MiB`                              | `1.4 MiB`                           |\n| Quilt    | 1.18.2 or higher                            | `1.4 MiB` (+`1.1 MiB` below 1.19.2)    | `1.4 MiB` (+`1.1 MiB` below 1.19.2) |\n| Mojang   | 1.14.4 and 19w36a (1.15 snapshot) or higher | `9.0 MiB` (uncompressed) + `559.1 KiB` | `1.3 MiB` + `558.6 KiB`             |\n\n¹: Mojang mappings are not compressed\u003cbr\u003e\n²: Sizes as of 12th May 2024 (1.20.6 is latest)\n\n## Building\n\n```shell\n./gradlew build # remove \"./\" on windows\n```\n\nThe output jar can be found in `build` → `libs`.\n\n## License\n\nThis project is licensed under [**LGPL-3.0-only**](./COPYING.LESSER) unless specified otherwise.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbooky10%2Fstackdeobfuscator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbooky10%2Fstackdeobfuscator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbooky10%2Fstackdeobfuscator/lists"}