Skip to content

A simple fabric mod for minecraft that syncs mods based on given URL.

License

Notifications You must be signed in to change notification settings

User-green/simple-mod-sync

 
 

Repository files navigation

Simple Mod Sync

A lightweight mod for synchronizing game mods via a URL-based schema.

Features

  • Automated Mod Synchronization: Synchronize mods from a specified URL on every game start.
  • Customizable Destination: Choose where mods are downloaded on your system.
  • User-Friendly Setup: Simple configuration with minimal setup required.

Example schema file

The file retrieved from the URL must follow this structure:

{
  "sync_version": 3,
  "sync": [
    {
      "url": "https://example.com/url/to/mod.jar",
      "name": "some-mod_name",
      "version": "2.8.1",
      "type": "mod"
    }
  ]
}

Add more mods/files as needed to the content array. Additionally you can add 'modify' section to the file.

Simple Setup Guide

  1. Create the JSON File: Use the example schema to create your mod list file.

  2. Host the File: Upload the JSON file to an HTTP server. You can use services like Pastebin for this.

  3. Install the Mod: Install the Simple Mod Sync mod as usual. When the game starts for the first time, it will prompt you to enter the URL of your JSON file.

  4. Monitor Synchronization: Once the URL is set, the mod synchronization status will be visible in the top-left corner of the title screen.

  • To change the URL later, simply update the download_url setting in the config file or in the synced mods menu.

For Developers

Want to contribute? Whether it's reporting an issue or submitting a pull request, your help is highly appreciated!

License

This mod is licensed under the MIT License. See the LICENSE file for more details.

About

A simple fabric mod for minecraft that syncs mods based on given URL.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 76.1%
  • Python 20.5%
  • JavaScript 3.4%