Skip to content

Releases: KetiveeAI/Reox

REOX Compiler v1.1.1

25 Apr 10:28

Choose a tag to compare

Release v1.1.1: Added string interpolation, binary literals, and else-if chains

v1.1.0

20 Feb 15:48

Choose a tag to compare

Full Changelog: v1.0.0...v1.1.0

Reox v1.0.0 — Package Manager & Stable Release

20 Feb 15:32

Choose a tag to compare

Reox v1.0.0

First stable release of the Reox language compiler.

What's New

Package Manager CLI

  • reoxc pkg init — create a reox.pkg manifest
  • reoxc pkg add <name> [version] — add a dependency
  • reoxc pkg remove <name> — remove a dependency
  • reoxc pkg list — list installed packages
  • reoxc pkg info — show project metadata

Standard Library

  • core — math, memory, print, string utilities
  • io — file I/O, network, serial
  • ui — declarative widgets, layout containers, theme colors
  • ai — ai_complete(), ai_explain(), ai_fix(), ai_ui(), ai_review()

Compiler

  • 101 tests passing
  • 1 pre-existing warning (no new regressions)
  • Static binary, zero runtime dependencies

Downloads

  • Linux x64: reoxc-v1.0.0-linux-x64.tar.gz
  • macOS and Windows builds coming in v1.1.0

Install

tar xzf reoxc-v1.0.0-linux-x64.tar.gz
sudo mv reoxc /usr/local/bin/

Changelog since v0.5.1-beta

  • Added full package manager CLI (reoxc pkg)
  • Wired AI stdlib helpers into interpreter
  • Added 12 new pkg tests (101 total)

Reox 0.5.1-beta: UI Framework

28 Jan 22:39

Choose a tag to compare

What's New

UI Framework

  • Declarative widgets: button(), text(), input(), slider(), checkbox()
  • Layout containers: vstack(), hstack(), window()
  • Theme colors: color_primary(), color_success(), color_danger(), etc.
  • Animation easing: ease_in(), ease_out(), ease_in_out(), lerp()

Standard Library

  • core.rs: len(), type_of(), math functions
  • io.rs: file operations, console I/O
  • ui.rs: ViewModifier, ContainerBuilder
  • ai.rs: ai_complete(), ai_explain(), ai_fix()

Codegen

  • UI widget calls compile to reox FFI (reox_button_create, etc.)
  • Theme colors emit inline C code

Downloads

  • Linux x64: reoxc-0.5.1-beta-linux-x64.tar.gz

REOX v0.5.0-beta - Beta Stabilization

19 Jan 01:48

Choose a tag to compare

Pre-release

Beta Stabilization Release

Changes

  • Expanded test coverage: smoke.rs now includes 10 comprehensive tests for lexer, parser, and interpreter
  • Fixed view modifier stubs: 10+ view modifiers (font, color, size, opacity, etc.) now properly store values
  • Timer system: Implemented with proper storage and unique IDs
  • Desktop integration: Replaced dummy app pattern with proper static desktop app

Test Results

  • 74 tests passing
  • Runtime library (libreox_runtime.a) builds successfully