This repository has been archived by the owner on Jul 22, 2023. It is now read-only.
v0.2.0: Polish
This is a breaking change that iterates on Remodel's API a little bit and improves some ergonomics a bit.
Changes since 0.1.0
- Improved CLI documentation. Try
remodel --help
! - Added support for extra arguments. They're passed into the script as
...
. - Added support for reading from stdin. Use
-
as the input file!echo "print('Hi')" | remodel -
- Breaking: split
remodel.load
intoremodel.readPlaceFile
andremodel.readModelFile
.readPlaceFile
can only readrbxlx
files, and returns aDataModel
instance.readModelFile
can only readrbxmx
files, and returns a list of instances.
- Breaking:: split
remodel.save
intoremodel.writePlaceFile
andremodel.writeModelFile
.writePlaceFile
can only writerbxlx
files.writeModelFile
can only writerbxmx
files.- This split helps Remodel avoid funny tricks to detect what encoding scheme to use.