This repository has been archived by the owner on Mar 29, 2024. It is now read-only.
Releases: movableink/movable-cli
Releases · movableink/movable-cli
0.12.0
0.11.0
0.10.0
This release has some backwards-incompatible changes and everyone is encouraged to upgrade to it.
- Fixes some issues with the move to
/app
directory structure. With the new directory structure, we had a mismatch between the<base href>
in the MDK (/app
) and the one in Studio (/
) such that relative images that appeared to work correctly in the MDK did not work once the app was loaded into Studio. This moves the MDK's<base href>
to/
so that assets are resolved the same way in both editors.
0.9.3
- Allow viewing preview directly in
GET /app
to work better: instead of serving the rawindex.html
, when youPOST /app
withMI.options
merged in, we save then to a.compiled-index.html
, and subsequentGET
s will receive that file. So you can configureMI.options
in the Preview pane, and see those changes when directly usingGET /app
.
0.9.2
0.8.0
- Enables the Media Library picker, which allows adding static images from the app repository to cold states. These are pulled from the app repository's
img/
directory. - Adds the version number to the MDK GUI and a warning icon if the user is using an old version of the MDK CLI.
0.7.0
0.6.0
- Upgrade to
ember-cli
3.0.0 - You can now actually view the app at http://localhost:4200/app. This isn't the recommended way since it doesn't merge in MI.options, but sometimes may be required for testing.
- If apps referenced local files via
<img src="./img/*.png">
, etc, these wouldn't show up in the preview because we weren't serving./img
statically. We eventually want to change the directory structure so that all statically served files are in one place, but in the meantime we've whitelisted$root/img/
and$root/style.css
. - By default, newly generated apps wouldn't render in capturama due to a typo; this has been fixed.