Skip to content

Feature/multipleratings #128

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
03d29fb
setting for multiplemarks added
TamaroWalter Apr 4, 2023
a357fd4
1. feature added, multiple marks are now possible, feature not comple…
TamaroWalter Apr 5, 2023
b98a9de
comment added for marks setting in discussion.php
TamaroWalter Apr 6, 2023
d2d9d2c
multiplemarks-checkbox bug fixed
TamaroWalter Apr 6, 2023
5b04f0e
WIP: change button string if posts are marked
TamaroWalter Apr 17, 2023
f08df49
WIP: change button strings is not working
TamaroWalter Apr 18, 2023
0c6855d
feature problems solved, multiple marks are now really possible
TamaroWalter Apr 24, 2023
e3f2beb
merge conflicts fixed
TamaroWalter Apr 24, 2023
865c60f
revert problems fixed
TamaroWalter Apr 24, 2023
fe52f57
Revert "WIP: change button string if posts are marked"
TamaroWalter Apr 24, 2023
68609d6
Revert "comment added for marks setting in discussion.php"
TamaroWalter Apr 24, 2023
a781f29
mark button strings update on reload, only js still needed
TamaroWalter Apr 24, 2023
6671a63
js added to change action button strings. Feature ready for pull request
TamaroWalter Apr 25, 2023
5e11d7d
update 4.2
TamaroWalter May 8, 2023
5d3ccad
phpUnit issues fixed for 402 update
TamaroWalter May 8, 2023
32e14fb
phpdoc issues fixed
TamaroWalter May 8, 2023
8f94ae0
Merge branch 'master' into feature/multipleratings
NinaHerrmann May 9, 2023
08fd0f8
Merge branch 'feature/multipleratings' into update/Moodle_402
NinaHerrmann May 9, 2023
c8e31e2
Merge pull request #131 from learnweb/update/Moodle_402
NinaHerrmann May 9, 2023
4039656
code checker and phpdoc checker cleaning
TamaroWalter May 9, 2023
5a292ed
code cleaning
TamaroWalter May 9, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:

strategy:
matrix:
php: ['8.0']
moodle-branch: ['MOODLE_401_STABLE']
php: ['8.1']
moodle-branch: ['MOODLE_402_STABLE']
database: ['pgsql']

steps:
Expand Down Expand Up @@ -110,8 +110,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.0']
moodle-branch: ['MOODLE_311_STABLE', 'MOODLE_400_STABLE', 'MOODLE_401_STABLE']
php: ['8.0', '8.1']
moodle-branch: ['MOODLE_401_STABLE', 'MOODLE_402_STABLE']
database: ['mariadb', 'pgsql']
include:
- php: '7.4'
Expand All @@ -120,6 +120,18 @@ jobs:
- php: '7.4'
moodle-branch: 'MOODLE_39_STABLE'
database: 'pgsql'
- php: '8.0'
moodle-branch: 'MOODLE_311_STABLE'
database: 'mariadb'
- php: '8.0'
moodle-branch: 'MOODLE_311_STABLE'
database: 'pgsql'
- php: '8.0'
moodle-branch: 'MOODLE_400_STABLE'
database: 'mariadb'
- php: '8.0'
moodle-branch: 'MOODLE_400_STABLE'
database: 'pgsql'

steps:
- name: Start MariaDB
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/moodle-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
--data-urlencode "altdownloadurl=${ZIPURL}" \
--data-urlencode "releasenotes=${BODY}" \
--data-urlencode "releasenotesformat=4")
echo "::set-output name=response::${RESPONSE}"
echo "response=${RESPONSE}" >> $GITHUB_OUTPUT
- name: Evaluate the response
id: evaluate-response
env:
Expand Down
3 changes: 2 additions & 1 deletion amd/build/rating.min.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion amd/build/reviewing.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion amd/build/warnmodechange.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading