Downloads and updates resource packs
Go to file
JFronny 4f6e31f584
All checks were successful
ci/woodpecker/push/jfmod Pipeline was successful
Configure CF publish
2023-03-18 11:36:10 +01:00
src Port to 1.19.4 and libjf-config. Also remove the unused API as mods can still use mixin 2023-03-14 20:58:21 +01:00
.gitignore Add files 2020-12-29 16:14:53 +01:00
.woodpecker.yml Update to new infrastructure 2022-12-02 17:53:44 +01:00
build.gradle.kts Port to 1.19.4 and libjf-config. Also remove the unused API as mods can still use mixin 2023-03-14 20:58:21 +01:00
gradle.properties Configure CF publish 2023-03-18 11:36:10 +01:00
LICENSE Add files 2020-12-29 16:14:53 +01:00
README.md 1.19.4-pre1 port + modrinth fetcher 2023-02-26 14:00:07 +01:00
settings.gradle.kts Add devutil 2022-12-29 14:34:16 +01:00

Resclone automatically downloads and updates resource and data packs specified in its config. Packs are updated on startup whenever possible, meaning that very large packs will slow down your startup.

Example config:

{
  // The packs to be loaded by resclone
  "packs": [
    {
      "fetcher": "file",
      "source": "https://github.com/FaithfulTeam/Faithful/raw/releases/1.16.zip",
      "name": "Faithful",
      "forceDownload": false,
      "forceEnable": false
    },
    {
      "fetcher": "github",
      "source": "seasnail8169/SnailPack",
      "name": "SnailPack",
      "forceDownload": false,
      "forceEnable": false
    },
    {
      "fetcher": "github",
      "source": "spiralhalo/LumiLights/release",
      "name": "LumiLights",
      "forceDownload": true,
      "forceEnable": false
    },
    {
      "fetcher": "github",
      "source": "spiralhalo/LumiPBRExt/tag/v0.7",
      "name": "LumiPBRExt",
      "forceDownload": false,
      "forceEnable": false
    },
    {
      "fetcher": "github",
      "source": "FaithfulTeam/Faithful/branch/1.16",
      "name": "Faithful",
      "forceDownload": false,
      "forceEnable": false
    },
    {
      "fetcher": "file",
      "source": "https://media.forgecdn.net/files/3031/178/BattyCoordinates_005.zip",
      "name": "Battys Coordinates",
      "forceDownload": false,
      "forceEnable": false
    },
    {
      "fetcher": "curseforge",
      "source": "325017",
      "name": "Vanilla Additions",
      "forceDownload": false,
      "forceEnable": true
    },
    {
      "fetcher": "modrinth",
      "source": "new-in-town",
      "name": "New in Town"
    }
  ],
  // Whether to prune unused packs from the cache
  "pruneUnused": true
}