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