1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* Changelog.
|
|
|
19 |
*
|
|
|
20 |
* @package block_multiblock
|
|
|
21 |
* @copyright 2020 Peter Spicer <peter.spicer@catalyst-eu.net>
|
|
|
22 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
defined('MOODLE_INTERNAL') || die();
|
|
|
26 |
|
|
|
27 |
?>
|
|
|
28 |
|
|
|
29 |
Multiblock Changelog.
|
|
|
30 |
(File protected as a .php file to avoid leaking details of instance in use.)
|
|
|
31 |
|
|
|
32 |
1.3.4 - 2020060104
|
|
|
33 |
* Tabs with 2-column layout thanks to Peter Burnett at Catalyst AU
|
|
|
34 |
|
|
|
35 |
1.3.3 - 2020060103
|
|
|
36 |
* Handle the site front page course correctly (#66)
|
|
|
37 |
* Switch over to Moodle HQ's fork of moodle-plugin-ci
|
|
|
38 |
|
|
|
39 |
1.3.2 - 2020060102
|
|
|
40 |
* Don't try to use invalid blocks as part of 'merge in block' (#62)
|
|
|
41 |
|
|
|
42 |
1.3.1 - 2020060101
|
|
|
43 |
* Stop running tests on 3.6.
|
|
|
44 |
* Add 3.9 stable to the supported list.
|
|
|
45 |
|
|
|
46 |
1.3.0 - 2020060100
|
|
|
47 |
* Add 3-column layout.
|
|
|
48 |
* Add carousel layout. (#56)
|
|
|
49 |
* Fix breadcrumbs issue. (#59)
|
|
|
50 |
|
|
|
51 |
1.2.6 - 2020022406
|
|
|
52 |
* Fix warning for missing language string (#55)
|
|
|
53 |
|
|
|
54 |
1.2.5 - 2020022405
|
|
|
55 |
* Fix permission check for users editing blocks.
|
|
|
56 |
* Bump Node version for automated tests (excluding MOODLE_36_STABLE)
|
|
|
57 |
* First release on Moodle plugin directory.
|
|
|
58 |
|
|
|
59 |
1.2.4 - 2020022404
|
|
|
60 |
* Tidy up unnecessary global variables.
|
|
|
61 |
* When uninstalling, return all sub-blocks to the parent (e.g. dashboard). (#47)
|
|
|
62 |
|
|
|
63 |
1.2.3 - 2020022403
|
|
|
64 |
* Added Behat tests for dropdown layout. (#4)
|
|
|
65 |
* Travis builds now use Chrome not Firefox.
|
|
|
66 |
|
|
|
67 |
1.2.2 - 2020022402
|
|
|
68 |
* Added Behat tests for accordion/tabbed/vertical layouts. (#4)
|
|
|
69 |
|
|
|
70 |
1.2.1 - 2020022401
|
|
|
71 |
* Fixed dropdown markup for Totara 12. (#44)
|
|
|
72 |
* Fixed vertical tabbed views for Totara 12. (#48)
|
|
|
73 |
|
|
|
74 |
1.2.0 - 2020022400
|
|
|
75 |
* Added privacy support
|
|
|
76 |
* Fixed permissions handling relating to block contexts. (Part of #22)
|
|
|
77 |
|
|
|
78 |
1.1.2 - 2020022300
|
|
|
79 |
* Add hints in configure-block for recommended layouts. (#34)
|
|
|
80 |
|
|
|
81 |
1.1.1 - 2020021301
|
|
|
82 |
* Support for Moodle 3.5
|
|
|
83 |
|
|
|
84 |
1.1.0 - 2020021300
|
|
|
85 |
* Support for Totara 12+ (#18)
|
|
|
86 |
|
|
|
87 |
1.0.3 - 2020021102
|
|
|
88 |
* Added vertical tabs - right aligned. (#33)
|
|
|
89 |
|
|
|
90 |
1.0.2 - 2020021101
|
|
|
91 |
* Added a changelog.
|
|
|
92 |
* Added badges to the readme.
|
|
|
93 |
* Refactored some internals to allow future development. (#29)
|
|
|
94 |
|
|
|
95 |
1.0.1 - 2020021100
|
|
|
96 |
* Added save-and-display option to the editing a subblock instance. (#25)
|
|
|
97 |
|
|
|
98 |
1.0.0 - 2019092600
|
|
|
99 |
* Initial code, not initially released under this version except on GitHub.
|