├── .github └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── client ├── java └── red │ └── jackf │ └── morechathistory │ └── mixins │ └── ChatComponentMixin.java └── resources ├── assets └── morechathistory │ └── icon.png ├── fabric.mod.json └── morechathistory.mixins.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/client/java/red/jackf/morechathistory/mixins/ChatComponentMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/src/client/java/red/jackf/morechathistory/mixins/ChatComponentMixin.java -------------------------------------------------------------------------------- /src/client/resources/assets/morechathistory/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/src/client/resources/assets/morechathistory/icon.png -------------------------------------------------------------------------------- /src/client/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/src/client/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/client/resources/morechathistory.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackFred2/MoreChatHistory/HEAD/src/client/resources/morechathistory.mixins.json --------------------------------------------------------------------------------