From 846e91e2d8e71d2b0645beadfa6f47dfd00d1b8e Mon Sep 17 00:00:00 2001 From: "Martin Studer, fluxlabs ag" Date: Thu, 31 Mar 2022 14:48:41 -0400 Subject: [PATCH] added publish utils --- .gitlab-ci.yml | 8 +++++++- CHANGELOG.md | 3 +++ composer.json | 38 ++++++++------------------------------ plugin.php | 6 +++--- 4 files changed, 21 insertions(+), 34 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8b137891..bb3b1708 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1 +1,7 @@ - +flux-publish-utils: + stage: build + image: docker-registry.fluxpublisher.ch/flux-publish-utils:latest + script: + - "false" + only: + - main \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index b9016991..56f95622 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [6.0.1] +- Version for ILIAS 7 + ## [6.0.0] - Version for ILIAS 7 diff --git a/composer.json b/composer.json index 0aee575b..0721a024 100755 --- a/composer.json +++ b/composer.json @@ -1,47 +1,25 @@ { "name": "srag/plugins/livevoting", + "version": "6.0.1", "description": "ILIAS LiveVoting plugin", "type": "project", "keywords": [ "ILIAS", - "Plugin", + "fluxlabs", "LiveVoting" ], - "homepage": "https://github.com/studer-raimann/LiveVoting", + "homepage": "https://github.com/fluxapps/LiveVoting", "license": "GPL-3.0+", "authors": [ { - "name": "studer + raimann ag - Team Custom 1", - "email": "support-custom1@studer-raimann.ch", - "homepage": "https://studer-raimann.ch", - "role": "Developer" - }, - { - "name": "Nicolas Schaefli", - "email": "ns@studer-raimann.ch", - "homepage": "https://studer-raimann.ch", - "role": "Software Engineer" - }, - { - "name": "Fabian Schmid", - "email": "fs@studer-raimann.ch", - "homepage": "https://studer-raimann.ch", - "role": "Member of the Executive Board" - }, - { - "name": "Oskar Truffer", - "email": "ot@studer-raimann.ch", - "homepage": "https://studer-raimann.ch", - "role": "Project Manager, Software Engineer" - }, - { - "name": "Daniel Aemmer", - "email": "daniel.aemmer@phbern.ch", - "homepage": "https://www.phbern.ch" + "name": "fluxlabs ag", + "email": "support@fluxlabs.ch", + "homepage": "https://fluxlabs.ch", + "role": "Developer & Maintainer" } ], "support": { - "issues": "https://plugins.studer-raimann.ch/goto.php?target=uihk_srsu_PLLV" + "issues": "https://git.fluxlabs.ch" }, "require": { "endroid/qrcode": "^1.9", diff --git a/plugin.php b/plugin.php index 03923201..47e2b8b7 100755 --- a/plugin.php +++ b/plugin.php @@ -3,8 +3,8 @@ require_once __DIR__ . "/vendor/srag/dic/src/PHPVersionChecker.php"; $id = 'xlvo'; -$version = '6.0.0'; +$version = '6.0.1'; $ilias_min_version = '6.0'; $ilias_max_version = '7.999'; -$responsible = 'studer + raimann ag - Team Custom 1'; -$responsible_mail = 'support-custom1@studer-raimann.ch'; +$responsible = 'fluxlabs ag'; +$responsible_mail = 'support@fluxlabs.ch';