weekly release 4.5dev
[moodle.git] / media / upgrade.txt
blob3547a02cd26cf8b71b83d3fd2415756546a6a58d
1 === 4.5 Onwards ===
3 This file has been replaced by UPGRADING.md. See MDL-81125 for further information.
5 ===
6 This files describes API changes in /media/ plugins,
7 information provided here is intended especially for developers.
9 === 4.0 ===
10 * The videojs-flash-lazy.js and videojs/video-js-swf libraries have been removed, because the Flash Player was deprecated
11 in 2017 and officially discontinued on 31 December 2020. Besides, the rtmp and useflash settings have been removed because
12 they are not required anymore, now that the flash support has been removed from the videojs media player.
14 === 3.8 ===
15 * The final deprecation of core_media_manager::setup() means that this function will no longer be called.
16 The setup is now done in ::instance() so there is no need to call this.
18 === 3.6 ===
19 * The following functions have been finally deprecated and can not be used anymore:
20   * core_media_player::is_enabled()
21   * core_media_player::compare_by_rank()
23 === 3.3 ===
24 * core_media_manager setup() is now deprecated as it is now called when initialising core_media_manager::instance().
25 * core_media_manager is now final. Do not extend core_media_manager, instead create a media plugin.