Andrew Nicols
0ec23aca48
Merge branch 'MDL-83501-url-encode-nginx-paths' of https://github.com/rajandangi/moodle
2024-11-21 11:47:59 +08:00
Jun Pataleta
94b89dd9d4
Merge branch 'MDL-83290-main' of https://github.com/meirzamoodle/moodle
2024-11-21 11:46:08 +08:00
Jun Pataleta
e5a241a02c
Merge branch 'MDL-71257-main' of https://github.com/junpataleta/moodle
2024-11-21 11:33:32 +08:00
David Woloszyn
2be5e7e18d
MDL-71257 dml: Rename master/slave to primary/replica
2024-11-21 11:17:51 +08:00
Andrew Nicols
3d24572e55
Merge branch 'MDL-83391-main' of https://github.com/cwarwicker/moodle
2024-11-21 10:51:52 +08:00
Paul Holden
2770dd65f1
Merge branch 'MDL-83570-main-fix' of https://github.com/junpataleta/moodle into main
2024-11-20 12:28:49 +00:00
Jun Pataleta
7f122657cf
MDL-83570 tiny_recordrtc: Use the correct upgrade_plugin_savepoint()
...
And move the release upgrade line comment before the upgrade step.
2024-11-20 18:06:32 +08:00
Huong Nguyen
3b2311a4c3
Merge branch 'MDL-83570-main' of https://github.com/meirzamoodle/moodle
2024-11-20 16:10:57 +07:00
Jun Pataleta
d5190768cb
Merge branch 'MDL-72077-ro-debug' of https://github.com/catalyst/moodle
2024-11-20 15:24:47 +08:00
meirzamoodle
392ed9c627
MDL-83570 tiny_recordrtc: Turn the audio bitrate input to Select field
...
The current code may have a bug. If users set the audio bit rate to
a non-supported value, such as 1000,
Firefox will display an error in the console,
while Chrome will create the recorded audio file successfully,
but it will have no sound. I tested this on Ubuntu 24.04.
The minimum bit rate threshold varies depending on the audio format.
During my tests with Firefox version 131.0.3, which uses
the audio/Ogg format, I found that the minimum supported value
is 24000. In Chrome 129.0.6668.70, which uses the audio/MP4 format,
the minimum supported value is 2400.
Due to these differences, I decided to change the input from
a text field to a select field, offering options that support both
Ogg and MP4 audio formats.
The database conversion for the old value has been provided in
the lib/db/upgrade.php. The script will find the closest match to
the current data and update it accordingly.
2024-11-20 09:59:14 +07:00
Jun Pataleta
fcb39d60a9
Merge branch 'MDL-81521-main' of https://github.com/andrewnicols/moodle
2024-11-19 15:15:17 +08:00
Huong Nguyen
c6353ef018
Merge branch 'MDL-81823-main' of https://github.com/roland04/moodle
2024-11-19 10:28:33 +07:00
Huong Nguyen
7a9bd90e2c
Merge branch 'MDL-83610' of https://github.com/marinaglancy/moodle
2024-11-19 09:27:55 +07:00
Marina Glancy
947684505e
MDL-83610 behat: allow to set date fields in groups
2024-11-18 10:36:38 +00:00
meirzamoodle
a0f57612ee
MDL-83290 dml: Remove "ORDER BY" from the $sort
2024-11-18 16:07:57 +07:00
Jun Pataleta
198f0d26d8
Merge branch 'MDL-83502-main' of https://github.com/ferranrecio/moodle
2024-11-18 14:36:58 +08:00
Tim Hunt
68d369917e
MDL-70556 core db: change course fullname to 1333 chars
...
This is mainly for the benefit of multilang users.
As well as changing the database schema, it is also necessary to change
where this is inforced in PHP code (forms, web services). This was missed
when shortname was changed from 100 to 255 chars some time ago, but I have
fixed that here.
Note, I have not changed the legacy mnet code, since as far as I am aware
that is deprecated.
2024-11-15 15:28:23 +00:00
Andrew Nicols
a6acb015a3
MDL-81521 core: Update all possibly data providers to be static
...
Note: Some data providers could not be automatically be converted to
being static. These will be handled in a separate issue.
2024-11-15 12:50:55 +08:00
Huong Nguyen
093a2034b6
NOBUG: Add upgrade notes
2024-11-15 09:21:07 +07:00
Huong Nguyen
94568bc5e0
Merge branch 'MDL-81509_final-deprecation-of-task_base-is_blocking-and-set_blocking' of https://github.com/ziegenberg/moodle
2024-11-14 11:07:45 +07:00
Huong Nguyen
43784b0d98
Merge branch 'MDL-46739_main' of https://github.com/marxjohnson/moodle
2024-11-14 09:26:43 +07:00
Huong Nguyen
a97260296d
Merge branch 'MDL-83185-main' of https://github.com/laurentdavid/moodle
2024-11-13 14:25:42 +07:00
Huong Nguyen
86908e8aa9
Merge branch 'MDL-80689' of https://github.com/timhunt/moodle
2024-11-13 14:00:25 +07:00
Laurent David
fbe420fc26
MDL-83185 core_courseformat: Refresh cache on group change
...
* When we add users to a group (or remove them), we should refresh
the course index cache so it stays in sync with what the user
can actually see.
2024-11-11 13:17:27 +01:00
ferran
1f7faa941b
MDL-83185 core_courseformat: Allow global state cache invalidation
2024-11-11 13:17:26 +01:00
Tim Hunt
8f9b57d5d3
MDL-46739 user preferences: change value column to TEXT.
...
Other similar columns config.value and config_plugins.value are TEXT, so
it is surprising that this column is different, and that has lead to
bugs in the past, so we should make it consistent.
2024-11-11 11:33:52 +00:00
Daniel Ziegenberg
c14810e7d1
MDL-81509 tasks: Final deprecation of blocking tasks
...
Final deprecation of task_base::is_blocking and task_base::set_blocking.
Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
2024-11-08 11:05:58 +01:00
Huong Nguyen
9e8268a28c
NOBUG: Add upgrade notes
2024-11-08 13:56:10 +07:00
Jun Pataleta
05c7d005c1
Merge branch 'MDL-72293' of https://github.com/paulholden/moodle
2024-11-07 11:59:41 +08:00
Huong Nguyen
9cda7c9706
Merge branch 'MDL-80953-main' of https://github.com/srobotta/moodle
2024-11-07 10:39:09 +07:00
Huong Nguyen
3fedbab7d1
Merge branch 'MDL-83316-main' of https://github.com/lameze/moodle
2024-11-07 09:26:21 +07:00
sam marshall
152a37cb59
MDL-83316 Behat: New step allows system clock change
2024-11-06 13:59:09 +00:00
Jun Pataleta
f6b21e289b
Merge branch 'MDL-83394-main' of https://github.com/davewoloszyn/moodle
2024-11-06 14:01:04 +08:00
David Woloszyn
c4ed556f0a
MDL-83394 tiny_aiplacement: Use revised prompt for alt text
2024-11-06 14:23:34 +11:00
Mikel Martín
7ee2b0d355
MDL-81823 theme_boost: Refactor .rounded-[sm|lg] usages for BS5
...
- Add .rounded-1 and .rounded-3 to the Boostratp 5 bridge SCSS file
- Replace .rounded-[sm|lg] occurrences with .rounded-[1|3]
2024-11-05 14:42:14 +01:00
Stephan Robotta
333d2e48ee
MDL-80953 tiny: customize allowed HTML tags and attributes
2024-11-05 12:26:19 +01:00
Jun Pataleta
89d9c78fca
Merge branch 'MDL-78453-main' of https://github.com/meirzamoodle/moodle
2024-11-05 10:57:39 +08:00
david adamson
b86e98eaa6
MDL-72077 dml: Readonly connection debugging
2024-11-05 08:43:23 +11:00
meirzamoodle
536d9ff4ee
MDL-78453 tiny_aiplacement: Increase the image alt text max length
2024-11-04 22:41:40 +07:00
meirzamoodle
5e259cc587
MDL-78453 tiny_media: Increase the image alt text max length
2024-11-04 22:41:40 +07:00
Jun Pataleta
bf18f379f7
Merge branch 'MDL-83154-main' of https://github.com/davewoloszyn/moodle
2024-11-04 16:48:39 +08:00
Andrew Nicols
b8c3c13467
MDL-82824 core: Order the PSR4 component list
2024-11-04 11:58:47 +08:00
Andrew Nicols
a8c6201dbf
MDL-82824 core: Correct thirdparty entry for slim
2024-11-04 11:52:10 +08:00
Andrew Nicols
670121daa3
MDL-82824 core: Add missing composer/PSR for various libs
...
Add missing aws-sdk composer.json
Add missing composer/PSR4 for SimplePie
Add missing composer/PSR4 for others
Add missing composer/PSR4 for markdown
Add missing composer/PSR4 for PHP-CSS-Parser
Add missing composer/PSR4 for Mustache
Add missing composer/PSR4 for RTLCSS
Add missing composer/PSR4 for SCSSPHP
Add missing composer/PSR4 for OpenSpout
Add missing composer/PSR4 for LTI
Add missing composer/PSR4 for GeoPattern
Add missing composer/PSR4 for CFPropertylist
Add missing composer/PSR4 for ZipStream
Add missing composer/PSR4 for PSR-20
Add missing composer/PSR4 for phpxmlrpc
Add missing composer/PSR4 for WebAuthn
2024-11-04 11:52:07 +08:00
Andrew Nicols
09e4f29fbd
MDL-82824 core: Add unit test to ensure completeness of Autoloader
2024-11-04 11:49:47 +08:00
Andrew Nicols
16bacf8134
MDL-82824 core: Add/correct missing autoload functions
2024-11-04 11:49:47 +08:00
Andrew Nicols
7fe199c58b
MDL-82824 core: Standardise PSR-4 paths to remove trailing /
2024-11-04 11:49:47 +08:00
Andrew Nicols
e918f86624
MDL-82824 core: Standardise MaxMind classes
2024-11-04 11:49:47 +08:00
Huong Nguyen
6a1feb87bd
NOBUG: Add upgrade notes
2024-11-01 14:28:56 +07:00
David Woloszyn
e4b39e764d
MDL-83154 hub: Add model to AI usage data
2024-11-01 10:39:31 +11:00