-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES.txt
executable file
·1506 lines (1269 loc) · 61.7 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
Release notes for Agora-Moodle2 (https://agora.xtec.cat)
More information on each of the fixes can be found in the project
development home at https://github.com/projectestac/agora_moodle2
Changes 25.02.04
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.4.5+
- Updated langpacks
- Completion: Ignore pass/fail when only Require grade defined (MDL-75582)
- Question duplication: Partial reversion of MDL-77625
- cloze: Upgraded tiny plugin
- fontsize: Upgraded tiny plugin
- Local Àgora: Added script to activate filter multilang and configure TinyMCE plugins
- Theme xtecboost: Replaced twitter logo by X logo. Improved footer styles
- Tiles: Upgraded course format
- Wiris: Upgraded all components
Changes 24.12.23
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.4.5+
- Updated langpacks
- attendance: Upgraded module
- choicegroup: Upgraded module
- GeoGebra: Upgraded module
- jclic: Upgraded module
- journal: Upgraded module
- Local oauth: Updated plugin
- Local Àgora: Updated plugin
- questionnaire: Upgraded module
- qv: Upgraded module
- Vicens Vives: Upgraded all plugins
- Completion progress: Upgraded block
- rgrade: Updated block
- cloze: Upgraded atto plugin
- fontsize: Upgraded atto plugin
- Cloze: Added tiny plugin
- Fontcolor: Added tiny plugin
- Fontfamily: Added tiny plugin
- Fontsize: Added tiny plugin
- Wiris: Added tiny plugin
- multitopic: Upgraded course format
- Simple: Upgraded course format
- tiles: Upgraded course format
- rcommon: Fixes and updates for Moodle 4.4
- rcontent: Added monologo image and Added lang string
- redislock: Upgraded local plugin
- settings.php: Removed memcached configuration
- xtec2020: Removed theme
- xtecboost: Upgraded theme
Changes 24.11.19
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.1.14+
- Updated langpacks
- Alexandria importer: Updated plugin
- Configurable reports: Upgraded block
- Course quotas: Updated report
- Font family: Upgraded atto plugin
- Geogebra: Upgraded module
- hvp: Upgraded module
- Local Àgora: Updated cache definitions for Moodle 4.1.14
- Migratehvp2h5p: Upgraded admin tool
- Wiris: Upgraded all components
Changes 24.10.22
---------------------------------------------------------------------------------------
- Updated langpacks
- Completion: Ignore pass/fail when only Require grade defined (MDL-75582)
- multitopic: Added course format
- tiles: Added course format
Changes 24.09.26
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.1.13+
- Updated langpacks
- Attendance: Upgraded module
- qtype_calculated: Fix for negative answers (MDL-76024)
- Questionnaire: Upgraded module
- settings: Added custom file types for python (used in assignments)
- Wiris: Upgraded all components
Changes 24.07.16
---------------------------------------------------------------------------------------
- Updated langpacks
Changes 24.07.01
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.1.11+
- configurable_reports: Added block
- jClic: Upgraded module
- settings.php: Added parameters for block configurable_reports
- Wiris: Upgraded all components
Changes 24.04.30
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.1.10
- Updated langpacks
- Course format simple: Show content of labels in non-editing view
- coursequotas: Fixed lang string
- Wiris: Upgraded all components
Changes 24.03.19
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.1.9+
- Updated langpacks
- Hot Potatoes: Upgraded module and question format
- local_agora: Updated script to configure oAuth2 client for IDI
- tool_oauth2: Fixed loading of form to create a custom service
- Theme xtecboost: Reduced the size of the icons of the activities in the course view
- Wiris: Upgraded all components
Changes 24.01.25
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.1.8+
- Updated langpacks
- GeoGebra: Upgraded module
- langs: Removed limitation by code
- Wiris: Upgraded all components
Changes 23.12.18
---------------------------------------------------------------------------------------
- Updated langpacks
- lesson: Fixed Matching questions does not match with expected response (MDL-79937)
- Theme xtecboost: Fixed scroll in list of conversations
Changes 23.11.28
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.1.6+
- Updated langpacks
- Attendance: Upgraded module
- Choicegroup: Upgraded module
- Completion progress: Upgraded module
- Wiris: Upgraded all components
Changes 23.10.17
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.1.6
- Updated langpacks
- Question Type Numerical: Fixed PHP 8.x compatibility error
- Wiris: Upgraded all components
Changes 23.09.27
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.1.5+
- Updated langpacks
- Hot Potatoes: Upgraded module
- Hot Potatoes: Upgraded question format
- local_oauth: Upgraded module
- Questionnaire: Upgraded module
Changes 23.07.10
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 4.1.4+
- Updated langpacks
- Attendance: Upgraded module
- Atto plugin cloze: Upgraded version
- Choicegroup: Upgraded module
- Clickedu: Upgraded module
- Completion progress: Upgraded block
- Coursequotas: Updated report
- Course format type Simple: Upgraded for Moodle 4.x
- jclic: Added monologo icon
- Local Àgora: Upgraded cache definitions for Moodle 4.1.4
- Local Àgora: Copy of settings from xtec2020
- Questionnaire: Upgraded module
- rcontent: Added monologo icon
- TinyMCE Editor: Restricted access to uninstall and to record video
- XTEC Boost: Added theme
- Wiris: Upgraded all components
Changes 23.05.23
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 3.11.14+
- Updated langpacks
- Journal: Upgraded module
- Ordering: Upgraded question type
- Snap: Upgraded module
- Wiris: Upgraded all components
Changes 23.03.27
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 3.11.13+
- Updated langpacks
- Attendance: Upgraded module
- Choicegroup: Upgraded module
- GeoGebra: Upgraded module
- Questionnaire: Upgraded module
- Wiris: Upgraded all components
- local_redislock: Added expiration to locks to automatically remove them in case the script doesn't finish correctly
- H5P: Fix for visual editor doesn't open under certain conditions
- local_agora: Added changes for IDI
- Login via IDI. Added language string for user profile field schoolcode.
- Login via IDI. Don't update the email every time the user logs in.
- Login via IDI. Use a fake email based on UPN.
- oAuth2 client: User can have no email in IDI. In that case, will use the UPN as an email.
- oAuth2 client: Only allow to login to users whose school code in IDI matches the school code of the Moodle site.
Changes 22.12.13
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 3.11.11+
- Updated langpacks
- Attendance: Upgraded module
- Choicegroup: Upgraded module
- completion_progress: Upgraded block
- local_agora: Added script to configure oAuth2 client for IDI
- migratehvp2h5p: Upgraded tool
- oAuth2 client: Fixed save of oAuth2 issuers when acceptrisk is checked
- oAuth2 client: Ensure method get_issuer exists before calling it. Added exception for client for IDI
- oAuth2 client: Only xtecadmin can configure oAuth2 client for IDI
- Theme xtec2020: Fix for collapsible menu using custommenuitems
- Wiris: Upgraded all components
Changes 22.11.15
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 3.11.11
- Updated langpacks
- oAuth2 client: Modified behavior for login to Azure AD via oAuth2
- Attendance: Upgraded module
- Choicegroup: Upgraded module
- Clickedu: Upgraded module
- Hotpot: Downgraded module
- GeoGebra: Upgraded module
- Wiris: Upgraded all components
Changes 22.10.04
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 3.11.10+
- Updated langpacks
- Attendance: Upgraded module
- Choicegroup: Upgraded module
- Google repository: Fix for error when accessing to files allocated in Google Drive
- Hotpot: Upgraded module
- Journal: Upgraded module
- Ordering: Upgraded question type
- Questionnaire: Upgraded module
- Snap!: Added module
- Wiris: Upgraded all components
Changes 22.07.04
---------------------------------------------------------------------------------------
- Ignore file size limits in content bank
Changes 22.06.30
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 3.11.7+
- Updated langpacks
- Unlock coursebinenabled
- attendance: Added module
- completion_progress: Upgraded block
- coursequotas: Minor improvements to the report
- H5P core: Activated for all users
- HVP: Upgraded module and blocked access to users
- journal: Upgraded module
- GeoGebra: Upgraded module
- migratehvp2h5p: Opened access to site admins
- questionnaire: Upgraded module
- Theme xtec2020: Minor improvements
- Wiris: Upgraded all components
Changes 22.02.22
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 3.11.5+
- Updated langpacks
- Wiris: Upgraded all components
- HVP: Upgraded module
- GeoGebra: Upgraded module
- Remove records in table assignfeedback_editpdf_rot during course reset (MDL-69570)
- Allowed access to asynchronous backups to all Moodle administrators
- LTI: Remove extra param added by mod_rewrite in .htaccess
- Redis: Activated compression in MUC
Changes 21.11.15
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 3.11.4
- Updated langpacks
- Allowed access to asynchronous backups to all Moodle administrators
- Geogebra: Upgraded version
- Hot Potatoes: Downgraded module
- Wiris: Upgraded all components
- Fixed import of broken multianswer questions (MDL-54724)
Changes 21.10.08
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 3.11.3+
- Updated langpacks
- assignfeedback_editpdf: Remove all fileareas of component assignfeedback_editpdf during course reset (MDL-69570)
- Atto plugin cloze: Upgraded version
- Choicegroup: Upgraded version
- Clickedu: Upgraded version
- Hot Potatoes: Upgraded module
- migratehvp2h5p: Removed dependencies to allow mod_hvp reset
- Ordering: Upgraded question type
- Questionnaire: Upgraded module
- Wiris: Upgraded all components to versions 7.27 / 4.3
Changes 21.09.02
---------------------------------------------------------------------------------------
- Updated langpacks
- Clickedu: Upgraded version
- Coursequotas: Fixed variable name that caused incorrect course size values being saved in database
- Vicens Vives: Upgraded all components
Changes 21.07.14
---------------------------------------------------------------------------------------
- Upgraded Moodle to version 3.11.1
- Updated langpacks
- Content bank: Restricted access to xtecadmin
- H5P core: Allow access only to xtecadmin
- H5P module: Upgraded to version 1.22.3
- Block completion_progress: Upgraded version
- Alexandria importer: Improved presentation
- Choicegroup: Upgraded version
- Clickedu: Upgraded version
- Geogebra: Upgraded version
- Jclic: Upgraded version
- Questionnaire: Upgraded version
- Upgraded all wiris plugins
- Question type ordering: Upgraded version
- Single task execution: Added param to identify Moodle instance in Agora
- Cron: Removed minimum time between executions
- Local Agora: Updated MUC for Moodle 3.11
- Atto plugin cloze: Upgraded version
- Theme xtec2020: Added compatibility with Moodle 3.11
- Activate usage of X-SendFile
Changes 21.05.20
---------------------------------------------------------------------------------------
- Upgraded module H5P to version 1.22.2
- Upgraded report coursequotas (Improved performance)
- Moved sessions from database to redis
- Disabled cursors with hold
- Local redislock: Added plugin
- Local agora: Removed unused old scripts
- Local agora: Added script to remove unused old directories in moodledata
Changes 21.03.01
---------------------------------------------------------------------------------------
- Updated language packages
Changes 21.02.09
---------------------------------------------------------------------------------------
- Upgraded Moodle from v3.8.6 to v3.8.7
- Updated language packages
- Upgraded all wiris plugins
- Upgraded block completion_progress
- Upgraded atto plugin cloze
- Upgraded module choicegroup
- Theme xtec2020: Fixed preference of uploaded logo before default logo
- Theme xtec2020: Internal improvements to code
- rcontent: FIX user_picture object evaluation
- Local Agora: Improvements to code quality. Added script to calculate course quotas
- Alexandria importer: Fixed error in development mode. Removed reference to non-existing node
- Coursequotas: Added tables to cache quota usage by course and category and load data from cache tables
- Backported MDL-47750 to allow copy & paste images from clipboard to the atto editor
Changes 20.12.10
---------------------------------------------------------------------------------------
- Upgraded Moodle from v3.8.5 to v3.8.6
- Updated language packages
- Upgraded module clickedu
- Upgraded all wiris plugins
- Upgraded module jclic
- Upgraded block completion_progress
- Upgraded atto plugin Cloze
- Theme xtec2020: Added colorset PEDC and reworked general design
- Theme xtec2020: Replaced specific xtecadmin check by generic access function, compatible with Odissea and Alexandria
- User bulk capitalize: Fixed functionality
- Local Agora: Updated cache definitions
- Local Agora: Fixed loading colorset from Nodes
- Reduced minimum time between cron executions to 8 minutes
Changes 20.10.26
---------------------------------------------------------------------------------------
- Add redirect using full URI for sites that have changed their domain
- Removed is_portal. Added is_odissea and is_alexandria. Some clean up.
- Unlock digestmailtime parameter
- Unlock supportemail parameter
- Updated language packages
Changes 20.10.02
---------------------------------------------------------------------------------------
- Updated language packages
Changes 20.09.18
---------------------------------------------------------------------------------------
- Upgraded Moodle from v3.8.4 to v3.8.5
Changes 20.09.02
---------------------------------------------------------------------------------------
- Upgraded block completion_progress
- Upgraded module H5P
- Upgraded all components from Vicens Vives
- Upgraded block completion_progress
- Upgraded Wiris components: filter and atto plugin
- Upgraded module journal
- Geogebra: Improved literals
- Theme xtec2020: Allow access to header menu to anonymous users
- Theme xtec2020: Added support for multilevel custom menu
- Theme xtec2020: Improved accessibility
- Theme xtec2020: Fixed repeated button and javascript errors in question bank preview
- Theme xtec2020: Allow removal of blocks Navigation and Settings
Changes 20.07.27
---------------------------------------------------------------------------------------
- Upgraded Moodle from v3.6.7 to v3.8.4
- Updated language packages
- Removed theme xtec2
- Added theme xtec2020
- Removed module mailer (mail sender using apligest) and associated hacks in Moodle core
- Upgraded all wiris plugins
- Upgraded atto plugin Cloze
- Fixed typo in local_oauth
- Upgraded module choicegroup
- Upgraded module Hot Potatoes
- Upgraded module questionnaire
- Upgraded module jclic
- Upgraded block completion_progress
- Course format Simple: Fixed edition of section name
Changes 20.05.12
---------------------------------------------------------------------------------------
- Message: Show old message UI and allow access to all messages
- Show 'hidden' text next to hidden labels in courses
- Coursequotas: Added disk usage of H5P libraries
- Updated language packages
Changes 20.04.15
---------------------------------------------------------------------------------------
- Geogebra: Fixed error when accessing to closed activities
- Added support for new service states: migrated and saturated
Changes 20.02.18
---------------------------------------------------------------------------------------
- H5P: Upgraded module to version 1.20.2
- Updated language packages
- Theme XTEC2: Removed loading of mobile CSS
- Upgraded all wiris plugins
- Upgraded all vicens vives plugins
- Upgraded module choicegroup to version 1.18
- Upgraded question type "ordering"
- Added support for attachments in email
- Atto fontfamily: Fixed dependency and added RGPD compliance
- Local mobile: Removed plugin
Changes 19.11.14
---------------------------------------------------------------------------------------
- Upgraded Moodle from v3.6.6 to v3.6.7
- Updated language packs
- MUC: Changed cache store for coursecat. Moved to default session
- xtec-mailer: Fixed compatibility with PHP 7.3
- Added atto plugin Cloze
- Upgraded all wiris plugins
- Upgraded module hot potatoes
- Upgraded module choicegroup
- Upgraded module H5P
- Upgraded question format hot potatoes
- Upgraded question type "ordering"
- Only allow access to parameter atto_recordrtc | allowedtypes to xtecadmin
Changes 19.09.25
---------------------------------------------------------------------------------------
- Upgraded Moodle from v3.6.5 to v3.6.6
- Updated language packs
- Re-added Catalonia to countries list
- Made exception for FRM environment to put cache files in moodledata
- Oauth2 server: Updated code to connect to WordPress
- Marsupial: Updated components
- Upgraded all wiris plugins
- Upgraded module clickedu
- Upgraded module geogebra
- Upgraded module hot potatoes
- Upgraded module H5P
- Upgraded block "completion progress"
- Upgraded question type "ordering"
Changes 19.08.29
---------------------------------------------------------------------------------------
- Fixed cache pollution due to XTEC patches
- Improved cache definitions
Changes 19.07.24
---------------------------------------------------------------------------------------
- Upgraded Moodle from v3.4.8 to v3.6.5
- Updated translation files
- Modified theme XTEC2 for compatibility to Moodle v3.6.5
- Upgraded all wiris plugins
- Upgraded module choicegroup
- Upgraded module hotpot
- Upgraded module H5P
- Upgraded module journal
- Upgraded module questionnaire
- Upgraded block "completion progress"
- Upgraded question type "ordering"
- Upgraded question type "wq"
- Local agora: Removed old message_notifier plugin
- Local agora: Disallow theme boost
Changes 19.04.15
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.4.8
- Align availability label next to the activity title
- Add the temp configuration to the agora config file
- Updated LangPacks
- Updated auth/googleauth2
- Updated mod/hvp
- Updated them/xtec2
- Updated mod/geogebra
- Updated mod/jclic
Changes 18.11.23
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.4.6
- Fix presentation in rgrade
- Fix the mod_jclic problem set as the first activity and improve some parts
Changes 18.11.05
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.4.5
- Fix deprecated js functions in rgrade
- Improve the use of memcached
- Add recordRTC to atto editor
Changes 18.08.13
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.4.4
- Àgora only works in https
- Set env-config-dist to https
- Updated local/agora
- Updated LangPacks
- Updated LangPacks
- Check if competencies have been enabled by xtecadmin or let acces to xtecadmin to the competencies submenu
- Remove wwwsecureroot from advancededit button and ad second parametres to pix_icon
- Core: Hide some of the new settings for non xtecamdins and remove the obsoletes
- Marsupial: Compatibility update for php7 and Moodle 3.4
- Remove hub configuration
- Add GDPR support
Changes 18.04.20
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.2.8
- Updated local/agora
- Updated LangPacks
- Updated auth/googleauth2
- Updated mod/hvp
- Updated filter/wiris
- Fix the string comparision with CLOB reference field
- Filter the notifications from assigns in popup
Changes 17.07.04
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.2.3
- Updated local/clickedu
- Updated local/mobile
- Updated mod/geogebra
- Updated mod/questionnaire
- Updated mod/journal
Changes 17.05.23
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.1.6 (Trello #1591)
- mod/hvp: Updated to from 1.2 and fixed bug when downloading (Trello #1584)
- Updated all related wiris plugins
- mod/jclic: redesigned edit form parameters and replaced .jclic.zip references in some translations (Trello #1554)
- Updated mod/hotpot
- Removed progress block (Trello #1503)
- Updated LangPacks
- Updated report/coursequotas
- Updated mod/rcontent
Changes 17.04.24
---------------------------------------------------------------------------------------
- Updated mod/hotpot
- Updated all related wiris plugins
- Updated LangPacks
- Added Vicens Vives modules: one course format, two blocks and a local (Trello #1331)
- Added H5P module (Trello #1571)
- JClic: Fixed bug with time conversion
Changes 17.03.28
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.1.5 (Trello #1553)
- Updated all related wiris plugins (Trello #1560)
- Updated local/mobile
- Updated mod/hotpot
- Updated local/agora
- Updated LangPacks
Changes 17.02.13
---------------------------------------------------------------------------------------
- mod/jclic: Changed default report to detailed
- local/alexandriaimported: Reviewed some Catalan string
- Updated LangPacks
Changes 17.01.16
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.1.4 (Trello #1455)
- Updated filter/wiris and atto/wiris
- Updated local/alexandriaimporter: Repaired load more button
- Updated local/mobile
- Updated mod/questionnaire
- Updated mod/choicegroup
- Added completion progress bar block (block_completion_progress) to replace progress bar block
- Updated LangPacks
Changes 16.10.24
---------------------------------------------------------------------------------------
- mod/assign: Filtering in Assignment grading interface throws a javascript error - MDL-56300 (Trello #1392)
- report/coursequotas: Separate the report views to improve performance (Trello #1278)
- Updated mod/hotpot
- Updated mod/jclic
- local/alexandriaimporter: Added local plugin for importing courses and SCORM activities from Alexandria (Trello #1318)
- local/clickedu: Added local plugin for synchronizing with ClickEdu (Trello #913)
- Updated filter/wiris and atto/wiris (Trello #1403)
- Updated LangPacks
Changes 16.09.19
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.1.2 (Trello #1343)
- Updated LangPacks
- RSS: Fixed bug to show feed name when preferred is not specified - MDL-55886 (Trello #1338)
- Updated mod/choicegroup to fix detected problems with groups duplication (installed original version) (Trello #1341)
- Updated blocks/rgrade
- theme/xtec2: fixed problem when more than 5 languages
- report/coursequotas: Added icons for usability and improved performance (Trello #1278)
- mod/jclic: Added support for JClic HTML5 player (Trello #1294)
- Updated mod/hotpot
- local/rcommon: Fixed bug when filtering users from a course with group mode different from "No groups" (Trello #1353)
- login: Forgot password stopped working with loginhttps - MDL-55945 (Trello #1391)
Changes 16.09.07
---------------------------------------------------------------------------------------
- Updated LangPacks
- Updated mod/journal
- Updated auth/googleoauth2 to fix problems with login button (Trello #1321)
- mod/questionnaire: Fixed bug with CSV export (Trello #1322)
- gradelib: Fixed infinite loop "Recalculating grades" - MDL-55707 (Trello #1324)
- Applied path to avoid "Cannot find session record xxxxxxxxxxxxx for user Z, creating new session"
- report/coursequotas: Added filemanager (Trello #1278)
Changes 16.08.22
---------------------------------------------------------------------------------------
- Moodle upgraded to from 3.1.1 (Trello #1268)
- Updated LangPacks
- Updated auth/googleoauth2
- Updated blocks/progress
- Updated local/mobile
- Updated mod/choicegroup
- Updated mod/geogebra
- Updated mod/hotpot
- Updated mod/jclic
- Updated mod/journal
- Updated mod/questionnaire
- Updated mod/qv
- Updated all related wiris plugins
Changes 16.05.03
---------------------------------------------------------------------------------------
- Moodle upgraded to from 2.8.12 (Trello #1213)
- Updated local_mobile to 2.8.310
- Updated mod/questionaire
- Updated local/oauth
- local_agora: Changed default exceptionerror to avoid error in admin pages when datadir is not writable
- Zipped old log cron and mailer files until they will be deleted (Trello #1234)
- Updated mod/hotpot
Changes 16.05.03
---------------------------------------------------------------------------------------
- Added support to split data folders if necessary (Trello #1230)
Changes 16.03.14
---------------------------------------------------------------------------------------
- Updated LangPacks
- Added progress bar block and updated submodules in order to get progress bar working
- MDL-48778 assign: Use proper latest attempt for quickgrading prechecks
- Added delete temporary tables to cron
Changes 16.02.22
---------------------------------------------------------------------------------------
- Updated all related wiris plugins
- Moved local crons to Moodle tasks
- Updates to prepare for Moodle 3 version
- Updated Local Mobile
Changes 16.02.01
---------------------------------------------------------------------------------------
- Moodle upgraded to from 2.8.10
- Updated LangPacks
- isEOI is not defined anymore in general Àgora config
- Marsupial: Change context module retrieve only if course is not SITEID
- Agora mailer: Reviewed allowed_environments to put the correct CMO values for DES and INT
- Agora mailer: Change some address errors to warnings
- Updated Local Mobile
- Updated Hotpotatoes module
- Added a script to clean temporary tables
Changes 15.12.14
---------------------------------------------------------------------------------------
- Settings: Enable html5 audio and video
- Do not block cache if cacheconfig is not writable
- Marsupial: Solve problem opening activities in a popup from my_books
- Updated LangPacks
- Local Agora:
- Scripts: Repair undefined variable in filesystem cleanup
- Scripts: Add script to disable intranet login
- Updated Local Mobile
- Jclic: Changed version numbering method, now the first two numbers are the minimum Moodle required version
- QV: Changed version numbering method, now the first two numbers are the minimum Moodle required version
Changes 15.11.16
---------------------------------------------------------------------------------------
- Moodle upgraded to from 2.8.9
- Updated LangPacks
- AuthIW: auth db is automatically configured if is agora and a intranet is enabled
- Marsupial Rcontent: Solve problem solving reports
- Auth/googleoauth2: Solve password lost problem
- Local Bigdata: Add log of 2.7 to the default profile
- Local Agora:
- File Cleeaning stripts Add not matching table file deleting
- Scripts: Add categories to scripts
- Scripts: Add error message when a suboperation is not found
- Scripts: Add success message
- Geogebra:
- Add useBrowserForJS attribute
- Solve reset errors
- Remove fixed protocol in JavaScript file.
- Jclic:
- Solve reset errors
- Remove fixed protocol in JavaScript file.
- QV:
- Solve reset errors
- Remove fixed protocol in JavaScript file.
- Report CourseQuotas:
- Recount filesize, one file at a time
- Add diff info
- Add user files
- Update chart library
- Repair repository files
- 3rd party updated modules:
- Local Mobile
- Mod and qformat Hotpot
- Mod Questionnaire
Changes 15.10.09
---------------------------------------------------------------------------------------
- Moodle upgraded to from 2.8.8
- Delete eoicampus_wsdl_path setting
- Add more information to parse_query error (TO REPORT)
- Updated langpacks on 2015.09.22
- GoogleOauth2: Solve password lost problem
- Local Àgora:
- Update mailer to save log
- Change mailsender log folder from the databse
- Delete filename from mailsender log
- Remove temp cleaning, core task is now doing it
- Move cron to lib.php
- New script to cleanup files, WIP
- Now the main Moodle admin has to be the first of the list
- Add FMO migration script to help changes in Moodle
- Mailer changes:
- Limit retries of sending mails
- Reduce the log and add .invalid exception
- Local Bigdata:
- Move cron to lib.php
- Local Oauth:
- Move cron to lib.php
- Geogebra:
- Remove fixed protocol in JavaScript file.
- Theme XTEC2:
- Delete MDL-42634 solved in 2.8.8
- Solved warning on embedded
- Thirdparty changes:
- Rgrade: Add Units without activities to the unit selector
- Wiris modules updated to 3.54.1 2015.08.25
- Wiris Quizzes question types updated to 3.35.0 2015.08.25
- Updated Local Mobile module, Hotpot
- Updated OU quetion type modules
Changes 15.08.10
---------------------------------------------------------------------------------------
- Disabled marsupial as an independent service
- Updated Mailer WSDL's
- Adapt mobile css for the 2nd version of the app
Changes 15.07.20
---------------------------------------------------------------------------------------
- Moodle upgraded to from 2.8.7
- Avoid using global variable section to solve a bug on week format
- MARSUPIAL: Add new permission to allow users to change their own credentials only
- Only enabled modules has to be backup
- Reduce from 1 week to 1 the waiting time to purge temp files
- Set empty SMTP hosts to avoid overhead in sending mails
- Change locking from NFS to DB
- Add loglifetime setting for backup logs
- GEOGEBRA: Restore executing JS embedded in Geogebra files
Changes 15.06.18
---------------------------------------------------------------------------------------
- Moodle upgraded to from 2.8.6
- Hide some settings to non xtecadmins
- Set stasharguments by default in config.php
- Deleted participants as default course block
- Configured new Logging system
- Deleted patch to let teachers configure system cohorts
- Changed TinyMCE to Atto
- Deleted EOICampus
- Updated theme XTEC2 with new features:
- Solved advices cache
- Added nodes color scheme
- Added new user menu
- Style maintenance page and popup layout
- Upgraded fontawesome to 4.3.0
- Toggle block view by clicking on each header
- Increased block icon size
- Deleted supercollapse on the grader
- Added footer whatsapp and skype icons
- Added some extra atto modules:
- Font family
- Font size
- Wiris (added for Atto and deleted for tinyMCE)
- Updated modules:
- Marsupial to 2.7.0.0 with code and settings cleaning
- Jclic, Geogebra i QV to version v0.2.7 with events, code and settings cleaning
- Geogebra now admits HTML5
- GoogleOauth, Choicegroup, Wiris, OpenUniversity question modules, Hotpotatoes, Journal, Questionnaire
- Language packs
- Applied patches:
- MDL-49440 lib: Date picker duplicated week day names repaired
- MDL-49742 lib: Removed additional names on tables for sorting. (solved in 2.8.7)
Changes 15.05.19
---------------------------------------------------------------------------------------
- Moodle upgraded to from 2.6.10 to 2.6.11
- Added new activity choicegroup that allow group enrolling over a choice activity
- Allow tracking of activities in frontpage to users without role
- Update Mailer library to reduce log and improve stability
- Remove warnings in admin page
- Move sessioncookie to settings
- Update Marsupial to be enabled by default
- Added proxy settings
- Updated modules:
- Marsupial rcontent now has reports
- Hotpot, Moodle mobile, DD question types...
Changes 15.03.20
---------------------------------------------------------------------------------------
- Moodle upgraded to from 2.6.7 to 2.6.10
- Added airnotifier module in order to enable push notifications
- Enable Mobile additional features when enabling mobile webservices
- Xtec2 Theme: Created new advices pseudo-block
- Xtec2 Theme: Spelling revision
- Change translation of upload courses tool title
- Local Agora: Renewed mailer library to not depend on Moodle
- Local Agora: Enable service script is not autoregistering Moodle anymore
- Local Agora: Added script to edit advices pseudo-block
- Local Agora: Added script to delete orphaned assignments
- Mailer: Add debugging function to emmancipate from Moodle
- Question type ddimageortext: Solve error when showing more than one question in the same page
- Updated modules:
- All Language packs included
- Mobile
- Hot Potatoes
- Questionnaire
- Wiris Quizzes
- Jclic 0.2.5
- Add protocol recognision through wwwroot url for the applet
- Set JClic default settings to https
- Solved problem showing url on mod edit form
Changes 15.02.20
---------------------------------------------------------------------------------------
- MDL-49234 oracle: Remove variables passed by reference error
- Forum: Solved courseoverview patch on mymoodle page
- Now Agora is instalable if environment is LOCAL
- MDL-48980 Security: Always clean the result from min_get_slash_argument
- Simplify site-config
- Added function to save in the parent admin folder of moodle2
- Site config add suport to check id_moodle2 from db
- MARSUPIAL: Added one required library that can crash the import method
- LOCAL AGORA: Add new adware string to search
- LOCAL AGORA: Export bigdata profiles by name
- LOCAL AGORA: Scripts: Notificacion styles and debug
- LOCAL AGORA: Added function to save in the parent admin folder of moodle2
- LOCAL AGORA: Autocalculate mail log path
- LOCAL BIGDATA: Add weekday restriction, save on folder setting and hour restriction
- LOCAL BIGDATA: Solved problem calculating next cron date
- LOCAL BIGDATA: Solved bug on unexistant contexts
- LOCAL BIGDATA: Export bigdata profiles by name
- LOCAL OAUTH: Updated catalan and spanish strings
- LOCAL OAUTH: Some changes in the Client ID and Redirect help.
- LOCAL OAUTH: Added default values when creating provider and improved user interface to include help
- Updated Third party modules:
- Mobile
- Hot Potatoes
- JClic
- DDImageOrText
- DDMarker
- DDWtos
- XTEC2: Solved problem moving blocks
- XTEC2: Repaired a color in external link icon
- XTEC2: Change horizontal padding of #page from 20px to 30px
- XTEC2: Adding icons to notification status
Changes 15.01.28
---------------------------------------------------------------------------------------
- Moodle Upgraded to 2.6.7
- Marsupial: Solved error on credentials bulk
- Jclic: Solved error on viewing groupings reports
- Memcache performance problem repaired
- Journal: Performance improvements when journals have lots of entries
- Hide all assignments < 2.2 from adding
- Moved dberrors to portadata/moodle2 parent directory
- Moved rcommon log to portaldata directory
- Glossary: Solved problem searching when glossary have large entries (MDL-43816)
- XTEC2 theme: Solved margin in fixed student column on grader
- XTEC2 theme: Added external link class for links
- XTEC2 theme: Solved collapsed menu button
- XTEC2 theme: added classes to footer icons in order to be hidden by css
- Added Moodle Mobile Additional features to enable push notifications
- Added autoregister on moodle.org script
- Enhanced Enable service script with upgrading and registering
- Adware: New string added
- Module updates: HotPot, questionnaire, languagepacks
Changes 14.12.22