Skip to content

Releases: NoDivide/astrum

1.6.3

03 Sep 14:35
Compare
Choose a tag to compare

Improvements

  • Removed legacy realignment feature.

1.6.2

03 Sep 14:34
Compare
Choose a tag to compare

Bug Fixes

  • Setting disabled_code_sample along with sample_dark_background on new components was resetting the options rather than maintain them both. (#58)

1.6.1

15 Aug 13:24
Compare
Choose a tag to compare

Improvements

  • Added max-width to page content to enhance readability. (Resolves #47)

New Features

  • Added component option to hide the code sample and only show the rendered preview. (PR #41 & #51)

1.5.17

03 Aug 20:32
Compare
Choose a tag to compare

Bug Fixes

  • Added cache busting to page requests. (Resolves #39)

1.5.16

28 Jul 08:12
Compare
Choose a tag to compare

Bug Fixes

  • Fixed and issue where a length error could be thrown if the data.json file didn't load quickly enough. (Resolves #34)

1.5.15

27 Jul 10:02
Compare
Choose a tag to compare

Bug Fixes

  • Added targeted classes to pre and code tags to avoid avoid style conflicts. Resolves (#33)

New Features

  • Added facility to force update an Astrum instance using the --force option. e.g.

    $ astrum update --force

    This is useful if you need to restore an instance you've made changes to.

  • Added facility to disabled auto sample hiding. You can now specify manually if a component is hidden on mobile or desktop e.g.

    {
        "group": "podcasts",
        "name": "latest-podcast",
        "title": "Latest Podcast",
        "options": {
             "disabled_auto_sample_hiding": {
                 "show_on_mobile": true,
                 "show_on_desktop": true
             }
         }
    }

1.5.12

11 Jul 09:21
Compare
Choose a tag to compare

New Features

  • Facility to set a sample_background_color option on a per component basis. This overrides the global sample_dark_background option and is useful if you need a component to sit about a particular background color.

  • Facility to get the Astrum instance version number from the command-line tool using the -I option e.g.:

    $ astrum -I
    The Astrum instance version is: 1.5.12
    

    The -V option also now returns the Astrum package version number.

1.5.10

30 Jun 13:23
Compare
Choose a tag to compare
Bugs
  • #2 - Resolved an issue, specific to Windows users, where a dependancy was breaking the command-line tool and paths weren't being set properly.