diff --git a/fpconsumables.xml b/fpconsumables.xml
index 0a2c33d..a31687a 100644
--- a/fpconsumables.xml
+++ b/fpconsumables.xml
@@ -8,15 +8,19 @@
- FP Consumables solves that problem and introduces new tab that lists all consumables that were given to a user.
This makes GLPI more "user-centric".
Changelog:
2015.12
- plugin is now compatible with GLPI 0.90
2017.04
- plugin is now compatible with GLPI 9.1.2
- fixed a bug with consumable returning to storage still being visible on the list
Company website]]>
+ FP Consumables solves that problem and introduces new tab that lists all consumables that were given to a user.
This makes GLPI more "user-centric".
Changelog:
2015.12
- plugin is now compatible with GLPI 0.90
2017.04
- plugin is now compatible with GLPI 9.1.2
- fixed a bug with consumable returning to storage still being visible on the list
2017.05
- plugin is now compatible with GLPI 9.1.3
Company website]]>
https://github.com/FutureProcessing/glpi-fpconsumables
- https://github.com/FutureProcessing/glpi-fpconsumables/archive/v.1.1.1.tar.gz
+ https://github.com/FutureProcessing/glpi-fpconsumables/archive/v.1.2.tar.gz
Future Processing
+
+ 1.2
+ 9.1.3
+
1.1.1
9.1.2
diff --git a/setup.php b/setup.php
index 0f7ce30..4e5b5d4 100644
--- a/setup.php
+++ b/setup.php
@@ -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',
@@ -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;
}