From 616edfc4b91b76a4385a0eea1ab403e8bb1a2ec7 Mon Sep 17 00:00:00 2001 From: Mikron Date: Mon, 15 May 2017 15:34:59 +0200 Subject: [PATCH] Plugin is now compatible with GLPI up to 9.1.3 --- fpsoftware.xml | 8 ++++++-- setup.php | 6 +++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/fpsoftware.xml b/fpsoftware.xml index 1e4ef14..4ef4f3e 100644 --- a/fpsoftware.xml +++ b/fpsoftware.xml @@ -8,17 +8,21 @@ - It changes how software/license asset looks like by providing new tab to license where you can assign users to software and another tab to software so you can see all users using the software (no matter which licenses they are using).
In general this plugin makes GLPI more user-oriented instead of PC-oriented.

Changelog:

2015.12:

- Licenses - Users tab now shows proper per user license usage and groups PCs owned by a user;
- "Affected Computers" can show how many licenses are assigned to both users and computers (please read manual on our GitHub)
- plugin is now compatible with GLPI 0.90

2017.04:

- plugin is now compatible with GLPI 9.1.2

Company website]]>
+ It changes how software/license asset looks like by providing new tab to license where you can assign users to software and another tab to software so you can see all users using the software (no matter which licenses they are using).
In general this plugin makes GLPI more user-oriented instead of PC-oriented.

Changelog:

2015.12:

- Licenses - Users tab now shows proper per user license usage and groups PCs owned by a user;
- "Affected Computers" can show how many licenses are assigned to both users and computers (please read manual on our GitHub)
- plugin is now compatible with GLPI 0.90

2017.04:

- plugin is now compatible with GLPI 9.1.2

2017.05:

- plugin is now compatible with GLPI 9.1.3

Company website]]>
https://github.com/FutureProcessing/glpi-fpsoftware - https://github.com/FutureProcessing/glpi-fpsoftware/archive/v1.1.zip + https://github.com/FutureProcessing/glpi-fpsoftware/archive/v1.2.zip https://github.com/FutureProcessing/glpi-fpsoftware/issues https://github.com/FutureProcessing/glpi-fpsoftware/blob/master/README.md Future Processing + + 1.2 + 9.1.3 + 1.1 9.1.2 diff --git a/setup.php b/setup.php index ad62755..aebe89e 100755 --- a/setup.php +++ b/setup.php @@ -45,7 +45,7 @@ function plugin_version_fpsoftware() { return array( 'name' => "FP Software", - 'version' => '1.1.0', + 'version' => '1.2.0', 'author' => 'Future Processing', 'license' => 'GPLv2+', 'homepage' => 'http://www.future-processing.com', @@ -64,8 +64,8 @@ function plugin_version_fpsoftware() */ function plugin_fpsoftware_check_prerequisites() { - if (version_compare(GLPI_VERSION, '0.84', 'lt') || version_compare(GLPI_VERSION, '9.1.2', 'gt')) { - echo "This plugin requires GLPI >= 0.84 and GLPI <= 9.1.2"; + if (version_compare(GLPI_VERSION, '0.84', 'lt') || version_compare(GLPI_VERSION, '9.1.3', 'gt')) { + echo "This plugin requires GLPI >= 0.84 and GLPI <= 9.1.3"; return false; }