Skip to content

v1.0-beta.2 | Release

Pre-release
Pre-release

Choose a tag to compare

@BungeeDEV BungeeDEV released this 15 Jan 14:01
· 42 commits to main since this release

UI File Plugin v1.0.0

First stable release of the UI File Plugin for IntelliJ IDEA.

Features

  • Syntax Highlighting for .ui files with color preview for hex values
  • Bracket Matching for {} and ()
  • Component Support: Group, Label, Button, TextInput...
  • Property Recognition: Anchor, Background, Text, Style, LayoutMode, Padding, Placeholder, TextColor

Requirements

  • IntelliJ IDEA 2025.1
  • JDK 17+ (for development)

Installation

  1. Download ui-file-plugin-1.0.0.zip
  2. In IntelliJ: File → Settings → Plugins → ⚙️ → Install Plugin from Disk...
  3. Select the downloaded file and restart IDE

Or build from source:

git clone https://github.com/BungeeDEV/hytale-ui-plugin.git
cd hytale-ui-plugin
./gradlew buildPlugin

Example

Group {
  Anchor: (Width: 400, Height: 250);
  Background: #1a1a2e;
  
  Label {
    Text: "Hello World";
    TextColor: #ffffff;
  }
}

Full Changelog: https://github.com/BungeeDEV/hytale-ui-plugin/commits/v1.0-beta.2