{"id":13889173,"url":"https://github.com/TheBossMagnus/modpack-changelogger","last_synced_at":"2025-07-17T01:31:04.775Z","repository":{"id":213987897,"uuid":"693244518","full_name":"TheBossMagnus/ModpackChangelogger","owner":"TheBossMagnus","description":"A powerful and customizable Python tool to generate a changelog between two Minecraft modpacks in modrinth.mrpack or curseforge.zip format.","archived":false,"fork":false,"pushed_at":"2024-04-13T13:45:28.000Z","size":267,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-04-14T06:46:00.814Z","etag":null,"topics":["change-detection","changelog","minecraft-modpack","modpack","modrinth","modrinth-modpack","mrpack"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TheBossMagnus.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}},"created_at":"2023-09-18T16:28:04.000Z","updated_at":"2024-05-31T21:21:04.188Z","dependencies_parsed_at":"2024-04-16T19:54:46.201Z","dependency_job_id":"35ea869f-ca6f-478d-af24-fddf494b8555","html_url":"https://github.com/TheBossMagnus/ModpackChangelogger","commit_stats":{"total_commits":135,"total_committers":3,"mean_commits":45.0,"dds":"0.051851851851851816","last_synced_commit":"58716a7b30ab92b1c89fd95e31b87b4fcb07de5c"},"previous_names":["thebossmagnus/modpackchangelogger"],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheBossMagnus%2FModpackChangelogger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheBossMagnus%2FModpackChangelogger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheBossMagnus%2FModpackChangelogger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheBossMagnus%2FModpackChangelogger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheBossMagnus","download_url":"https://codeload.github.com/TheBossMagnus/ModpackChangelogger/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226189121,"owners_count":17587644,"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":["change-detection","changelog","minecraft-modpack","modpack","modrinth","modrinth-modpack","mrpack"],"created_at":"2024-08-06T14:00:43.988Z","updated_at":"2025-07-17T01:31:04.770Z","avatar_url":"https://github.com/TheBossMagnus.png","language":"Python","funding_links":[],"categories":["Miscellaneous"],"sub_categories":["In-game"],"readme":"# Modpack Changelogger\n\n**Modpack Changelogger** is a Python tool for comparing two Minecraft modpacks (in `.mrpack` or `.zip` format) and generating a customizable, human-readable changelog in Markdown.\n\n[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/TheBossMagnus/modpack-changelogger)\n\n\n## Features\n\n- **Accurate Modpack Comparison:**  \n  Instantly see which mods, resource packs, or files were added, removed, or changed between two modpacks.\n- **Minecraft \u0026 Modloader Awareness:**  \n  Detects changes in Minecraft version, modloaders, configs file and scirpts.\n- **Customizable Markdown Output:**  \n  Generates a detailed changelog in Markdown, with multiple [output styles](https://github.com/TheBossMagnus/modpack-changelogger/wiki/Configuration#format-section).\n- **Configurable:**  \n  Supports [custom configuration files](https://github.com/TheBossMagnus/modpack-changelogger/wiki/Configuration) for advanced control over output and comparison.\n- **No Python Required for Windows Users:**  \n  Download the pre-built `.exe`—no Python installation needed!\n- **Use it as a Module:**  \n  Easily integrate into your own Python scripts or applications.\n\n\n---\n\n## Installation\n\n**With pip (recommended):**\n```bash\npip install modpack-changelogger\n```\n\n**Or download the Windows executable:** \nIt does not require having python installed and it's fully portable!\nGrab the latest `.exe` from the [releases page](https://github.com/TheBossMagnus/modpack-changelogger/releases/latest).\n\n\u003e [!NOTE] \n\u003e Be aware of petential Windows Defender false positives\n\n[See the wiki for more installation options \u0026 details.](https://github.com/TheBossMagnus/modpack-changelogger/wiki/Install-and-run)\n\n---\n\n## Basic Usage\n\n| Option         | Description                                      |\n|----------------|--------------------------------------------------|\n| `-o`, `--old`  | Path to the original/old modpack file            |\n| `-n`, `--new`  | Path to the updated/new modpack file             |\n| `-c`, `--config` | (Optional) Path to a configuration file        |\n| `-f`, `--file` | Output file for the changelog (`console` for stdout) |\n\n**Example:**  \nCompare `old_pack` to `new_pack` using `config.json`, and write the changelog to `output.md`:\n```bash\nmodpack-changelogger -o old_pack.mrpack -n new_pack.mrpack -f output.md\n```\n\n**Print changelog to the console:**\n```bash\nmodpack-changelogger -o old_pack.mrpack -n new_pack.mrpack -f console\n```\n\n[See the wiki for all command-line options and advanced usage.](https://github.com/TheBossMagnus/modpack-changelogger/wiki/Commands)\n\n## Configuration\nYou can customize the output format and behavior using a configuration file.\nTo generate a default configuration file, run:\n\n```bash\nmodpack-changelogger newconfig #generates a default config file\nmodpack-changelogger -o old_pack.mrpack -n new_pack.mrpack -c config.json # use said config file\n```\n\n[See the wiki for more details on configuration options.](https://github.com/TheBossMagnus/modpack-changelogger/wiki/Configuration)\n\n\n## Run as a Module\nYou can also use Modpack Changelogger as a Python module in your own scripts:\n\n```python\nfrom modpack_changelogger import generate_changelog\ngenerate_changelog(\"old_pack.mrpack\",\"new_pack.mrpack\",\"config.json\",\"output.md\")\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTheBossMagnus%2Fmodpack-changelogger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTheBossMagnus%2Fmodpack-changelogger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTheBossMagnus%2Fmodpack-changelogger/lists"}