{"id":16145582,"url":"https://github.com/falsepattern/falsepatternlib","last_synced_at":"2025-03-18T18:30:46.924Z","repository":{"id":37256232,"uuid":"446465586","full_name":"FalsePattern/FalsePatternLib","owner":"FalsePattern","description":"A library used by all of my other mods","archived":false,"fork":false,"pushed_at":"2024-10-10T07:40:50.000Z","size":1888,"stargazers_count":14,"open_issues_count":0,"forks_count":9,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-11T00:16:53.353Z","etag":null,"topics":["java","library","minecraft","minecraft-forge","minecraft-forge-mod","minecraft-mod","mod"],"latest_commit_sha":null,"homepage":"https://falsepattern.com/mc","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FalsePattern.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"patreon":"falsepattern","ko_fi":"falsepattern"}},"created_at":"2022-01-10T14:54:10.000Z","updated_at":"2024-10-10T07:40:50.000Z","dependencies_parsed_at":"2023-11-26T18:24:48.121Z","dependency_job_id":"b497557a-9189-4d1d-910d-8d88dee61c4b","html_url":"https://github.com/FalsePattern/FalsePatternLib","commit_stats":null,"previous_names":[],"tags_count":80,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FalsePattern%2FFalsePatternLib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FalsePattern%2FFalsePatternLib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FalsePattern%2FFalsePatternLib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FalsePattern%2FFalsePatternLib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FalsePattern","download_url":"https://codeload.github.com/FalsePattern/FalsePatternLib/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221715378,"owners_count":16868556,"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":["java","library","minecraft","minecraft-forge","minecraft-forge-mod","minecraft-mod","mod"],"created_at":"2024-10-10T00:16:54.422Z","updated_at":"2024-10-27T18:10:40.669Z","avatar_url":"https://github.com/FalsePattern.png","language":"Java","readme":"A library for 1.7.10 with lots of useful stuff, licensed under the LGPLv3 license.\n\n| Package                                                         | Contents / Purpose                                                                                                                      |\n|-----------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------|\n| [.](src/main/java/com/falsepattern/lib)                         | StableAPI and DeprecationDetails annotations                                                                                            |\n| [asm](src/main/java/com/falsepattern/lib/asm)                   | ASM helper code                                                                                                                         |\n| [compat](src/main/java/com/falsepattern/lib/compat)             | Code backported from vanilla 1.12.2                                                                                                     |\n| [config](src/main/java/com/falsepattern/lib/config)             | 1.12.2-style annotation-based config library                                                                                            |\n| [dependencies](src/main/java/com/falsepattern/lib/dependencies) | Runtime dependency loader which uses Maven (DEPRECATED, see [The new data-driven dependency format](src/main/resources/DEPENDENCIES.md) |\n| [mapping](src/main/java/com/falsepattern/lib/mapping)           | Notch-SRG-MCP name mapping helper code                                                                                                  |\n| [mixin](src/main/java/com/falsepattern/lib/mixin)               | Mixin loader plugin boilerplate code                                                                                                    |\n| [optifine](src/main/java/com/falsepattern/lib/optifine)         | Tools for messing with OptiFine                                                                                                         |\n| [text](src/main/java/com/falsepattern/lib/text)                 | Better Chat and GUI text processing                                                                                                     |\n| [toasts](src/main/java/com/falsepattern/lib/toasts)             | The toast system from newer versions, with some extras                                                                                  |\n| [turboasm](src/main/java/com/falsepattern/lib/turboasm)         | A forge-style class transformer port of RFB's transformer API.                                                                          |\n| [util](src/main/java/com/falsepattern/lib/util)                 | Additional utilities that do not fit the above categories, see below for more information                                               |\n\nThe contents of the [util](src/main/java/com/falsepattern/lib/util) package so far:\n\n| Class                                                                        | Purpose                                                                                                                           |\n|------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------|\n| [FileUtil](src/main/java/com/falsepattern/lib/util/FileUtil.java)            | Directory and file utilities.                                                                                                     |\n| [LangUtil](src/main/java/com/falsepattern/lib/util/LangUtil.java)            | Utility for having default language values defined inside code instead of lang files                                              |\n| [MathUtil](src/main/java/com/falsepattern/lib/util/MathUtil.java)            | Miscellaneous math helper code                                                                                                    |\n| [ReflectionUtl](src/main/java/com/falsepattern/lib/util/ReflectionUtil.java) | Reflection helper code                                                                                                            |\n| [RenderUtil](src/main/java/com/falsepattern/lib/util/RenderUtil.java)        | Rendering tools. Currently, the only thing implemented is a way to grab the current partial tick time from the minecraft instance |\n| [ResourceUtil](src/main/java/com/falsepattern/lib/util/ResourceUtil.java)    | Methods for efficiently retrieving resources from SPECIFIC jar files instead of the entire classpath                              |\n\nSee the [@StableAPI](src/main/java/com/falsepattern/lib/StableAPI.java) annotation's javadoc for more information about\nAPI stability.\n\nThe update checker module and the library downloader module can be toggled with the `ENABLE_UPDATE_CHECKER` and \n`ENABLE_LIBRARY_DOWNLOADS` booleans in the `falsepatternlib.cfg` config file respectively.\n","funding_links":["https://patreon.com/falsepattern","https://ko-fi.com/falsepattern"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalsepattern%2Ffalsepatternlib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffalsepattern%2Ffalsepatternlib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalsepattern%2Ffalsepatternlib/lists"}