Releases: laughedelic/literator
Releases · laughedelic/literator
literator v0.8.0
literator v0.7.1
This release just fixes problems with resolving artifacts from Bintray. It doesn't have any significant changes since 0.7.0.
literator v0.7.0
- Command line application is removed, because (according to bintray) nobody uses it anyway
- Library and sbt-plugin are merged into one project (because sbt multiproject is a mess)
- Index is not appended by default now (you can turn it on with
docsAddIndex := true
) - Output directories are cleaned up before generating docs (you can turn it off with
docsCleanBefore := false
) - literator-plugin is renamed to just literator and is now an auto plugin
literator v0.6.0
New feature:
- Now you can add markdown files in the source directories (like Readme.md) with comments about the structure of your code or any other relevant documentation and it will be copied to the generated docs, making them more readable
- Links index is added to them, so you can easily refer to other files
literator v0.5.2
- Fixed encoding bug (
java.nio.charset.MalformedInputException: Input length = 1
exception) (See #16) - Updated dependencies (ScalaTest, Scallop)
literator v0.5.1
Fixed line endings handling (Windows CRLF) (#15)
literator v0.4.1
- Bugfix for #12 (issue with writing to files on windows)
literator v0.5.0
- Library:
- Command line application:
- Sbt plugin:
- Added
Literator.
namespace for the keys;
- Added
literator v0.4.0
For better modularity and convenience of use, separated project into several parts:
- Library:
- Added autogenerated links definition list (#7)
- Changed index building and moved index to the bottom of the document
- Solved problem of nested comments (#4)
- Abstracted parsing over particular language (#1); Added the most useful languages
- Made everything more
File
-centric (instead of justString
s); - Merged
literateFile/Dir
into oneFile.literate()
method;
- Sbt plugin:
- Has
docsMap
key, for multiple mapping between srcs -> doc dirs - Has
docsOutputDirs
for adding them tocleanFiles
- Has
- Command line application:
- So far very primitive application; planning to add some nice options and conscript cover.
Other changes:
- Changed
organization
in sbt and package prefix in code tolaughedelic
- Now publishing everything to Bintray
literator v0.3.0
- Restructured project: separated different components
- Added (optional) navigation index to the generated markdown
- Changed interface to use File/Path everywhere
- Changed type of literateFile/Dir: now it returns error messages if there are any
- Changed default docs destination from docs/code to docs/src