Skip to content

Commit

Permalink
Plugin is now compatible with GLPI up to 9.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mikron-ia committed May 15, 2017
1 parent 32187fe commit 4a5022d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions fpconsumables.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,19 @@
<en><![CDATA[GLPI plugin that allows you to preview consumables at user profile page.]]></en>
</short>
<long>
<en><![CDATA[Current solution for Consumables does not allow to verify which consumables were given to a user.<br/>FP Consumables solves that problem and introduces new tab that lists all consumables that were given to a user.<br/>This makes GLPI more "user-centric".<br/><br/>Changelog:<br/><br/>2015.12<br/>- plugin is now compatible with GLPI 0.90<br/><br/>2017.04<br/>- plugin is now compatible with GLPI 9.1.2<br/>- fixed a bug with consumable returning to storage still being visible on the list<br/><br/><a href="http://www.future-processing.com">Company website</a>]]></en>
<en><![CDATA[Current solution for Consumables does not allow to verify which consumables were given to a user.<br/>FP Consumables solves that problem and introduces new tab that lists all consumables that were given to a user.<br/>This makes GLPI more "user-centric".<br/><br/>Changelog:<br/><br/>2015.12<br/>- plugin is now compatible with GLPI 0.90<br/><br/>2017.04<br/>- plugin is now compatible with GLPI 9.1.2<br/>- fixed a bug with consumable returning to storage still being visible on the list<br/><br/>2017.05<br/>- plugin is now compatible with GLPI 9.1.3<br/><br/><a href="http://www.future-processing.com">Company website</a>]]></en>
</long>
</description>
<homepage>https://github.com/FutureProcessing/glpi-fpconsumables</homepage>
<download>https://github.com/FutureProcessing/glpi-fpconsumables/archive/v.1.1.1.tar.gz</download>
<download>https://github.com/FutureProcessing/glpi-fpconsumables/archive/v.1.2.tar.gz</download>
<authors>
<author>Future Processing</author>
</authors>
<versions>
<version>
<num>1.2</num>
<compatibility>9.1.3</compatibility>
</version>
<version>
<num>1.1.1</num>
<compatibility>9.1.2</compatibility>
Expand Down
6 changes: 3 additions & 3 deletions setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
function plugin_version_fpconsumables()
{
return array('name' => "FP Consumables",
'version' => '1.1.1',
'version' => '1.2.0',
'author' => 'Future Processing',
'license' => 'GPLv2+',
'homepage' => 'http://www.future-processing.com',
Expand All @@ -62,8 +62,8 @@ function plugin_version_fpconsumables()
*/
function plugin_fpconsumables_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;
}

Expand Down

0 comments on commit 4a5022d

Please sign in to comment.