Skip to content

Alpha v0.0.1-alpha.14

Pre-release
Pre-release
Compare
Choose a tag to compare
@dscalzi dscalzi released this 30 Jun 19:38
· 275 commits to master since this release
651c2d6

Alpha Update 14

This update adds support for optional mods and built-in support liteloader. A UI for toggling optional mods will be included in a future update. For now, optional mods can be toggled off in the config file directly.

The mod configurations are stored in config.json under the modConfigurations property. Example configuration:

{
    "id": "WesterosCraft-1.11.2",
    "mods": {
        "com.mumfrey:liteloader": {
            "value": false,
            "mods": {
                "com.mumfrey:macrokeybindmod": false
            }
        },
        "mcp.mobius:waila": true,
        "com.github.hexomod:worldeditcuife2": true,
        "techbrew:journeymap": true,
        "octarine-noise:betterfoliage": true,
        "org.blockartistry:dynsurround": true
    }
}

To enable a mod, change its value to true. To disable it, change the value to false.
Once you've modified the values, save the config file and type ConfigManager.load() in the console.

New Features

  • 145a2fe Added support for optional mods.
  • aa0e1a2 8f172a4 Added support for liteloader, litemods, and optional submods.
  • 85331a7 Added keyboard controls to the news UI. On the landing view, the up arrow will open the news UI. On the news UI, the left and right arrows can be used to navigate between articles.
    Thanks to aaronholtomcook@26659f8 for the inspiration.
  • c0714ec Implemented the avatar overlay edit button. Clicking it will now take you directly to the account settings tab. The styles for this have also been modified a bit.

Fixed

  • a68abaf Added styling for links on the changelog UI.
  • 52d9027 Added styling for code blocks on the changelog UI.
  • 9769458 The color of the frame bar has been adjusted.
  • 9769458 The background of the settings UI is set to transparent when the overlay is active.
  • 4196856 Fixed range slider rendering when the value exceeds the limits. The slider will now snap to the lowest/highest value. Also reduced the margin of the memory label.

Misc

  • dab195a Fixed issue with travis build after upgrading dependencies. In windows and linux, yarn is used in place of npm. On macOS, upgraded xcode from v9.2 to v9.4.
  • 932443f Removed deprecated launch code.

Dependency Upgrades

New Dependencies

  • 52d9027 github-syntax-dark@0.5.0 Added to properly style code blocks from GitHub's atom feed on the changelog UI.