All Versions
9
Latest Version
Avg Release Cycle
93 days
Latest Release
1793 days ago

Changelog History

  • v0.10.0 Changes

    May 29, 2019
    • โž• Added :device option to Scribe.print/2 for printing to a specific device.
      0๏ธโƒฃ Defaults to :stdio
  • v0.9.0 Changes

    May 04, 2019
    • ๐Ÿ’… NoBorder style added.
  • v0.8.2 Changes

    January 17, 2019
    • ๐Ÿ‘Œ Support for Elixir v1.8
  • v0.8.1 Changes

    July 26, 2018
    • ๐Ÿ‘Œ Support for Elixir v1.7
  • v0.8.0 Changes

    March 15, 2018
    • :compile_auto_inspect and :auto_inspect config options, both default
      to false
    • โž• Added Scribe.auto_inspect/1 for toggling auto inspect
    • โž• Added Scribe.auto_inspect?/0
    • โœ‚ Removed Scribe.enable/0 and Scribe.disable/0, replaced with above
    • โœ‚ Removed Scribe.enabled?/0, replaced with above

    ๐Ÿš€ To work with production releases, auto-inspect functionality can now be
    0๏ธโƒฃ optionally compiled (not compiled by default). To enable auto-inspect for
    your development environment, add this to your config/dev.exs:

    config :scribe,
      compile_auto_inspect: true,
      auto_inspect: true
    

    To temporarily disable auto-inspect in your shell, use
    Scribe.auto_inspect(false). Inspect will work as normal until set to
    true again.

    ๐Ÿ–จ If auto-inspect is not compiled (or disabled), Scribe.print/2 and similar
    functions will continue to work as normal.

  • v0.7.0 Changes

    February 19, 2018
    • ๐Ÿ’… Pseudographics style added
  • v0.6.0 Changes

    • Overrides Inspect protocol for List and Map. These types will now automatically return in Scribe's table format. Disabled by default. with config :scribe, enable: false in your Mix config.
    • Scribe.enable, Scribe.disable, and Scribe.enabled? added.
    • Minimum Elixir version bumped to 1.5.
  • v0.5.1 Changes

    • โฌ†๏ธ Bump pane dependency to v0.2.0.
  • v0.5.0 Changes

    • ๐Ÿ’… @behaviour Scribe.Style implemented (See /style for example adapters)
    • Colorized output.
    • 0๏ธโƒฃ Default styling no longer separates data rows.
    • Tables no longer width-limited unless specified.