├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── build-and-release-on-tag-created.yml ├── .poggit.yml ├── LICENSE ├── README.md ├── assets ├── icon.png └── preview.gif ├── plugin.yml └── src └── kim └── present └── chatthin └── Main.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/presentkim-pm/ChatThin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/presentkim-pm/ChatThin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: PresentKim 2 | -------------------------------------------------------------------------------- /.github/workflows/build-and-release-on-tag-created.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/presentkim-pm/ChatThin/HEAD/.github/workflows/build-and-release-on-tag-created.yml -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/presentkim-pm/ChatThin/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/presentkim-pm/ChatThin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/presentkim-pm/ChatThin/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/presentkim-pm/ChatThin/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/presentkim-pm/ChatThin/HEAD/assets/preview.gif -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/presentkim-pm/ChatThin/HEAD/plugin.yml -------------------------------------------------------------------------------- /src/kim/present/chatthin/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/presentkim-pm/ChatThin/HEAD/src/kim/present/chatthin/Main.php --------------------------------------------------------------------------------