Skip to content

Architectury Loom 1.3

Compare
Choose a tag to compare
@Juuxel Juuxel released this 24 Sep 19:16
· 6 commits to dev/1.3 since this release

Added

  • A way to configure ModSettings per run config in Forge projects. This feature is useful for Forge mods with separate dev-only source sets (e.g. data generation). (#144 + #145)
    Code example:
    loom {
      runs {
        data {
          // <data run config boilerplate>
          mods { // if non-empty, replaces the "global" mod settings container
            tinypotato {
              sourceSet sourceSets.main
              sourceSet sourceSets.data
            }
          }
        }
      }
    }

Fixed

  • Order of jars in fabric.mod.json depending on HashSet iteration order (#155)
  • JIJ not working for Forge libraries without a mods.toml (#152)