Skip to content

Commit ad51a8e

Browse files
author
Daniel Thies
committed
Release 1.8.2
1 parent 3b3adc4 commit ad51a8e

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/moodle-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [pull_request]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-24.04
88

99
services:
1010
postgres:

classes/plugininfo/videotimeplugin.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ public function available_updates() {
5353
case 'pro':
5454
$info = [
5555
'maturity' => MATURITY_STABLE,
56-
'release' => '1.8.1',
57-
'version' => 2024050701,
56+
'release' => '1.8.2',
57+
'version' => 2024050702,
5858
];
5959
break;
6060
case 'repository':
6161
$info = [
6262
'maturity' => MATURITY_STABLE,
63-
'release' => '1.8',
63+
'release' => '1.8.2',
6464
];
6565
if ($CFG->branch < 403) {
66-
$info['version'] = 2024050600;
66+
$info['version'] = 2024050601;
6767
} else {
68-
$info['version'] = 2024050700;
68+
$info['version'] = 2024050701;
6969
}
7070
break;
7171
}

plugin/videojs/tests/behat/videotimeplugin_videojs_file.feature

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ Feature: Add file to Video Time
2222

2323
@javascript @_file_upload
2424
Scenario: Upload MP4
25-
Given I am logged in as "teacher"
26-
And I am on the "Video1" "videotime activity editing" page
27-
And I upload "mod/videotime/plugin/videojs/tests/fixtures/test.mp4" file to "Media file" filemanager
28-
When I press "Save and display"
29-
Then I should not see "Editing"
25+
Given I am logged in as "teacher"
26+
And I am on the "Video1" "videotime activity editing" page
27+
And I upload "mod/videotime/plugin/videojs/tests/fixtures/test.mp4" file to "Media file" filemanager
28+
When I press "Save and display"
29+
Then I should not see "Editing"
3030

3131
@javascript @_file_upload
3232
Scenario: Upload WebM
33-
Given I am logged in as "teacher"
34-
And I am on the "Video1" "videotime activity editing" page
35-
And I upload "mod/videotime/plugin/videojs/tests/fixtures/test.webm" file to "Media file" filemanager
36-
When I press "Save and display"
37-
Then I should not see "Editing"
33+
Given I am logged in as "teacher"
34+
And I am on the "Video1" "videotime activity editing" page
35+
And I upload "mod/videotime/plugin/videojs/tests/fixtures/test.webm" file to "Media file" filemanager
36+
When I press "Save and display"
37+
Then I should not see "Editing"

version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
defined('MOODLE_INTERNAL') || die();
2626

2727
$plugin->component = 'mod_videotime';
28-
$plugin->release = '1.8.1';
29-
$plugin->version = 2024050701;
28+
$plugin->release = '1.8.2';
29+
$plugin->version = 2024050702;
3030
$plugin->requires = 2023042400;
3131
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)