Releases: Nicetink/HalcyonScript
HalcyonScript 0.26.26!
NEW: DVD/CD API - Complete optical drive control: read discs, manage trays, copy files
- NEW: System Information API - Get OS, CPU, memory, disk, and screen info
- NEW: Clipboard API - Copy/paste text to/from system clipboard
- NEW: Drag & Drop API - Enable drag and drop functionality (preview)
- NEW: Automatic Layout System HalGUI - No more manual coordinate calculations!
Full Changelog: 0.20.26...0.26.26
0.20.26
New features in HalcyonScript version 0.20.26: paint api now allows you to create programs with drawing functions, an automatic layout system in HalGUI, and fixes for building via build_all.bat
Full Changelog: 0.18.26...0.20.26
HalcyonScript 0.18.26
Changes in version 0.18.26:
A new HalForms GUI framework has been created. Warnings during the build of HalcyonScript and HalGUI have been fixed. The new version implements programming without GUI frameworks (pure command-line mode). Minor bugs have been fixed, and HalGUI now has its own calendar widget.
Here is an example of a GUI-less application:
print "Hello World"
var name = input("your name: ")
var numbers = range(1, 11)
print "numbers:", numbers
