Skip to content

Commit def355e

Browse files
committed
Merge branch 'v2.1.0' into 'main'
userDefaults See merge request fluxlabs/ilias/plugins/EventHooks/UserDefaults!75
2 parents badea62 + e5d3474 commit def355e

23 files changed

Lines changed: 1330 additions & 449 deletions

.gitlab-ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
flux-publish-utils:
2+
stage: build
3+
image: docker-registry.fluxpublisher.ch/flux-publish-utils:latest
4+
script:
5+
- "false"
6+
only:
7+
- main

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [2.1.0]
4+
- Change: Upgrade composer dependencies
5+
- Change: Refactored UserDefaultsConfig
6+
- Change: Added publish-utils
7+
38
## [2.0.0]
49
- Add: ILIAS 7 Support
510
- Change: Upgrade composer dependencies

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ git clone https://github.com/fluxapps/UserDefaults.git UserDefaults
1111
```
1212
As ILIAS administrator go to "Administration->Plugins" and install/activate the plugin.
1313

14+
## ILIAS 7 core ilCtrl patch
15+
For make this plugin work with ilCtrl in ILIAS 7, you may need to patch the core, before you update the plugin (At your own risk)
16+
17+
Start at the plugin directory
18+
19+
./vendor/srag/dic/bin/ilias7_core_apply_ilctrl_patch.sh
20+
1421
## Contributing :purple_heart:
1522
Please ...
1623
1. ... register an account at https://git.fluxlabs.ch

composer.json

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
2-
"name": "srag-plugins/userdefaults",
3-
"description": "",
4-
"version": "2.0.0",
5-
"type": "library",
2+
"name": "fluxapp/user-defaults",
3+
"description": "ILIAS UserDefaults Plugin",
4+
"version": "2.1.0",
5+
"type": "plugin",
66
"keywords": [
7-
"ILIAS",
8-
"Plugin",
9-
"UserDefaults"
7+
"ilias",
8+
"fluxlabs",
9+
"user-defaults"
1010
],
1111
"license": "GPL-3.0-only",
1212
"authors": [
1313
{
1414
"name": "fluxlabs ag - lab burgdorf",
1515
"email": "support@fluxlabs.ch",
1616
"homepage": "https://fluxlabs.ch",
17-
"role": "Developer"
17+
"role": "Developer, Maintainer"
1818
}
1919
],
2020
"support": {
21-
"issues": "https://plugins.studer-raimann.ch/goto.php?target=uihk_srsu_PLUSERDEFAULTS"
21+
"issues": "https://git.fluxlabs.ch"
2222
},
2323
"require": {
24-
"php": ">=7.2",
24+
"php": ">=7.4",
2525
"ext-dom": "*",
2626
"ext-json": "*",
2727
"srag/activerecordconfig": ">=0.1.0",
@@ -44,8 +44,7 @@
4444
},
4545
"scripts": {
4646
"pre-autoload-dump": [
47-
"srag\\LibrariesNamespaceChanger\\LibrariesNamespaceChanger::rewriteLibrariesNamespaces",
48-
"srag\\LibrariesNamespaceChanger\\PHP72Backport::PHP72Backport"
47+
"srag\\LibrariesNamespaceChanger\\LibrariesNamespaceChanger::rewriteLibrariesNamespaces"
4948
]
5049
}
5150
}

composer.lock

Lines changed: 32 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)