{"id":18678640,"url":"https://github.com/chylex/minecraft-window-title","last_synced_at":"2025-04-12T02:41:35.539Z","repository":{"id":80099274,"uuid":"237303532","full_name":"chylex/Minecraft-Window-Title","owner":"chylex","description":"Minecraft mod that lets you customize window title and icon.","archived":false,"fork":false,"pushed_at":"2025-03-07T02:47:18.000Z","size":598,"stargazers_count":9,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-25T22:21:22.811Z","etag":null,"topics":["fabric","forge","java","minecraft","mod"],"latest_commit_sha":null,"homepage":"https://www.curseforge.com/minecraft/mc-mods/custom-window-title","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chylex.png","metadata":{"files":{"readme":".github/README/screenshot.png","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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":{"ko_fi":"chylex"}},"created_at":"2020-01-30T20:53:37.000Z","updated_at":"2025-03-07T02:47:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"d07146a3-a630-4a99-96d8-0dc2fcf88508","html_url":"https://github.com/chylex/Minecraft-Window-Title","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chylex%2FMinecraft-Window-Title","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chylex%2FMinecraft-Window-Title/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chylex%2FMinecraft-Window-Title/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chylex%2FMinecraft-Window-Title/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chylex","download_url":"https://codeload.github.com/chylex/Minecraft-Window-Title/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248507469,"owners_count":21115607,"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","forge","java","minecraft","mod"],"created_at":"2024-11-07T09:39:35.181Z","updated_at":"2025-04-12T02:41:35.200Z","avatar_url":"https://github.com/chylex.png","language":"Java","funding_links":["https://ko-fi.com/chylex"],"categories":[],"sub_categories":[],"readme":"# For Users\n\n## Installation\n\nThe mod supports [NeoForge](https://neoforged.net/) and [Fabric](https://fabricmc.net/) (*) mod loaders. Follow either mod loader's installation guide, then download the mod file for your Minecraft version from [CurseForge](https://www.curseforge.com/minecraft/mc-mods/custom-window-title/files) or [Modrinth](https://modrinth.com/mod/custom-window-title/versions), and install it into the `.minecraft/mods` folder.\n\n(*) Fabric API is **not** required.\n\n## Configuration\n\nRun the game once to create the configuration file. By default, the window title will be set to **Minecraft _\u003cversion\u003e_**. Unlike in vanilla 1.15.2 onwards, the title will not change when you enter a world/server.\n\nTo change the title or icon, navigate to the `.minecraft/config` folder, and open `customwindowtitle-client.toml` in a text editor. You will see the following entries:\n\n```toml\ntitle = 'Minecraft {mcversion}'  \nicon = ''  \n```\n\nOnly edit text inside quotes or apostrophes.\n\n### Changing the Title\n\nYou can use the following special tokens in the _title_ configuration entry:\n\n* `{mcversion}` - current Minecraft version\n* `{modversion:\u003cmod_id\u003e}` - version of installed mod with the identifier `\u003cmod_id\u003e`\n* `{username}` - current username\n\nIf any of the tokens aren't working, search the game log for **CustomWindowTitle** and you should see the reason, otherwise please file an issue on the [issue tracker](https://github.com/chylex/Minecraft-Window-Title/issues) with as many details as possible.\n\n### Changing the Icon\n\n#### Minecraft 1.21+\n\n**This feature is only available in Custom Window Title 1.4.0 and newer.**\n\nCreate a square PNG image whose dimensions are a power of two, such as 32x32 or 48x48. Put the PNG file into the `.minecraft/config` folder, either directly or into a subfolder.\n\nThe icon **must be saved with transparency** even if it doesn't use it, otherwise the icon may be corrupted or not appear at all. In Krita, for example, you must check _Store alpha channel (transparency)_ when saving.\n\nThe _icon_ configuration entry points to the PNG file relative to `.minecraft/config`.\n\nFor example, if you placed the icon into `.minecraft/config/customwindowtitle/icon.png`, then the configuration entry should look like this:\n\n```toml\nicon = 'customwindowtitle/icon.png'\n```\n\n#### Minecraft 1.20\n\nThis feature is not available in Minecraft 1.20.\n\n#### Minecraft 1.19 and older\n\nInstead of one `icon` configuration entry, there are two configuration entries `icon16` and `icon32` for icons with dimensions 16x16 and 32x32.\n\n## Screenshots\n\nThese screenshots were taken using the following example configuration:\n\n```toml\ntitle = \"Minecraft {mcversion} - Custom Window Title {modversion:customwindowtitle}\"\n```\n\n![](https://github.com/chylex/Minecraft-Window-Title/blob/master/.github/README/screenshot.png)\n\n# For Developers\n\nThe mod sources are organized into 3 projects:\n- `src/` contains common source files and mixins\n- `Fabric/src/` contains source files specific for Fabric\n- `NeoForge/src/` contains source files specific for NeoForge\n\nThe `assemble` Gradle task creates a single `.jar` file for both mod loaders in the `build/dist` folder.\n\nWhen building against a Minecraft version that is only supported by one mod loader, open `gradle.properties` and comment or remove either `neoForgeVersion` or `fabricVersion` to disable them.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchylex%2Fminecraft-window-title","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchylex%2Fminecraft-window-title","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchylex%2Fminecraft-window-title/lists"}