Released on July 27, 2021

<aside> ‼️ This release requires prior migration to 1.0.17

</aside>

List of changes

  1. Draft feature can be turned off now.
  2. Bugfixes:
    1. Crash when minify = enabled in native code
    2. Crash when opening video editor activity, when using some codec
    3. Crash on camera, when opening gallery, while using exposition

List of updates modules

Migration guide

Checkout an example of migration to 1.0.17.1 version in our sample.

  1. Draft configuration.

    By default drafts enabled, asks the user to save a draft before leave any VideoEditor screen. If you need to change drafts configuration you should add the code below in the VideoEditorKoinModule:

    override val draftConfig: BeanDefinition<DraftConfig> = factory(override = true) {
            DraftConfig.ENABLED_ASK_TO_SAVE
    }
    

    You can choose one of these options:

    1. ENABLED_ASK_TO_SAVE - drafts enabled, asks the user to save a draft
    2. ENABLED_SAVE_BY_DEFAULT - drafts enabled, saved by default without asking the user
    3. DISABLED - disabled drafts