Releases: elseano/rundown
Releases · elseano/rundown
0.4.0-alpha.3
Changelog
537b199 Tidy
0.4.0-alpha.2
Further additions:
- Support
file-existsinput type, which validates file actually exists. - Hooked up
--ast,--check, and--displayoptions.
0.4.0-alpha.1
Starting to solidify the CLI.
Changes:
- Rundown will now default to using
RUNDOWN.mdfalling back toREADME.md. Override with the-fflag. - All existing subcommands moved to a flag. Only
--astsupported at the moment. - Added
<r import="file"/>support - Added interactive prompts options
<r opt="password" as="PGPASSWORD" prompt="Password" type="password"/> - Added support for
passwordoption type.
0.3.2
Rundown 0.3.1
Added support for running files via a STDIN pipe.
For example:
<r with="mysql -uroot < $FILE"/>
``` sql
SOURCE database.sql
```
Any time $FILE is present in the with modifier, the entire with contents becomes a script executed by bash, with the original contents saved in a temporary file pointed to by $FILE.
Rundown 0.3.0
- Integrated the Glamour markdown renderer, instead of rolling our own.
- Added rundown file help section, allowing Rundown files to provide their own help documentation.
- Visual cleanups of errors and shortcode screens.
- Refactoring of option parsing
Rundown 0.2.0
New in this version:
- Functions (via
<r func="name"/>), and invoking of functions (via<r invoke="name"/>).- Function parameters supported (via
<r opt="name"/>) and can be provided when invoking (via<r invoke="name" opt-name="value"/>)
- Function parameters supported (via
- Shortcode parameters via the same
<r opt="name"/>tag.- Shortcode parameters can be supplied on the CLI via the
+name="value"argument. - Shortcode parameters are included in the output of
--codes.
- Shortcode parameters can be supplied on the CLI via the
- Scripts which error out will now highlight the line which caused the error.
- Image rendering for truecolor terminals. Images are rendered using unicode block characters, so they're low fidelity.
- Internal restructuring to support all of the above.
New --codes output:
Image rendering:
Rundown 0.1.3
Added a check command, which will check your rundown file for any issues:
- Duplicate labels
- Unknown Emoji codes
- Unknown rundown attributes
Bugfixes:
- Fixed formatting for loose lists.
Rundown 0.1.2
Links will be rendered using the \e]8 escape code as documented in https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda.

