Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Releases: movableink/movable-cli

0.12.0

24 Mar 00:37
Compare
Choose a tag to compare
  • Support for previewing Data Sources, via adding sample_responses to your data_source_definitions.

0.11.0

24 Mar 00:37
Compare
Choose a tag to compare
  • Adds support for rendering your app into an image via the Movable Ink platform.

0.10.0

14 Mar 19:26
Compare
Choose a tag to compare

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

14 Mar 19:23
Compare
Choose a tag to compare
  • Allow viewing preview directly in GET /app to work better: instead of serving the raw index.html, when you POST /app with MI.options merged in, we save then to a .compiled-index.html, and subsequent GETs will receive that file. So you can configure MI.options in the Preview pane, and see those changes when directly using GET /app.

0.9.2

06 Mar 22:08
Compare
Choose a tag to compare
  • Increase POST limit to support larger projects.
  • movable new inside existing repositories will place the new directory in the specified place, rather than at the root of the repository.

0.8.0

20 Feb 16:11
Compare
Choose a tag to compare
  • 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

16 Feb 04:56
Compare
Choose a tag to compare
  • Adds movable deploy <environment> command to make deploys more seamless.
  • More comprehensive generated README.

0.6.0

15 Feb 23:06
Compare
Choose a tag to compare
  • 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.