This repository has been archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathCHANGES.txt
1247 lines (1145 loc) · 62.5 KB
/
CHANGES.txt
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
New in 3.6.1.0
==============
- FIX: Coursecat depreciation message when 'enablecategoryicon' is true.
- FIX: Tablet layout issue.
New in 3.6.0.4
==============
- FIX: 'courselistteachericon' not showing.
- FIX: Logo breaks header when using 'old navbar'.
- NEW: Course content search attribute and order.
New in 3.6.0.3
==============
- FIX: Editor buttons and social icons.
New in 3.6.0.2
==============
- FIX: Participants menu only on course and module pages.
- FIX: Style improvements to messages.
- FIX: Administration / Naviagtion menu still appearing when flat navigation is on because they are not in the side-pre region.
- NEW: Show / hide the participants menu with the 'participantsmenu' setting in the 'Header' settings.
New in 3.6.0.1
==============
- NEW: M3.6 beta based on 3.5.1.3.
- NEW: Docking setting in the general settings.
New in 3.5.1.3
==============
- FIX: Old navbar position scroll linked effects on FireFox.
- FIX: Issue #888: Margins on block icons.
- NEW: Separate 'People' from 'This course' menu and create 'Participants' menu.
New in 3.5.1.2
==============
- FIX: Position of quiz correction icons.
- FIX: Issue #876: Context menu in header near top right empty and showing for non-logged in users and students.
- FIX: Issue #882: badgesmi setting missing in settings.php.
- NEW: H5P Custom CSS setting in 'Features' for the H5P module (https://moodle.org/plugins/mod_hvp) if installed.
- NEW: Issue #883: embed-responsive bootstrap class not supported?
- NEW: Issue #884: Removed important font size declarations from responsive.less. Thanks to Mike Nodding for the patch.
New in 3.5.1.1
==============
- FIX: coursetitleposition string typo.
- NEW: Activity navigation above the activity and setting.
New in 3.5.1.0
==============
- FIX: Block editing menu item hover.
- FIX: Update frontpage home block area information.
- NEW: Added a tally to the 'Course search' on the dashboard. Thanks to "Linnaeus University" for funding this
enhancement.
- NEW: Added the ability for the administrator to disable the 'Search all course content' checkbox user preference.
Thanks to "Linnaeus University" for funding this enhancement.
- NEW: Added the ability to show / hide all of the items on the user menu bar 'log out'.
- FIX: LTI tool icon issue, see: https://moodle.org/mod/forum/discuss.php?d=371252#p1516474.
New in 3.5.0.1
==============
- NEW: Moodle 3.5 version based on 3.4.1.2 of the theme.
- FIX: Issue #865: Login box centred instructions.
- NEW: Issue #867: Skip links for footer blocks sometimes appear over main course page content.
New in 3.4.1.2
==============
- FIX: Revert back to M3.4 requirement as new Privacy API support will not confict. However if you do require
it then you will need Moodle 2017111302.00 3.4.2 (Build: 20180319)+.
- NEW: Added 'Search all course content' checkbox user preference to search all course content or only the course
title when performing a 'Course search' on the dashboard. Thanks to "Linnaeus University" for funding this
enhancement.
New in 3.4.1.1
==============
- NEW: Privacy API support. Requires Moodle 2017111302.00 3.4.2 (Build: 20180319)+. Analytics removed
until such a time as their use with GDPR is clearer.
New in 3.4.1.0
==============
- FIX: Issue #850: Flip main content and blocks, RTL mode.
- Possible FIX: Issue #853: Possible solution for "Site logo needs textual description for accessibility".
- FIX: Issue #856: Undefined property: stdClass::$numsections.
- FIX: Issue #857: Display glitch with docked blocks.
- FIX: Issue #859: Gradebook icons not red or green.
- FIX: Issue #860: Rendering problem in quiz form.
- FIX: Issue #862: Missing folder icon in courses list since commit 77abc460.
- FIX: Alert close icon in alternative colour schemes.
- FIX: Improved course content search so that will work with $CFG->themedir.
New in 3.4.0.1
==============
- NEW: Implemented core updates for activity navigation and user tour reset.
New in 3.3.1.2
==============
- FIX: Issue #836: Secure layout broken.
- FIX: Issue #844: While adding images with floating submit buttons.
- FIX: Issue #846: Group edit form layout.
- FIX: Block show / hide icons.
New in 3.3.1.1
==============
- FIX: Side pre block text colour when 'linkadmincategories' is unticked.
- FIX: Above setting for 'coursetitleposition' does not work on 'incourse' / two column content pages.
- FIX: Issue #842: Would it be possible to change a private to a protected?
- FIX: Issue #843: Add an activity or resource popup display.
- NEW: Quiz 'Submit all and finish' text and background with hover settings.
New in 3.3.1.0
==============
- NEW: Stable version.
New in 3.3.0.4
==============
- FIX: No transparency between flat navigation list groups.
- FIX: Required field icon.
- NEW: Course title position feature setting.
- NEW: Side pre block background, text, link and link hover settings.
New in 3.3.0.3
==============
- FIX: Issue #828: div id# completionprogressid has z-index.
- FIX: Issue #830: Course page hides blocks in Flat Navigation and editing off.
- FIX: Issue #831: User tour with backdrop alignment off - partial.
- FIX: Issue #833: Help icons open a new tab.
- FIX: Issue #835: Display fake blocks before Flat Navigation.
- FIX: Issue #838: Icons missing and/or out of alignment on certain pages.
- FIX: Position of completion icons and spacer when editing.
- FIX: Action menu overlapping navbar.
- FIX: Position of group icons, completion icons and spacer when editing.
- FIX: Reduce navbar icons jumping when old navbar position.
- FIX: Table hover icon colour.
- NEW: Issue #832: Use Core Notification and Messages menus.
New in 3.3.0.2
==============
- FIX: Issue #824: Header area/slide show/bullet-menu "on top".
- FIX: Issue #825: Missing region_main_settings_menu() when using flat navigation.
- FIX: Issue #827: Flat navigation does not show if blocks were previously docked.
- FIX: Double section summary editing cog.
- NEW: Update to flat navigation to be more similar to Boost markup. Initially for the Grid format.
New in 3.3.0.1
==============
- NEW: Initial 'Alpha' version for Moodle 3.3.
- NEW: Exclude CSS that has already been linted in the LESS and would cause errors as minified.
- NEW: Add flat navigation option and context header settings menu on the navbar.
- FIX: Issue #821: Marketing spots no longer responsive for mobiles.
- FIX: Implement MDL-57769 - Remove 'numsections' from topics and weeks, allow teachers to create and delete sections as they are needed.
- IFO: Using Essential Font-awesome LESS and font files for easy update.
New in 3.2.1.1
==============
- FIX: Issue #817: Incorrect header closing tags in header title area.
- FIX: Issue #818: Fix Apple touch icon.
- FIX: Issue #819: Site summary in the header: element div not allowed as child of element h2 in this context.
- FIX: Font-awesome icon for the recycle bin.
- FIX: Font-awesome icon for the repositories.
- FIX: MyCourses default icon.
- FIX: Font-awesome users icon.
- FIX: Duplicate socialheading id and redundant profileheading id.
- NEW: Issue #622: Custom category icon images. Gratefully funded by Gemma Lesterhuis.
New in 3.2.1.0 - First stable version.
==============
- FIX: Issue #812: Add icon replacements for t/message and t/addcontact. Thanks to Jan Dageförde (https://github.com/Dagefoerde) for this fix.
- FIX: Stray end tag in grading_navigation.mustache - MDL-58155.
- FIX: Navbar z-index for the Grid format in M3.2.
- FIX: Minimum height for the containing area when there is a logo. This is so that when a calculated height is less than the value then the container is not so small for the social icons etc.
New in 3.2.0.1 - Beta version.
==============
- UPD: Core and plugin pix.
- UPD: TravisCI.
- UPD: Unread messages language string.
- UPD: For jQuery 3 needed to escape all '#'s and '"'s in the JS - ref: https://api.jquery.com/category/selectors/.
- UPD: RTL LESS / CSS and see what can be removed as there is now a 'autoflipping' tool built in to Moodle.
- UPD: Removed 'essential.css' from production minification so that PHP-RTLCSS comments are preserved and can be processed.
- UPD: Improved logo to be responsive with different percentage widths for desktops and mobiles.
- FIX: Social and app icon position in RTL.
- FIX: Edit action menu icon hover background colour.
- NEW: Issue #810: Switch role to.
New in 3.1.1.8
==============
- FIX: Issue #794: Hidden grade items in user report not clear as such.
- FIX: Issue #804: 'Hide default page editing button' hides anything that could be in that place.
- FIX: Issue #805: Suspended user odd rows.
- FIX: Alternative colour table odd row colour.
- FIX: RTL header dotted separator appearing twice.
- FIX: User image table even row background.
- FIX: Forum table user image link height.
- FIX: Environment table help icon spacing.
- NEW: User image border radius settings.
New in 3.1.1.7
==============
- FIX: Issue #799: Message avatar overlap.
- FIX: Issue #802: My courses scroll not working.
- FIX: Issue #803: Embedded pdf files not displaying in IE 11.
- NEW: Properties.
New in 3.1.1.6
==============
- FIX: Issue #798: Slider title needs to support multi-lang filter.
- FIX: Course category multi-lang, ref: https://moodle.org/mod/forum/discuss.php?d=344426#p1389008.
- NEW: Issue #734: Unable to disable the new "page top" block region.
New in 3.1.1.5
==============
- FIX: Alternative colour scheme primary button text colour.
- NEW: Update to FontAwesome 4.7.0.
- NEW: Add 'Category and course sub-menu' functionality - 'mycoursescatsubmenu' 'Header' setting under 'Courses menu'. Sponsored by Petra Aartsen, Ontwikkelversneller.
New in 3.1.1.4
==============
- REFIX: Issue #780: Certain grades not appearing in gradebook.
New in 3.1.1.3
==============
- FIX: Issue #780: Certain grades not appearing in gradebook.
- FIX: Issue #788: Apply MDL-48350.
- FIX: Issue #789: Editing button in header not working in "modedit" pages.
- FIX: Blocks on tablets when one region is empty.
- NEW: Issue #778: Add a button to the front page to add alert settings. Sponsored by Chipping Campden School.
New in 3.1.1.2
==============
- FIX: Issue #777: Re: Scroll in the drop down menus #773 - Custom menu sub-menus no longer accessible.
- FIX: Bootstrap override LESS not working.
New in 3.1.1.1
==============
- REFIX: Issue #747: Profile picture in user profile missing.
- FIX: Issue #751: 3 block regions displaying in Edit mode for a 2-column layout.
- FIX: Issue #771: "Skip to main content" link is hidden by main fixed navbar.
- FIX: Issue #773: Scroll in the drop down menus.
- FIX: Issue #774: Participants List missing alternate user names - Alternative settings.
- FIX: Issue #776: Block editing labels can move.
- FIX: Row block and course category flex issues.
- FIX: Disabled elements in tables.
- FIX: MDL-56198 - Improve grading info responsiveness.
- REFIX: Action menu items for blocks when narrow page width.
- NEW: Issue #770: Create 'top-block' region with optionality setting.
- NEW: Issue #775: Only show dotted lines on regions when Drag and Drop.
- FIX/NEW: Improve footer.js and by doing so fix issue with popup layout.
New in 3.1.1.0
==============
- NEW: First stable release for Moodle 3.1.
New in 3.1.0.9
==============
- FIX: Issue #737: Rubric pop-out on assignment grading page doesn't use full height.
- FIX: Issue #740: Rubric in assignment view styling.
- FIX: Issue #746: Category icon tiles sometimes don't line up.
- FIX: Issue #747: Profile picture in user profile missing.
- FIX: Issue #748: "Page Top" blocks area, in edit mode, display blocks one under the other, in RTL mode.
- FIX: Issue #749: Course item action edit menu has redundant padding, in RTL mode.
- FIX: Issue #753: Accessibility: missing aria-label attribute in "back-to-top" element. Thanks to Nadav Kavalerchik.
- FIX: Issue #754: Accessibility: missing aria-label attribute in "prev"/"next" elements. Thanks to Nadav Kavalerchik.
- FIX: Issue #755: Accessibility: missing aria-label attribute in "socialicon" elements. Thanks to Nadav Kavalerchik.
- FIX: Issue #757: Custom icon colour doesn't seem to apply correctly to icons in drop-downs.
- FIX: Issue #762: Course fullname repeated above and below breadcrumbs.
- FIX: Issue #763: Custom EOT files don't work.
- FIX: Issue #765: Link font family is wrong.
- FIX: Issue #768: Display right arrow in dropdown-submenu.
- FIX: Breadcrumb style two fixes.
- FIX: Row block empty space.
- FIX: Frontpage RTL.
- FIX: Temporary patch until MDL-55185 is rectified in core.
- FIX: Action menu items.
- NEW: Issue #738: Fixes #736 add extra urlcolor for stripes.
- NEW: Issue #766: Login page background image. Gratefully funded by Gemma Lesterhuis.
- NEW: Improvements to 'essential_edit_button' for child themes.
New in 3.1.0.8
==============
- FIX: Issue #320: Group editing icons do not update on click to reflect new group status.
- FIX: Issue #722: Assignment grading page lacking styling.
- FIX: Issue #724: Main content does not expand.
- FIX: Issue #726: New "page top" block region is not properly margined in RTL mode.
- FIX: Issue #727: MyDashboard layout not flipping in RTL.
- FIX: Issue #729: New "page top" block region looks weird, when adding a new module.
- FIX: Issue #731: Assignment overview options.
- FIX: Remove MyDashboard layout to avoid duplicated code.
- NEW: Issue #713: Grading page has no navigation.
New in 3.1.0.7
==============
- FIX: Issue #710: Wrong profile image used.
- FIX: Issue #711: Space when blocks are docked.
- FIX: Issue #712: My Courses overflow.
- FIX: Issue #714: Enrol users page needs tidying up.
- FIX: Issue #715: Grading status page 'Grade' button and file submission line.
- FIX: Issue #716: Information alert close difficult to see.
- FIX: Issue #717: Notifications hover.
- FIX: Issue #718: Affix top offset height when reload down page.
- FIX: Issue #720: Block titles when editing and a page background are difficult to see.
- FIX: Issue #721: Notification template close inconsistent with alerts on frontpage.
- FIX: Table tidy up.
New in 3.1.0.6
==============
- FIX: Issue #697: Floating gradebook headers do not account for navbar height.
- FIX: Issue #698: Accessibility: role=main-content ("Role must be one of the valid ARIA roles").
- FIX: Issue #699: Assignment grading toolbar missing.
- FIX: Issue #700: Header height - M3.1.
- FIX: Issue #702: Header title - Fullname and summary option - language span tags.
- FIX: Issue #703: Group images are not well displayed.
- FIX: Issue #704: Vertical space between the header title and header subtitle is to small.
- FIX: Issue #707: Marketing setting header.
- FIX: Two column layout in RTL - M3.1.
- FIX: Theme selector images not responsive.
- FIX: Fixed height header when no logo for header background image now that the navbar calculates height in the old position.
- FIX: Theme selector table odd rows text colour - M3.1.
- FIX: Hover on dialog close button when using an alternative colour scheme.
- FIX: Notification templates location and tidy up.
- FIX: Missing forum icons.
- FIX: Revert to default grey SVG icons.
- FIX: Navbar and menus LTR / RTL icons - M3.1.
- NEW: Issue #606: Allowing blocks placed at the top of the content column. Gratefully funded by: Servei de Recursos Educatius <http://www.sre.urv.cat>, Universitat Rovira i Virgili.
- NEW: Display block region names when editing.
New in 3.1.0.5
==============
- FIX: Issue #684: Navigation block: English tree item icons should be right aligned in RTL mode.
- FIX: Issue #685: Blocks should be right aligned under content in admin page layout, on RTL mode.
- FIX: Issue #687: Dropdown menus don't stay open.
- FIX: Issue #688: FA block icons are not right aligned using Firefox, in RTL mode.
- FIX: Issue #690: Google fonts not working in quiz with Javascript Security.
- FIX: Issue #691: Cyrillic support for truncated return to section names. Fixed by Evgeny Logunow.
- FIX: Issue #692: Page background and 'beside' carousel text clash.
- FIX: Issue #693: Pixelated user picture.
- FIX: Issue #694: Folder state in blocks and icons.
- FIX: Issue #695: Large logo, old navbar position and affix.
- FIX: Issue #696: Double height navbar blocks content.
- FIX: Mod assign styles very tricky to override so exluding and including own changed copy despite potential maintenance issues.
- FIX: Button font.
- FIX: Content first three column layout in RTL.
New in 3.1.0.4
==============
- FIX: Issue #681: Breadcrumbs should be right aligned in RTL mode.
- FIX: Issue #682: Category icons in M3.1.
New in 3.1.0.3
==============
- FIX: SVG version of 'Cogs' for 'Settings' cog.
- FIX: Plugins check table text colour.
- FIX: Noticeboard format user picture.
- NEW: Competancies icon.
New in 3.1.0.2
==============
- FIX: Issue #674: M31 beta: Breadcrumbs should be right aligned and flipped in RTL mode.
- FIX: Issue #675: M31 beta: Left align "return to course" button, in RTL mode.
- FIX: Issue #676: M31 beta: Tree nodes in Navigation block have no right margin, in RTL mode.
- FIX: Issue #677: M31b: Tree nodes on Navigation block have redundant 21px right padding, in RTL mode.
- FIX: Issue #678: Gradebook sticky headers broken, in RTL mode.
- FIX: Issue #679: Guest user menu show missing support email error.
- FIX: Issue #686: Two enrolments in a course with latest courses.
- FIX: User menu setting header.
- NEW: My courses options. Thanks to "Linnaeus University" for funding this enhancement.
New in 3.1.0.1
==============
- FIX: Carousel slides in correct direction for RTL.
- NEW: Theme table stripe text and background colour settings.
- NEW: FontAwesome 4.6.3.
New in 3.0.1.5
==============
- FIX: Cautionary inclusion of coursecatlib.
- FIX: Hidden courses / resources on the breadcrumb. Ref: https://moodle.org/mod/forum/discuss.php?d=334838.
New in 3.0.1.4
==============
- FIX: Integer setting default and validation.
- FIX: Select setting default.
- FIX: Invisible parent categories with an image for a course that is in a visible category with no image.
- FIX: Ensure radio button default is set on first use.
New in 3.0.1.3
==============
- FIX: MDL-52800 - RTL styling for in place editable tooltip.
- FIX: MDL-52815 - Groups and members dropdowns overlapping on mobile devices.
- FIX: MDL-53855 - Navbar should be in exactly one nav region, and that should be labelled.
- FIX: Issue #659: Links with anchors don't work with the "flexsections" course format. Thanks to Jay Knight for his input.
- FIX: Issue #662: Site pages indent.
- FIX: Issue #664: Broken Alt-text in blocks.
- FIX: Issue #668: Course page header missing enrolled user info.
- NEW: Tidy up administration block.
- NEW: Category and course 'course title' images. Thanks to Murdoch University, Perth, WA for supporting this enhancement.
New in 3.0.1.2
==============
- FIX: Issue #642: Advanced Grading creating template form issue.
- FIX: Issue #649: Guest access confusing.
- FIX: Issue #653: Quiz question preview: does not uses the selected color scheme.
- FIX: Issue #654: Adding a quiz question menu does not use the selected colour scheme.
- FIX: Font serving instructions. See: https://moodle.org/mod/forum/discuss.php?d=330553.
- FIX: Invalid CSS attribute value in carousel.less.
- FIX: Footer position when using docking and footer is not at the bottom.
- FIX: MDL-53489 - Quiz editing: if you put in a very long heading, the page layout breaks.
- FIX: Improve logo setting description.
- FIX: Missing '$setting->set_updatedcallback('theme_reset_all_caches');' on logo width setting.
- FIX/NEW: Issue #646: Implement MDL-53147 from M3.1 - 'Reading message screen broken when reading one message and have another unread'.
- NEW: Issue #647: Navigation bar in course: without course category links. Thanks to Christian Niemczik for supporting and funding the work on the Essential Theme.
- NEW: Issue #652: Header logo and background refinements.
- NEW: Have the 'This course' menu appear on other course related pages.
- NEW: Tidy up licenses.
- NEW: Tidy up Font Awesome CSS as WOFF2 support was only an issue in M2.8.
- NEW: Logo dimension validation.
- NEW: Update to FontAwesome 4.6.1.
- NEW: Add 'usesiteicon' setting to allow the site icon not to be shown if desired.
- NEW: Add radio button selection for breadcrumb style.
- NEW: Add image and direction capability to radio button selection for breadcrumb style.
- NEW: Add radio button image selection for 'oldnavbar' setting.
- NEW: Add radio button image selection for 'slidecaptionoptions' setting.
New in 3.0.1.1
==============
- FIX: Issue #351: Footer doesn't stay at bottom.
- FIX: Issue #627: Request for an unknown renderer.
- FIX: Issue #628: Course content search dialog does not show up properly on RTL mode.
- FIX: Issue #629: Hidden resources have low contrast.
- FIX: Issue #633: Increase performance of administration settings pages. Thanks to 'Jan Dagefoerde' for the initial patch.
- FIX: Issue #634: Improve icon replacement performance.
- FIX: Issue #635: Course table of contents block navigation when static navbar.
- FIX: Issue #640: Edit profile style not set properly.
- FIX: Issue #641: Floating rows in the gradebook position after page scroll are wrong.
- FIX: Issue #642: Advanced Grading creating template form issue.
- FIX: Issue #643: Grading edit dropdown too small.
- FIX: Style guide settings tooltips and popups.
- FIX: MDL-52936 - Fix link hover bug on iOS.
- FIX: Apply 'aria-hidden="true"' to FontAwesome icons as much as possible. Still a few 'content' CSS attributes to consider.
- FIX: Add 'speak: none' to FontAwesome icons for accessibility.
- FIX: Footer doesn't stay at bottom code fix when no footer.
- FIX: Alternative colour border colours.
- FIX: Narrow page width and page header.
- FIX: Tidy the header.
- FIX: Admin submit button hover on alternative colour schemes.
- FIX: Dimmed icon colours.
- FIX: Hidden course summary box colours to be dimmed.
- NEW: Issue #632: View StyleGuide without logging on.
- NEW: Issue #645: Add setting to toggle display of hidden courses in Custom Menu. Thanks to Mathieu Pelletier for this code.
- NEW: Improve efficiency of colour switcher.
- NEW: Add logo width setting.
- NEW: Hide title area when showing social icons when collapsed.
- NEW: Bigger user picture when using the old navbar position and at the top.
- NEW: Refactor ColoursSwitcher into jQuery and optimise.
New in 3.0.1
============
- FIX: Issue #623: label is inline.
- FIX: Issue #625: .btn-link class needs settings.
- FIX: Coursebox tidy up.
- FIX: Primary button hover.
- FIX: Bootstrap button styling.
- FIX: TravisCI issues.
- FIX: Ensure that the editor gets the custom font-face declarations.
- FIX: Disabled and active button styling.
- FIX: MDL-52371 - Activity Chooser - alignment of strings that need line wrap.
- NEW: Style guide settings page.
New in 3.0.0.5
==============
- FIX: Issue #614: Dashboard -> Site administration -> Appearance -> HTML settings overflow with fixed width set at normal.
- FIX: Issue #615: Block login on frontpage.
- FIX: Issue #616: TinyMCE font family setting overridden by theme.
- FIX: Issue #617: What is the 'message-index' layout?
- FIX: Issue #618: Gradebook links are displayed when reports cannot be viewed. Thanks to Tony Butler for the patch #619.
- FIX: Issue #620: 'alternativethemedefaultbuttonbackgroundhovercolourX' setting name too long for 'name' attribute in 'config_plugins' table.
- FIX: Issue #621: Cloze question input box width when taking quiz but not preview.
- FIX: Editor colours.
- FIX: Duplicate line in 'Return to section....'.
- FIX: Input focus colour.
- FIX: TravisCI Code Checker complaints.
- FIX: MDL-52249 - Nested navigation dropdowns don't work on small screens - M3.0 only.
- FIX: MDL-52342 - Hiding section adds gaps to the activity chooser.
- FIX: MDL-52879 - Unable to delete last (only) question in a quiz.
- FIX: Question text width on 1200px+ resolutions when editing a quiz.
- FIX: Changes for Grid format issue #24.
- NEW: Issue #613: Section names on 'Return to section X'. Grateful thanks to 'Mihai Bojonca, TCM International Institute, Inc.' for funding this enhancement.
- NEW: Inspector Scourer.
- NEW: 'Return to section....' feature setting.
- NEW: Features settings page to tidy things up a bit.
New in 3.0.0.4
==============
- FIX: Issue #609: Block Editing button on Plugin overview pagechanges colour on hover.
- FIX: Filemanager link colour.
New in 3.0.0.3
==============
- FIX: Issue #599: .gitattributes: missing *.gif binary line - thanks to Jordi Pujol-Ahulló.
- FIX: Issue #602: <audio> elements can overflow to the right on small, older phones.
- FIX: Issue #603: Admins should always see "additional front page middle blocks" when editing is turned on.
- FIX: Fancy breadcrumb z-index conflict with the Grid format.
- FIX: Default button colour.
- FIX: Favicon not showing.
- NEW: Add return to section button on 'incourse' pages employing a named anchor to go directly there.
- NEW: Bigger forum discussion user picture.
- NEW: Default button background colour settings.
- NEW: Bootstrap 3 list group component.
New in 3.0.0.2
==============
- FIX: Issue #595: Navbar turn editing on / off button does not always work.
Should be complete, please report pages where does not work.
- FIX: Issue #596: Course category tile does not show sub-category course count.
- FIX: Issue #597: .gitattributes: extend for binary files.
- FIX: IE11 does not support 'initial' background size for tiled backgrounds.
- FIX: Forum search area layout.
- FIX: legend and header colour for course restore.
- FIX: Course category management actions menu when AJAX load causes core icons to be used.
- NEW: Update to FontAwesome 4.5.0.
New in 3.0.0.1
==============
- NEW: First beta version for Moodle 3.0. Using 'bootstrapbase' styles from 2015111602.00 3.0.2 (Build: 20160111).
- FIX: Issue #575: fa-inverse does not work.
- FIX: Issue #590: Message outlining incoming.
- FIX: Issue #592: Android menu issues.
- FIX: Issue #593: InCourse page content should be on the right and blocks on the left, in RTL mode.
- FIX: Performance information styling.
- FIX: Breadcrumb button hover / focus / active.
- FIX: Gradebook floating last row.
- FIX: General form tweaks.
- FIX: MDL-51881.
- NEW: Improve breadcrumb style1.
- NEW: Dashed block areas during editing when drag and drop moving.
- NEW: Improve pagenavbar.php and use in popup.php layout.
- NEW: Only apply footer block layout to assignment grading page.
New in 2.9.1.5.2
================
- FIX: Issue #589: Quiz grading.
New in 2.9.1.5.1
================
- FIX: Issue #588: Breadcrumb hover colour conflict.
- FIX: No closing speech mark in header.
New in 2.9.1.5
==============
- FIX: Issue #583: Empty topic names cause breadcrumb double arrow.
- FIX: Issue #585: Alert icons background.
- FIX: Issue #586: Fatal error on maintenance page.
- FIX: Issue #587: Slidecaption with wrong color and not aligned.
- FIX: Space for active indicator in slide show.
- FIX: Various tidy ups from Travis CI report.
- FIX: Changes to child theme mechanism. For a child theme template, please contact me via https://about.me/gjbarnard.
- NEW: Move the history to CHANGES.txt as per: https://docs.moodle.org/dev/Plugin_files#CHANGES.
- NEW: Travis CI: https://travis-ci.org/gjb2048/moodle-theme_essential.
New in 2.9.1.4.1
================
- FIX: Issue #578: Slide Show broken after upgrade from Moodle 2.8 to 2.9.
- FIX: Core renderer coding fault.
New in 2.9.1.4
==============
- FIX: Issue #577: Color for icons on header not set properly.
- FIX: Issue #578: Slide Show broken after upgrade from Moodle 2.8 to 2.9 - possible solution.
- FIX: Issue #579: Message preview shows <br />.
- FIX: Unread message menu margin.
- NEW: Issue #576: Add setting to display a page editing menu/button on the header. Thanks to Johannes Burk for this enhancement.
- NEW: Improved child theme support.
- NEW: Start of PHPUnit tests.
New in 2.9.1.3
==============
- FIX: Issue #566: Tidy up Marketing spot mark-up and CSS.
- FIX: Issue #569: Inactive category icon look all dimmed.
- FIX: Issue #572: iOS home screen icons broken.
- FIX: Issue #573: Wrong icon color in navbar (login icon).
- FIX: Alternative colours dimmed text colour.
- FIX: MDL-51921.
- FIX: Missing header background.
- FIX: Conflict with Collapsed Topics.
- FIX: Tidy up footer blocks.
- FIX: Coding fault in admin layout.
- NEW: Pull request #574: Custom favicon, Logo height and Turn off CSS styling of scrollbars settings - thanks to Mikhail Janowski for this.
- NEW: Footer block colours.
- NEW: Improved child theme support.
New in 2.9.1.2
==============
- FIX: Issue #509: Show/Hide icon does not change. Thanks to https://github.com/nzn-openapp.
- FIX: Issue #530: Essential Custom Menu Hamburger Behaviour. Thanks to Lou K for information.
- FIX: Issue #557: 'Undefined index' error appearing.
- FIX: Issue #558: Grade overview capability.
- FIX: Issue #559: Check and adjust breadcrumb hover colours.
- FIX: Issue #560: Social icon hover colour incorrect.
- FIX: Issue #561: Site name compressed on small displays.
- FIX: Issue #563: Undefined property numsections.
- FIX: Issue #565: Alternative colors: Section highligther in week course format.
- FIX: Issue #567: Wrong icon appearing in RTL in collapsed tree items in sideblocks.
- FIX: Issue #568: Missing AJAX animation when opening Site administration in the ADMINISTRATION side-block.
- FIX: Issue #570: Using i tag alone to set FontAwesome icon colour causes conflict with italics.
- FIX: Alternative colours icon bar.
- FIX: Only cancel buttons should have the theme text colour.
- FIX: Dropdown sub-menu hover colour, resulting in cleanup of dropdown menu LESS.
- FIX: Alternative dropdown action menu colours.
- NEW: Issue #484: Save Changes/Cancel button area. Thanks to Christian Niemczik for supporting and funding the work on the Essential Theme.
- NEW: Issue #571: Allow slide captions to be html.
- NEW: Optimised columns3 layout for Tablets.
- NEW: Refactor Alternative LESS such that it is easier to maintain.
New in 2.9.1.1
==============
- FIX: Issue #553: Section highlighter in topic course format.
- FIX: Issue #554: Slide interval: settings are ignored.
- FIX: Issue #556: Course management: course (sub-)categories are not indented.
- FIX: Editing pages legend text colour.
New in 2.9.1
============
- FIX: Issue #552: Alternative colors: layer in mobile layout with wrong color.
- NEW: Stable version based upon 2.9.0.10.
New in 2.9.0.10
===============
- FIX: Issue #541: PHP Fatal error: Class 'theme_essential\\theme_config' not found in /classes/toolbox.php on line 447.
- FIX: Issue #543: Alternative colors: box borders remain in standard color.
- FIX: Issue #544: Alternative colors: background hover always black in standard color scheme.
- FIX: Issue #547: Alternative colors: background hover on the frontpage.
- FIX: Issue #548: Slideshow: slidebuttoncolor does not have an effect.
- FIX: Issue #550: Breadcrumb menu "eaten away" when tighter window.
- FIX: Tweak collapsed navbar menu.
- FIX: Availability dialogue messed up.
- FIX: Editing button icon.
- FIX: RTL fixes in alternative colours.
- FIX: Tab colour fixes for default and alternative colours.
- FIX: Button colour fixes for default and alternative colours.
- FIX: Collapsed menu layout.
- NEW: Fourth alternative colour scheme. Thanks to Christian Niemczik for supporting and funding the work on the Essential Theme.
New in 2.9.0.9
==============
- FIX: Issue #536: FitVids targets players with mp3 files.
- FIX: Issue #537: Activities and resources in 'stealth section' are shown in the course menu. Partial fix, see: MDL-51465.
- FIX: Issue #538: Problem in core_renderer when outputs the messages menu containing HTML special chars.
- FIX: Issue #539: Incorrect path found in thirdpartylibs.
- FIX: Incorrect path in get_include_file().
New in 2.9.0.8
==============
- FIX: Issue #529: Divider does not show.
- FIX: MDL-42634.
- FIX: MDL-50323.
- FIX: MDL-51194.
- FIX: MDL-51229.
- FIX: Issue #520: Alternative carousel colours not working.
- FIX: Issue #535: Group mode icons not different.
- NEW: Issue #533: PIWIK Analytics and IP addresses.
- NEW: Improved PIWIK document title.
- NEW: Reduced size of floating button area.
- NEW: Added slider caption opacity when 'on top' slide caption option.
- UPD: Issue #530: Essential Custom Menu Hamburger Behaviour - Unable to fix, help wanted.
- UPD: Updated bootstrap.js such that all modules are included as discovered that 'modals' were missing.
- UPD: Tidy up icon colours and in alternatives.
- UPD: Changed course icon to colourable Font Awesome alternative.
- UPD: Refactor marketing spot settings in settings.php.
New in 2.9.0.7
==============
- FIX: Issue #523: Forum grids do not wrap.
- NEW: Issue #524: MDL-48202.
- NEW: Issue #525: MDL-46860.
- NEW: Issue #526: MDL-50533.
- FIX: Issue #527: ###### are not converted to dividers.
- FIX: Issue #528: Repeated show / hide of custom menu fails when small screen.
- FIX: Misplaced CSS attribute with no selector.
- FIX: Removed redundant maintenance selector.
- FIX: Removed login page selector.
- FIX: JavaScript tidy up and remove html5shiv support for IE8.
- FIX: Regression of initital fix for issue 517 whereby dropdown menus cannot be seen over the carousel when screen width is less
than the @navbarCollapseWidth, see: https://moodle.org/mod/forum/discuss.php?d=317306#p1272655.
- NEW: Update to FontAwesome 4.4.0.
- NEW: Version alert on admin pages if installed on wrong Moodle version as per 'Required version of Moodle' above.
New in 2.9.0.6
==============
- FIX: Issue #514: Quiz feedback colours are not accessible.
- FIX: Issue #515: Gradebook Tabs Not Left Justified.
- FIX: Issue #517: Mobile nav button overflow.
- FIX: Issue #518: Lesson table padding removed.
- FIX: #adminsettings h3 colour in alternative colours.
- FIX: Course drag and drop icon tricky to use.
- FIX: Action menu hover text colour.
- FIX: Navbar and dropdown adjustments to make cohesive with alternative colours.
- FIX: Drag and Drop Image Qtype Drop Zones entry boxes too big.
- FIX: Quiz navigation block preview icon not FontAwesome instance.
- FIX: MDL-50869.
- NEW: MDL-37832.
- NEW: MDL-50711.
New in 2.9.0.5
==============
- FIX: Forum submit area background colour for alternative colours.
- FIX: More navbar, breadcrumb and block colour fixes.
- NEW: Added new user preference link to 'Preferences' sub-menu.
- NEW: Added alternative icon color setting.
New in 2.9.0.4
==============
- FIX: Refactored Navbar and menu colours.
- FIX: Improved CSS font code from Shoehorn. Now font name only used if files are available when 'Font type selector'
is 'Custom font'. Otherwise reverts to default font name.
- FIX: Drop down menu colours when not used on a Navbar.
- NEW: Implemented MDL-50497.
- NEW: Add Composer support, issues #508 and #513.
New in 2.9.0.3
==============
- NEW: Change to autoloaded static toolbox class to reduce duplication and uncertaincy on $OUTPUT being the correct class.
New in 2.9.0.2
==============
- FIX: Form header icon repeated.
- NEW: Implement class autoloading for renderers.
New in 2.9.0.1
==============
- NEW: Update icons.
- NEW: Update quiz LESS.
- NEW: Update moodle LESS.
- NEW: Convert jQuery from pluginfile.php to AMD.
- NEW: Convert carousel to AMD.
- NEW: Update 'Essentials' child theme for M2.9 changes above.
New in 2.8.1.6
==============
- FIX: No 'loginas' URL when logged in as another user, ref: https://moodle.org/mod/forum/discuss.php?d=315453.
- FIX: More colour adjustments to navigation menus with alternative colours.
New in 2.8.1.5
==============
- FIX: Issue #469: Top menu bar message Update notifications messages blank.
- FIX: Issue #473: Cloze answer fields overflow to the right on mobiles.
- FIX: Issue #478: Unable to find CSS when themedir set but theme is in default dir. Thanks to Tyler Bannister.
- FIX: Issue #479: "This Course" menu only displays on course home page.
- FIX: Issue #480: Calendar issues.
- FIX: Issue #481: Drag and drop img handle shown on front page calendar when editing.
- FIX: Issue #483: Colouring a heading in TinyMCE reverts back to paragraph / body font.
- FIX: Issue #485: My courses not using correct context for view hidden courses capability.
- FIX: Issue #490: Availability date selection dropdowns.
- FIX: Issue #496: Category icons number of courses not shown on front page category list.
- FIX: Issue #504: Essentials child theme will not inherit parent settings. Thanks to Brendan Anderson.
- FIX: Issue #506: Essential Summary error.
- FIX: Tidy up alternative colours.
- FIX: Carousel control icons slightly clipped.
- FIX: Enrol users icon -> FontAwesome one.
- FIX: Slight tweak to floating headers in gradebook.
- FIX: Production LESS -> CSS issues when generating 'background:' attributes for colours, resulting in 'background:0 0;'.
- FIX: Responsive form issues as reported here: https://moodle.org/mod/forum/discuss.php?d=315157.
- FIX: Alternative colours in dock.
- FIX: Removed out of date 'bootstrapcdn' setting.
- NEW: Issue #503: Use Alternate Name in user menu as the main name. Gratefully funded by Mark Whitington.
- NEW: Styled 'Exit Activity' link for SCORM activities.
New in 2.8.1.4
==============
- FIX: Social icons when collapsed.
- FIX: Default user pix as svg in IE.
- FIX: Print adjustments.
- FIX: Issue #466: Forum overflow.
- FIX: Issue #471: Descriptions on profile page truncated.
- FIX: Issue #475: Popup layout does not get all settings for fonts.php.
- FIX: Issue #476: Essential hidden category headings.
- NEW: Updated to FontAwesome 4.3.0 with WOFF2 font support. Requires 2.8.5+ (Build: 20150313) -
https://moodle.org/mod/forum/discuss.php?d=307270
- NEW: Dynamic WOFF2 support based upon Moodle version - see: MDL-49074.
New in 2.8.1.3
==============
- FIX : Adjust quiz report.
- FIX : Adjust assignment grading to have blocks underneath for more space.
- REFIX: Issue #447: Essential overlapping of Admin Settings.
- FIX : Issue #459: Messages Screen.
- FIX : Issue #461: Missing function errors in 2.8.1.2 - upgrade now site is blank.
- FIX : Issue #463: Notification Time Stamp Issue.
- FIX : Issue #464: When 'layout' set then message screen is between 768px and 979px is broken.
- FIX : Apply MDL-49078.
New in 2.8.1.2
==============
- FIX: Incredibly strange regression when changing theme to Essential.
- FIX: Issue #458: Header logo pushing social icons off header - smaller sized screens.
- FIX: Issue #460: jQuery instead of $.
New in 2.8.1.1
==============
- FIX: Issue #417: M2.8 Mail Settings page needs checking.
- FIX: Issue #422: Regression from #179 in the core_renderer.php file.
- FIX: Issue #423: Forum floating buttons.
- FIX: Issue #425: Copyright date localization.
- FIX: Issue #429: Front page content area set to "Show before login only" still paritally displays.
- FIX: Issue #432: Adjusted lang string for 'oldnavbardesc'. Thanks to Mathieu Pelletier (https://github.com/mkpelletier) for
this.
- FIX: Issue #434: Explain if a logo uploaded then no header title will be shown.
- FIX: Issue #436: Header background colour setting.
- FIX: Issue #441: Messages Screen when on mobile ( - 767px ) - background not filling area (region-main).
- FIX: Issue #447: Essential overlapping of Admin Settings.
- FIX: Issue #449: Embedded question text alignment.
- FIX: Issue #450: Undefined variable fontselect in embedded question preview.
- FIX: Issue #451: Hidden categories not aligning correctly.
- FIX: Issue #452: Messages Screen when on mobile still not quite correct.
- FIX: Issue #454: Social icon hover text is odd with 'URL' postfix.
- FIX: Issue #455: IE9 4096 selector limit.
- FIX: Apply MDL-46183.
- FIX: Apply MDL-45930.
- FIX: Apply MDL-44907.
- FIX: Improved custom font file detection and serving.
- FIX: Serving of slide show images when the parent frontpage is used in a child theme.
- FIX: doctype() warning when debugging.
- FIX: Misc tweaks I spotted - look at the commit on 22/2/2015 for details.
- NEW: Issue #428: Add setting to customise header background image. Thanks to Jerome Charaoui (https://github.com/jcharaoui) for
this.
- NEW: Issue #433: Add a 'This Course' dropdown menu. Thanks to ActionJONA (https://github.com/ActionJONA) for the ported BCU
theme code.
- NEW: Added 'Essentials' child theme in 'essentials' sub-folder. To use, read the 'Installation' instructions in
'essentials/README.txt'. The 'essentials' sub-folder is just a place to store and distribute the child theme. It will NOT
be available until you install it.
- NEW: Code refactoring to make child theme creation easier.
- NEW: LESS refactoring to make future transition to Bootstrap v3 easier.
New in 2.8.1
============
First stable release.
- FIX: Issue #342: Essential Theme (version 2014101000 2.7.8 Build: 2014091804) issue with IE9 and earlier.
- FIX: Issue #414: Slider not work properly in RTL.
- FIX: Issue #416: Missing background colour in breadcrumb and footer.
New in 2.8.0.2
==============
- FIX: Issue #348: Slider controls do not work in RTL.
- FIX: Issue #403: Enroll button does not work with two or more self-enrollment options.
- FIX: Issue #404: M2.8 Adding a question to a new Quiz needs checking.
- FIX: Issue #405: Extension of blocks into Footer region with "Edit Settings" on.
- FIX: Issue #406: Assignment types: Online Audio Recording.
- FIX: Issue #408: Show text of question in list.
- FIX: Issue #409: Single view in Grades references unknown block.
- FIX: Issue #411: Atto editor causing horizontal scroll bar.
- FIX: Issue #412: Drop down background should be themeurlcolour and not themetextcolour.
- NEW: Issue #410: Use admin preference for 'My courses' menu sort order. Thanks to Tony Butler for this.
New in 2.8.0.1
==============
NOTE: Beta version - test servers only. Use on production servers is not recommended or supported.
- FIX: Issue #309: Moodle 2.8 file manager issue.
- FIX: Issue #335: Sorting buttons on headings on gradebook in 2.8 overlap other cells
- FIX: Issue #376: Grade report overflow in M2.8.
- FIX: Issue #381: The grid exceeds limits of the central area of the forum.
- FIX: Issue #392: Essential quiz - edit mode - action btns broken.
New in 2.7.9.3
==============
- FIX: Issue #244: Rows too long on plugins overview page.
- FIX: Issue #310: Moodle TinyMCE editor issue.
Thanks to Mary Evans for the fix on: https://moodle.org/mod/forum/discuss.php?d=275976 and
https://github.com/zahrah- for testing.
- FIX: Issue #382: Missing style in mod_feedback.
- FIX: Issue #385: Embedded YouTube videos not working.
- FIX: Issue #387: Floating "Submit" area on mobiles is evil. Also added 'Go to bottom' icon when applicable.
- FIX: Issue #388: Navbar overlaps "Enrol Users" window, z index?
- FIX: Issue #389: Slideshow data-slide-to index regression.
- FIX: Issue #391: question bank - strings of questionnames cuted.
- FIX: Issue #395: Small overlap on Course and Category Management page.
- FIX: Issue #396: Fine tuning required on Edit Quiz page.
- FIX: Issue #397: Docked blocks are not wide enough.
- FIX: Issue #402: Moving "Automatic redirect" window.
- FIX: MDL-48246 : YUI generated class 'hidepanelicon' not styled because of a typo.
New in 2.7.9.2
==============
- FIX: Issue #372: Hovering block on Grading page.
- FIX: Issue #377: Fixed width setting breaks carousel images.
- FIX: Issue #378: Breadcrumb error on many pages when set to 'hide'.
- FIX: Issue #379: Typo on slide settings page.
New in 2.7.9.1
==============
- FIX: Issue #371: Alert Icons not rendered.
New in 2.7.9
============
- FIX: Issue #326: Submit panel overlaps the message input area.
- FIX: Issue #329: Social icons in mobile view showing odd behaviour.
- FIX: Issue #330: Slider caption below causes jump.
- FIX: Issue #346: Affix header height when using the old navbar setting.
- FIX: Issue #349: Background missing in private messages.
- FIX: Issue #350: Background missing after posting to forum.
- FIX: Issue #352: Piwik function clash with local plugin version - https://moodle.org/plugins/view.php?plugin=local_analytics.
- FIX: Issue #356: Incorrect $filename in /pluginfile.php/1/theme_essential/style/<timestamp>/essential.css.
- FIX: Issue #357: Beside slider option layout issues.
- FIX: Issue #358: 2.7.9b issues.
- FIX: Issue #359: Further 2.7.9b issues.
- FIX: Issue #361: Tweak to quiz editing in 2.7.9b.
- FIX: Issue #366: My Grades view includes course name.
- FIX: Issue #367: Course discription summary box not wide enough.
- FIX: Issue #370: Fancy breadcrumb hidden courses are strikethrough.
- UPDATE : moodle/core.less - MDL-47340 & MDL-47097.
- UPDATE : moodle/course.less - MDL-47340.
- UPDATE : moodle/responsive.less - MDL-47242.
- NEW: Issue #247: Provide option to prevent automatic collapse for breadcrumbs.
- NEW: Issue #327: Font file types.
- NEW: Issue #340: Show slider navigation icons only when mouse in the slider.
- NEW: Issue #354: Ability to turn FitVids on / off.
- NEW: Issue #364: Add Shoelace dynamic footer blocks.
New in 2.7.8
============
- FIX: Issue #248: Navbar overlay on activity selection popup.
- FIX: Issue #252: LESS background: transparent; being compiled as background: 0 0;
- FIX: Issue #254: Gradebook alignment.
- FIX: Issue #257: Header options cause navbar to display incorrectly.
- FIX: Issue #258: Message menu text wrapping in IE 11.
- FIX: Issue #259: In course page icon not appears.
- FIX: Issue #260: Preview Questions.
- FIX: Issue #263: Group Image alignment in Forums.
- FIX: Issue #264: Incorrect H1 content in Password change screen.
- FIX: Issue #268: When vertical, Marketing spot urls all link to the url for Marketing spot 1.
- FIX: Issue #271: Performance information not readable when theme colour is #ffffff.
- FIX: Issue #272: Email/URL for Help link not correctly parsed.
- FIX: Issue #277: Docking clash when not using old navbar.
- FIX: Issue #284: Testing 2.7.8a - Save changes bar offset to the right.
- FIX: Issue #285: Some colours need checking.
- FIX: Issue #286: CSS caching in Google Chrome.
- FIX: Issue #287: Embedded objects overlap the navigation elements.
- FIX: Issue #289: Conflict with Turnitin plugin's navbar.
- FIX: Issue #291: Carousel images distort.
- FIX: Issue #292: Google Fonts through https FIX. Thanks to @PiotrNawrot.
- FIX: Issue #293: Multilang tags do not work with the course heading.
- FIX: Issue #294: Undefined variable icon.
- FIX: Issue #296: Quiz settings page.
- FIX: Issue #298: User profile fields - can't edit Categories.
- FIX: Issue #300: Piwik not working in 2.7.8c.
- FIX: Issue #301: Long resource/activity names overlap editing menu with editing on.
- FIX: Issue #302: Setting "Breadcrumb Style" to "hide" does not remove the breadcrumb background.
- FIX: Issue #304: Region not defined in M2.6.
- FIX: Issue #311: Quiz submission in RTL.
- FIX: Issue #312: Calendar header in RTL.
- FIX: Issue #315: Dropdown Menu Highlighting.
- FIX: Issue #318: Quiz Order and Paging - Alignment fine-tuning.
- FIX: Issue #319: Preview Question displays directly on background image.
- FIX: Issue #321: Theme not load essential.css when using https on login page.
- FIX: Issue #322: Menu colour needs checking.
- NEW: Issue #249: Implement RTL CSS switching. Thank you to Nadav Kavalerchik and many others for testing.
- NEW: Issue #251: Marketing spots h tags.
- NEW: Issue #269: Marketing Spots Social Media Widgets.
- NEW: Issue #278: Site name needs to be formatted in line with MDL-47080.
- NEW: Issue #295: My Courses navbar link not working.
- NEW: Issue #305: Login button in menu bar on login page.
New in 2.7.7
============
- FIX: Issue #173: Message menu shows wrong time difference in Russian.
- FIX: Issue #175: Gradebook several bugs.
- FIX: Issue #179: User picture error.
- FIX: Issue #189: Gradebook - column text and sorting doesn't fit the column.
- FIX: Issue #191: Blocks not showing on the right of the frontpage for non-admins.
- FIX: Issue #196: Gradebook - vertical size in fixed column view.
- FIX: Issue #200: Category Edit / Delete Missing in newest version of Essential.
- FIX: Issue #208: Bug: Undefined function is_loggedin().
- FIX: Issue #209: Showing white background.
- FIX: Issue #211: Image size in message menu.
- FIX: Issue #220: Standard Moodle Chat interface fails to load.
- FIX: Issue #221: Missing string 'unreadnewnotification'.
- FIX: Issue #225: Blank pages after some times.
- FIX: Issue #228: Incorrect z-index in menu.
- FIX: Issue #233: User image wrong in IE.
- FIX: Issue #237: Homepage main content block layout issues.
- FIX: Issue #238: Logged in user block styling.
- FIX: Issue #241: Background image appears as text box background.
- FIX: Issue #243: View Full toggle button not functional 2.6.9b.
- FIX: Issue #246: Menu bar down arrow caret causes shift of menu.
- NEW: Issue #74 : Fonts are CDN only.
- NEW: Issue #139: Enter own CDN font names.
- NEW: Issue #149: Add setting to not show the site shortname.
- NEW: Issue #170: Option in settings to choose how the site title in header appears.
- NEW: Issue #176: Option to Hide Calendar, Private Files, Forum Posts and Discussions from Dropdown.
- NEW: Issue #178: Error when editing user preferences.
- NEW: Issue #180: Same height marketing spots.
- NEW: Issue #181: Marketing spot header same as navbar.
- NEW: Issue #185: Custom background image dimensions.
- NEW: Issue #186: Add edit links to custom frontpage content items.
- NEW: Issue #197: Gradebook overall average font colour.
- NEW: Issue #204: Windows Mobile Apps.
- NEW: Issue #212: Upgrade FontAwesome 4.2.0.
- NEW: Issue #223: How to make a sub menu from custom menu.
- NEW: Issue #226: Move slideshow slides loading to function in lib.php.
- NEW: Issue #235: Color of course navigation block.
- NEW: Issue #240: Header title not wrapping in mobile view.
New in 2.7.6b
=============