Skip to content
This repository has been archived by the owner on Jul 25, 2021. It is now read-only.

Releases: irshu355/Android-WYSIWYG-Editor

Update Gradle and glide

30 Jul 09:12
Compare
Choose a tag to compare
  • Update Gradle to 3.4.0
  • Update glide to 4.9.0

blockquote support

02 Jan 08:18
Compare
Choose a tag to compare
  • adds blockquote support

Introducing Macro's - custom markups

25 Dec 06:07
Compare
Choose a tag to compare
  • Introducing Macro's.

Macro's are equivalent to components in react/vue.js.
It lets you add a custom block into the editor where you get to control what gets rendered into the editor. Read more about this below on Macro's section.

  • Removed Maps support. This is because we were using static map (which is basically an image snapshot of the selected cords). This can be inserted by yourself using insertImage method. Google has introduced new restrictions on maps and places usage with mandatory billing accounts. In future, we will add the support with another community driven map extension. At the moment, it's not a necessary component for the editor.

  • Replaced image loader library Picasso with Glide, so to make use of it's rich customization api.

  • An improved editor navigation.

Fix for disordered rendering from serialised string, Links on editor will respond to clicks

01 Dec 15:05
Compare
Choose a tag to compare

Fixes

  • Links on editor will now respond to click
  • Fix for editor rendering wrong order from serialised string/html

Support for coloured texts

26 Aug 04:57
Compare
Choose a tag to compare

Added

  • Colored texts are now supported, u can globally set the colour as editor.setEditorTextColor("#FF3333"); or dynamically switch the color of the active line as editor.updateTextColor("#FF3333");

  • Decide whether to autofocus on start
  • Formatting of list items now supported (eg: i,b,h1,h2,h3...)

Add editor-image-subtitle class to image subtitle html tag

06 Aug 16:40
Compare
Choose a tag to compare
  • Add editor-image-subtitle class to image subtitle markup. When used on the web, you can now style the tag as for eg:

     .editor-image-subtitle {
     color: #828282;
     font-size: 10px;
     text-align: center;
     display: block;
     margin-top: 7px;
     margin-bottom: 25px;
     }
    

Bugfixes

15 Jul 19:26
Compare
Choose a tag to compare
  • Fix the IndexOutofBoundException error when enter key is pressed
  • Retain the first line placeholder text when editor is reset