357 lines
15 KiB
Markdown
357 lines
15 KiB
Markdown
# Changelog
|
|
|
|
# 4.3.1-SNAPSHOT
|
|
* Fix DexGuard optimization issue ([#216])<br>Thanks [@francescocervone]
|
|
* module `images`: `GifSupport` and `SvgSupport` use `Class.forName` instead access to full qualified class name
|
|
|
|
[#216]: https://github.com/noties/Markwon/pull/216
|
|
[@francescocervone]: https://github.com/francescocervone
|
|
|
|
# 4.3.0
|
|
* add `MarkwonInlineParserPlugin` in `inline-parser` module
|
|
* `JLatexMathPlugin` now supports inline LaTeX structures via `MarkwonInlineParserPlugin`
|
|
dependency (must be explicitly added to `Markwon` whilst configuring)
|
|
* `JLatexMathPlugin`: add `theme` (to customize both inlines and blocks)
|
|
* add `JLatexMathPlugin.ErrorHandler` to catch latex rendering errors and (optionally) display error drawable ([#204])
|
|
* `JLatexMathPlugin` add text color customization ([#207])
|
|
* `JLatexMathPlugin` will use text color of widget in which it is displayed **if color is not set explicitly**
|
|
* add `SoftBreakAddsNewLinePlugin` plugin (`core` module)
|
|
* `LinkResolverDef` defaults to `https` when a link does not have scheme information ([#75])
|
|
* add `option` abstraction for `sample` module allowing switching of multiple cases in runtime via menu
|
|
* non-empty bounds for `AsyncDrawable` when no dimensions are not yet available ([#189])
|
|
* `linkify` - option to use `LinkifyCompat` in `LinkifyPlugin` ([#201])<br>Thanks to [@drakeet]
|
|
* `MarkwonVisitor.BlockHandler` and `BlockHandlerDef` implementation to control how blocks insert new lines after them
|
|
|
|
|
|
```java
|
|
// default usage: new blocks parser, no inlines
|
|
final Markwon markwon = Markwon.builder(this)
|
|
.usePlugin(JLatexMathPlugin.create(textSize))
|
|
.build();
|
|
```
|
|
|
|
```java
|
|
// legacy blocks (pre `4.3.0`) parsing, no inlines
|
|
final Markwon markwon = Markwon.builder(this)
|
|
.usePlugin(JLatexMathPlugin.create(textView.getTextSize(), builder -> builder.blocksLegacy(true)))
|
|
.build();
|
|
```
|
|
|
|
```java
|
|
// new blocks parsing and inline parsing
|
|
final Markwon markwon = Markwon.builder(this)
|
|
.usePlugin(JLatexMathPlugin.create(textView.getTextSize(), builder -> {
|
|
// blocksEnabled and blocksLegacy can be omitted
|
|
builder
|
|
.blocksEnabled(true)
|
|
.blocksLegacy(false)
|
|
.inlinesEnabled(true);
|
|
}))
|
|
.build();
|
|
```
|
|
|
|
[#189]: https://github.com/noties/Markwon/issues/189
|
|
[#75]: https://github.com/noties/Markwon/issues/75
|
|
[#204]: https://github.com/noties/Markwon/issues/204
|
|
[#207]: https://github.com/noties/Markwon/issues/207
|
|
[#201]: https://github.com/noties/Markwon/issues/201
|
|
[@drakeet]: https://github.com/drakeet
|
|
|
|
|
|
# 4.2.2
|
|
* Fixed `AsyncDrawable` display when it has placeholder with empty bounds ([#189])
|
|
* Fixed `syntax-highlight` where code input is empty string ([#192])
|
|
* Add `appendFactory`/`prependFactory` in `MarkwonSpansFactory.Builder` for more explicit `SpanFactory` ordering ([#193])
|
|
|
|
[#189]: https://github.com/noties/Markwon/issues/189
|
|
[#192]: https://github.com/noties/Markwon/issues/192
|
|
[#193]: https://github.com/noties/Markwon/issues/193
|
|
|
|
# 4.2.1
|
|
* Fix SpannableBuilder `subSequence` method
|
|
* Introduce Nougat check in `BulletListItemSpan` to position bullet (for bullets to be
|
|
positioned correctly when nested inside other `LeadingMarginSpan`s)
|
|
* Reduced number of invalidations in AsyncDrawable when result is ready
|
|
* AsyncDrawable#hasKnownDimentions -> AsyncDrawable#hasKnownDimensions typo fix
|
|
|
|
# 4.2.0
|
|
* `MarkwonEditor` to highlight markdown input whilst editing (new module: `markwon-editor`)
|
|
* `CoilImagesPlugin` image loader based on [Coil] library (new module: `markwon-image-coil`) ([#166], [#174])
|
|
<br>Thanks to [@tylerbwong]
|
|
* `MarkwonInlineParser` to customize inline parsing (new module: `markwon-inline-parser`)
|
|
* Update commonmark-java to `0.13.0` (and commonmark spec `0.29`)
|
|
* `Markwon#configuration` method to expose `MarkwonConfiguration` via public API
|
|
* `HeadingSpan#getLevel` getter
|
|
* Add `SvgPictureMediaDecoder` in `image` module to deal with SVG without dimensions ([#165])
|
|
* `LinkSpan#getLink` method
|
|
* `LinkifyPlugin` applies link span that is configured by `Markwon` (obtain via span factory)
|
|
* `LinkifyPlugin` is thread-safe
|
|
|
|
[@tylerbwong]: https://github.com/tylerbwong
|
|
[Coil]: https://github.com/coil-kt/coil
|
|
[#165]: https://github.com/noties/Markwon/issues/165
|
|
[#166]: https://github.com/noties/Markwon/issues/166
|
|
[#174]: https://github.com/noties/Markwon/pull/174
|
|
|
|
# 4.1.2
|
|
* Do not re-use RenderProps when creating a new visitor (fixes [#171])
|
|
|
|
[#171]: https://github.com/noties/Markwon/issues/171
|
|
|
|
# 4.1.1
|
|
* `markwon-ext-tables`: fix padding between subsequent table blocks ([#159])
|
|
* `markwon-images`: print a single warning instead full stacktrace in case when SVG or GIF
|
|
are not present in the classpath ([#160])
|
|
* Make `Markwon` instance thread-safe by using a single `MarkwonVisitor` for each `render` call ([#157])
|
|
* Add `CoreProps.CODE_BLOCK_INFO` with code-block info (language)
|
|
|
|
[#159]: https://github.com/noties/Markwon/issues/159
|
|
[#160]: https://github.com/noties/Markwon/issues/160
|
|
[#157]: https://github.com/noties/Markwon/issues/157
|
|
|
|
# 4.1.0
|
|
* Add `Markwon.TextSetter` interface to be able to use PrecomputedText/PrecomputedTextCompat
|
|
* Add `PrecomputedTextSetterCompat` and `compileOnly` dependency on `androidx.core:core`
|
|
(clients must have this dependency in the classpath)
|
|
* Add `requirePlugin(Class)` and `getPlugins` for `Markwon` instance
|
|
* TablePlugin -> defer table invalidation (via `View.post`), so only one invalidation
|
|
happens with each draw-call
|
|
* AsyncDrawableSpan -> defer invalidation
|
|
|
|
# 4.0.2
|
|
* Fix `JLatexMathPlugin` formula placeholder (cannot have line breaks) ([#149])
|
|
* Fix `JLatexMathPlugin` to update resulting formula bounds when `fitCanvas=true` and
|
|
formula exceed canvas width (scale down keeping formula width/height ratio)
|
|
|
|
[#149]: https://github.com/noties/Markwon/issues/149
|
|
|
|
# 4.0.1
|
|
* Fix `JLatexMathPlugin` (background-provider null) ([#147])
|
|
|
|
[#147]: https://github.com/noties/Markwon/issues/147
|
|
|
|
# 4.0.0
|
|
* maven group-id change to `io.noties.markwon` (was `ru.noties.markwon`)
|
|
* package name change to `io.notier.markwon.*` (was `ru.noties.markwon.*`)
|
|
* androidx artifacts ([#76])
|
|
* `Markwon#builder` does not require explicit `CorePlugin` (added automatically),
|
|
use `Markwon#builderNoCore()` to obtain a builder without `CorePlugin`
|
|
* Removed `Priority` abstraction and `MarkwonPlugin#priority` (use `MarkwonPlugin.Registry`)
|
|
* Removed `MarkwonPlugin#configureHtmlRenderer` (for configuration use `HtmlPlugin` directly)
|
|
* Removed `MarkwonPlugin#configureImages` (for configuration use `ImagesPlugin` directly)
|
|
* Added `MarkwonPlugin.Registry` and `MarkwonPlugin#configure(Registry)` method
|
|
* `CorePlugin#addOnTextAddedListener` (process raw text added)
|
|
* `ImageSizeResolver` signature change (accept `AsyncDrawable`)
|
|
* `LinkResolver` is now an independent entity (previously part of the `LinkSpan`), `LinkSpan.Resolver` -> `LinkResolver`
|
|
* `AsyncDrawableScheduler` can now be called multiple times without performance penalty
|
|
* `AsyncDrawable` now exposes its destination, image-size, last known dimensions (canvas, text-size)
|
|
* `AsyncDrawableLoader` signature change (accept `AsyncDrawable`)
|
|
* Add `LastLineSpacingSpan`
|
|
* Add `MarkwonConfiguration.Builder#asyncDrawableLoader` method
|
|
* `ImagesPlugin` removed from `core` artifact
|
|
(also removed `images-gif`, `images-okhttp` and `images-svg` artifacts and their plugins)
|
|
* `ImagesPlugin` exposes configuration (adding scheme-handler, media-decoder, etc)
|
|
* `ImagesPlugin` allows multiple images with the same source (URL)
|
|
* Add `PlaceholderProvider` and `ErrorHandler` to `ImagesPlugin`
|
|
* `GIF` and `SVG` media-decoders are automatically added to `ImagesPlugin` if required libraries are found in the classpath
|
|
* `ImageItem` is now abstract, has 2 implementations: `withResult`, `withDecodingNeeded`
|
|
* Add `images-glide`, `images-picasso`, `linkify`, `simple-ext` modules
|
|
* `JLatexMathPlugin` is now independent of `ImagesPlugin`
|
|
* Fix wrong `JLatexMathPlugin` formulas sizes ([#138])
|
|
* `JLatexMathPlugin` has `backgroundProvider`, `executorService` configuration
|
|
* `HtmlPlugin` is self-contained (all configuration is moved in the plugin itself)
|
|
|
|
[#76]: https://github.com/noties/Markwon/issues/76
|
|
[#138]: https://github.com/noties/Markwon/issues/138
|
|
|
|
# 3.1.0
|
|
* `AsyncDrawable` exposes `ImageSize`, `ImageSizeResolver` and last known dimensions (canvas width and text size)
|
|
* `AsyncDrawableLoader` `load` and `cancel` signatures change - both accept an `AsyncDrawable`
|
|
* Fix for multiple images with the same source in `AsyncDrawableLoader`
|
|
|
|
With this release `Markwon` `3.x.x` version goes into maintenance mode.
|
|
No new features will be added in `3.x.x` version, development is focused on `4.x.x` version.
|
|
|
|
|
|
# 3.0.2
|
|
* Fix `latex` plugin ([#136])
|
|
* Add `#create(Call.Factory)` factory method to `OkHttpImagesPlugin` ([#129])
|
|
<br>Thanks to [@ZacSweers]
|
|
|
|
[#136]: https://github.com/noties/Markwon/issues/136
|
|
[#129]: https://github.com/noties/Markwon/issues/129
|
|
[@ZacSweers]: https://github.com/ZacSweers
|
|
|
|
|
|
# 3.0.1
|
|
* Add `AsyncDrawableLoader.Builder#implementation` method ([#109])
|
|
* AsyncDrawable allow placeholder to have independent size ([#115])
|
|
* `addFactory` method for MarkwonSpansFactory
|
|
* Add optional spans for list blocks (bullet and ordered)
|
|
* AsyncDrawable placeholder bounds fix
|
|
* SpannableBuilder setSpans allow array of arrays
|
|
* Add `requireFactory` method to MarkwonSpansFactory
|
|
* Add DrawableUtils
|
|
|
|
[#109]: https://github.com/noties/Markwon/issues/109
|
|
[#115]: https://github.com/noties/Markwon/issues/115
|
|
|
|
|
|
# 3.0.0
|
|
* Plugins, plugins, plugins
|
|
* Split basic functionality blocks into standalone modules
|
|
* Maven artifacts group changed to `ru.noties.markwon` (previously had been `ru.noties`)
|
|
* removed `markwon`, `markwon-image-loader`, `markwon-html-pareser-api`, `markwon-html-parser-impl`, `markwon-view` modules
|
|
* new module system: `core`, `ext-latex`, `ext-strikethrough`, `ext-tables`, `ext-tasklist`, `html`, `image-gif`, `image-okhttp`, `image-svg`, `recycler`, `recycler-table`, `syntax-highlight`
|
|
* Add BufferType option for Markwon configuration
|
|
* Fix typo in AsyncDrawable waitingForDimensions
|
|
* New tests format
|
|
* `Markwon.render` returns `Spanned` instance of generic `CharSequence`
|
|
* LinkMovementMethod is applied implicitly if not set on a TextView explicitly
|
|
* Split code and codeBlock spans and factories
|
|
* Add CustomTypefaceSpan
|
|
* Add NoCopySpansFactory
|
|
* Add placeholder to image loading
|
|
|
|
Generally speaking there are a lot of changes. Most of them are not backwards-compatible.
|
|
The main point of this release is the `Plugin` system that allows more fluent configuration
|
|
and opens the possibility of extending `Markwon` with 3rd party functionality in a simple
|
|
and intuitive fashion. Please refer to the [documentation web-site](https://noties.github.io/Markwon)
|
|
that has information on how to start migration.
|
|
|
|
The shortest excerpt of this release can be expressed like this:
|
|
|
|
```java
|
|
// previous v2.x.x way
|
|
Markwon.setMarkdown(textView, "**Hello there!**");
|
|
```
|
|
|
|
```java
|
|
// 3.x.x
|
|
Markwon.create(context)
|
|
.setMarkdown(textView, "**Hello there!**");
|
|
```
|
|
|
|
But there is much more to it, please visit documentation web-site
|
|
to get the full picture of latest changes.
|
|
|
|
# 2.0.1
|
|
* `SpannableMarkdownVisitor` Rename blockQuoteIndent to blockIndent
|
|
* Fixed block new lines logic for block quote and paragraph ([#82])
|
|
* AsyncDrawable fix no dimensions bug ([#81])
|
|
* Update SpannableTheme to use Px instead of Dimension annotation
|
|
* Allow TaskListSpan isDone mutation
|
|
* Updated commonmark-java to 0.12.1
|
|
* Add OrderedListItemSpan measure utility method ([#78])
|
|
* Add SpannableBuilder#getSpans method
|
|
* Fix DataUri scheme handler in image-loader ([#74])
|
|
* Introduced a "copy" builder for SpannableThem
|
|
<br>Thanks [@c-b-h]
|
|
|
|
[#82]: https://github.com/noties/Markwon/issues/82
|
|
[#81]: https://github.com/noties/Markwon/issues/81
|
|
[#78]: https://github.com/noties/Markwon/issues/78
|
|
[#74]: https://github.com/noties/Markwon/issues/74
|
|
[@c-b-h]: https://github.com/c-b-h
|
|
|
|
|
|
# 2.0.0
|
|
* Add `html-parser-api` and `html-parser-impl` modules
|
|
* Add `HtmlEmptyTagReplacement`
|
|
* Implement Appendable and CharSequence in SpannableBuilder
|
|
* Renamed library modules to reflect maven artifact names
|
|
* Rename `markwon-syntax` to `markwon-syntax-highlight`
|
|
* Add HtmlRenderer asbtraction
|
|
* Add CssInlineStyleParser
|
|
* Fix Theme#listItemColor and OL
|
|
* Fix task list block parser to revert parsing state when line is not matching
|
|
* Defined test format files
|
|
* image-loader add datauri parser
|
|
* image-loader add support for inline data uri image references
|
|
* Add travis configuration
|
|
* Fix image with width greater than canvas scaled
|
|
* Fix blockquote span
|
|
* Dealing with white spaces at the end of a document
|
|
* image-loader add SchemeHandler abstraction
|
|
* Add sample-latex-math module
|
|
|
|
# 1.1.1
|
|
* Fix OrderedListItemSpan text position (baseline) ([#55])
|
|
* Add softBreakAddsNewLine option for SpannableConfiguration ([#54])
|
|
* Paragraph text can now explicitly be spanned ([#58])
|
|
<br>Thanks to [@c-b-h]
|
|
* Fix table border color if odd background is specified ([#56])
|
|
* Add table customizations (even and header rows)
|
|
|
|
[#55]: https://github.com/noties/Markwon/issues/55
|
|
[#54]: https://github.com/noties/Markwon/issues/54
|
|
[#58]: https://github.com/noties/Markwon/issues/58
|
|
[#56]: https://github.com/noties/Markwon/issues/56
|
|
[@c-b-h]: https://github.com/c-b-h
|
|
|
|
|
|
# 1.1.0
|
|
* Update commonmark to 0.11.0 and android-gif to 1.2.14
|
|
* Add syntax highlight functionality (`library-syntax` module and `markwon-syntax` artifact)
|
|
* Add headingTypeface, headingTextSizes to SpannableTheme
|
|
<br>Thanks to [@edenman]
|
|
* Introduce `MediaDecoder` abstraction to `image-loader` module
|
|
* Introduce `SpannableFactory`
|
|
<br>Thanks for idea to [@c-b-h]
|
|
* Update sample application to use syntax-highlight
|
|
* Update sample application to use clickable placeholder for GIF media
|
|
|
|
[@edenman]: https://github.com/edenman
|
|
[@c-b-h]: https://github.com/c-b-h
|
|
|
|
|
|
# 1.0.6
|
|
* Fix bullet list item size (depend on text size and not top-bottom arguments)
|
|
* Add ability to specify MovementMethod when applying markdown to a TextView
|
|
* Markdown images size is also resolved via ImageSizeResolver
|
|
* Moved `ImageSize`, `ImageSizeResolver` and `ImageSizeResolverDef`
|
|
to `ru.noties.markwon.renderer` package (one level up, previously `ru.noties.markwon.renderer.html`)
|
|
|
|
# 1.0.5
|
|
* Change LinkSpan to extend URLSpan. Allow default linkColor (if not set explicitly)
|
|
* Fit an image without dimensions to canvas width (and keep ratio)
|
|
* Add support for separate color for code blocks ([#37])
|
|
<br>Thanks to [@Arcnor]
|
|
|
|
[#37]: https://github.com/noties/Markwon/issues/37
|
|
[@Arcnor]: https://github.com/Arcnor
|
|
|
|
|
|
# 1.0.4
|
|
* Fixes [#28] (tables are not rendered when at the end of the markdown)
|
|
* Adds support for `indented code blocks`
|
|
<br>Thanks to [@dlew]
|
|
|
|
[#28]: https://github.com/noties/Markwon/issues/
|
|
[@dlew]: https://github.com/dlew
|
|
|
|
|
|
# 1.0.3
|
|
* Fixed ordered lists (when number width is greater than block margin)
|
|
|
|
# 1.0.2
|
|
* Fixed additional white spaces at the end of parsed markdown
|
|
* Fixed headings with no underline (levels 1 & 2)
|
|
* Tables can have no borders
|
|
|
|
# 1.0.1
|
|
* Support for task-lists ([#2])
|
|
* Spans now are applied in reverse order ([#5] [#10])
|
|
* Added `SpannableBuilder` to follow the reverse order of spans
|
|
* Updated `commonmark-java` to `0.10.0`
|
|
* Fixes [#1]
|
|
|
|
[#1]: https://github.com/noties/Markwon/issues/1
|
|
[#2]: https://github.com/noties/Markwon/issues/2
|
|
[#5]: https://github.com/noties/Markwon/issues/5
|
|
[#10]: https://github.com/noties/Markwon/issues/10
|
|
|
|
|
|
# 1.0.0
|
|
|
|
Initial release |