{"id":30858805,"url":"https://github.com/fernandomema/minecraft-server-manager-gtk","last_synced_at":"2025-09-07T14:49:58.117Z","repository":{"id":308984270,"uuid":"1034799370","full_name":"fernandomema/minecraft-server-manager-gtk","owner":"fernandomema","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-27T17:36:48.000Z","size":370,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-28T02:20:22.929Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fernandomema.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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,"zenodo":null}},"created_at":"2025-08-09T02:33:01.000Z","updated_at":"2025-08-27T17:33:41.000Z","dependencies_parsed_at":"2025-08-09T04:26:36.052Z","dependency_job_id":null,"html_url":"https://github.com/fernandomema/minecraft-server-manager-gtk","commit_stats":null,"previous_names":["fernandomema/minecraft-server-manager-gtk"],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/fernandomema/minecraft-server-manager-gtk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fernandomema%2Fminecraft-server-manager-gtk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fernandomema%2Fminecraft-server-manager-gtk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fernandomema%2Fminecraft-server-manager-gtk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fernandomema%2Fminecraft-server-manager-gtk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fernandomema","download_url":"https://codeload.github.com/fernandomema/minecraft-server-manager-gtk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fernandomema%2Fminecraft-server-manager-gtk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274051712,"owners_count":25214026,"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","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2025-09-07T14:49:56.651Z","updated_at":"2025-09-07T14:49:58.103Z","avatar_url":"https://github.com/fernandomema.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minecraft Server Manager GTK\n\nA GTK-based graphical application for managing Minecraft servers with plugin and mod support.\n\n![License](https://img.shields.io/badge/license-MIT-blue.svg)\n![Python](https://img.shields.io/badge/python-3.6+-blue.svg)\n![GTK](https://img.shields.io/badge/GTK-3.0-green.svg)\n\n## Features\n\n- 🎮 **Server Management**: Create, start, stop, and configure Minecraft servers\n- 🔌 **Plugin \u0026 Mod Management**: Browse, download, and manage plugins from Modrinth, Spigot, and CurseForge\n- 🎨 **Colorized Console**: Real-time server output with syntax highlighting\n- ⚙️ **Configuration Editor**: Visual editor for YAML/YML server configuration files\n- 📥 **Automatic Downloads**: Download server JARs and plugins with ease\n- ☕ **Java Version Picker**: Choose installed Java versions and open the download page if needed\n- 🔍 **Smart Search**: Search and filter plugins vs mods with type detection\n- 🖼️ **Visual Icons**: Display plugin/mod icons from multiple sources\n- 📊 **Metadata Tracking**: Track installation methods and sources\n\n## Screenshots\n\n**Server Management**\n![Server Management](screenshots/server.png)\n\n**Plugin Management**\n![Plugin Management](screenshots/plugins.png)\n\n**Configuration Editor**\n![Configuration Editor](screenshots/configs.png)\n\n## Installation\n\n### From Flathub (Recommended)\n```bash\nflatpak install flathub io.github.fernandomema.MinecraftServerManager\n```\n\n### From Source\n```bash\ngit clone https://github.com/fernandomema/minecraft-server-manager-gtk.git\ncd minecraft-server-manager-gtk\npython3 main.py\n```\n\n### AppImage\nBuild a portable AppImage (self-extracting executable):\n\n```bash\n# Build the AppImage\n./build-appimage.sh\n```\n\nThe script creates a self-extracting portable executable that:\n1. Contains all application files\n2. Checks for required system dependencies\n3. Runs without installation on most Linux distributions\n\n**System Requirements for AppImage:**\n- Python 3\n- PyGObject (python3-gi)\n- GTK 3\n- PyYAML (python3-yaml)\n\nThe resulting `minecraft-server-manager-gtk-x86_64.AppImage` can be distributed and run directly.\n\n## Dependencies\n\n- Python 3.6+\n- PyGObject (GTK 3.0)\n- PyYAML\n- Java 8+ (for running Minecraft servers)\n\n## Project Structure\n\nThe project follows MVC (Model-View-Controller) architecture:\n\n```\nminecraft-server-manager-gtk/\n├── main.py                     # Application entry point\n├── models/                     # Data models\n│   ├── server.py              # Server model\n│   └── plugin.py              # Plugin/mod model\n├── views/                      # User interface\n│   ├── main_window.py         # Main window\n│   ├── server_management_page.py  # Server management tab\n│   ├── plugin_management_page.py  # Plugin management tab\n│   ├── console_manager.py     # Server console\n│   └── ...\n├── controllers/                # Business logic\n│   ├── server_controller.py   # Server operations\n│   ├── plugin_controller.py   # Plugin/mod operations\n│   └── download_controller.py # Download management\n└── utils/                      # Utilities\n    ├── constants.py           # Application constants\n    └── file_utils.py          # File operations\n```\n\n## Usage\n\n### Server Management\n1. Click \"Add Server\" to create a new server\n2. Choose server type (Paper, Spigot, etc.)\n3. Configure server settings\n4. Start/stop servers from the interface\n\n### Plugin Management\n1. Switch to the \"Plugin Management\" tab\n2. Search for plugins/mods using the search bar\n3. Filter by type (Plugin or Mod)\n4. Click download to install directly to your server\n\n### Console\n- View real-time server output with colorized text\n- Auto-scrolling console for latest messages\n- Dark theme for better readability\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Support\n\nIf you encounter any issues or have suggestions, please [open an issue](https://github.com/fernandomema/minecraft-server-manager-gtk/issues) on GitHub.\n\n## Translations\n\nTo add a new translation:\n\n1. Extract strings with `xgettext`:\n   ```bash\n   xgettext --language=Python --keyword=_ --output=locale/messages.pot $(find . -name \"*.py\")\n   ```\n2. Create a `.po` file for your locale (replace `es` with the desired code):\n   ```bash\n   msginit --locale=es --input=locale/messages.pot --output-file=locale/es/LC_MESSAGES/minecraft-server-manager-gtk.po\n   ```\n3. Compile the translation to a `.mo` file:\n   ```bash\n   msgfmt locale/es/LC_MESSAGES/minecraft-server-manager-gtk.po --output-file=locale/es/LC_MESSAGES/minecraft-server-manager-gtk.mo\n   ```\n4. Run the application. It will use available translations automatically if the locale is set.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffernandomema%2Fminecraft-server-manager-gtk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffernandomema%2Fminecraft-server-manager-gtk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffernandomema%2Fminecraft-server-manager-gtk/lists"}