Skip to content
Compare
Choose a tag to compare
@lucko lucko released this 27 Apr 16:06
· 16 commits to master since this release
814754c

This is an "unofficial" release. The upstream project doesn't seem to be getting much attention from SpongePowered at the moment, so I decided to merge the open PRs into a fork and release that, so I (and others if they want) can start to benefit from the improvements / new features.

Available on maven central with:

<dependency>
    <groupId>me.lucko.configurate</groupId>
    <artifactId>configurate-???</artifactId>
    <version>3.4</version>
</dependency>

or

repositories {
    mavenCentral()
}

dependencies {
    compile 'me.lucko.configurate:configurate-???:3.4'
}

Changes

  • Implemented a loader for the XML format (upstream PR SpongePowered#90)
  • Implemented a loader for the TOML format (upstream PR SpongePowered#69)
  • A considerable number of improvements to the projects JavaDocs (upstream PR SpongePowered#92)
  • Changed the TypeSerializerCollection to select from available type serializers in the order they were added (upstream PR SpongePowered#88)
  • Introduced more consistent formatting in the build scripts (upstream PR SpongePowered#92)
  • Fix object mapping for interface/abstract field types (upstream PR SpongePowered#91 by @dags-)