diff --git a/README.md b/README.md new file mode 100644 index 0000000..0f73d6e --- /dev/null +++ b/README.md @@ -0,0 +1,48 @@ +# PDF GLPI plugin + +[![License](https://img.shields.io/github/license/pluginsGLPI/pdf.svg?&label=License)](https://github.com/pluginsGLPI/pdf/blob/main/LICENSE) +[![Project Status: Active](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active) +[![GitHub release](https://img.shields.io/github/release/pluginsGLPI/pdf.svg)](https://github.com/pluginsGLPI/pdf/releases) +[![GitHub build](https://travis-ci.org/pluginsGLPI/pdf.svg?)](https://travis-ci.org/pluginsGLPI/pdf/) + +![Screenshot](./docs/screenshots/pdf.gif) + +This plugin allow you to select and export informations of an equipment to PDF file. +- equipment types from GLPI +- equipment types from some plugins +- additional data from some plugins +- one or many object(s) in a file + +## Download + +Releases can be donwloaded on [GitHub](https://github.com/PluginsGLPI/pdf/releases). + +## Documentation + +We maintain a detailed [documentation](http://glpi-plugins.rtfd.io/en/latest/pdf/index.html). + +## Contact + +For notices about major changes and general discussion of pdf, subscribe to the [/r/glpi](https://www.reddit.com/r/glpi/) subreddit. +You can also chat with us via [@glpi on Telegram](https://t.me/glpien). + +## Professional Services + +![GLPI Network](./docs/glpi_network.png "GLPI network") + +The GLPI Network services are available through our [Partner's Network](http://www.teclib-edition.com/en/partners/). +We provide special training, bug fixes with editor subscription, contributions for new features, and more. + +Obtain a personalized service experience, associated with benefits and opportunities. + +## Contributing + +* Open a ticket for each bug/feature so it can be discussed +* Follow [development guidelines](http://glpi-developer-documentation.readthedocs.io/en/latest/plugins/index.html) +* Refer to [GitFlow](http://git-flow.readthedocs.io/) process for branching +* Work on a new branch on your own fork +* Open a PR that will be reviewed by a developer + +## Copying + +* **Code**: you can redistribute it and/or modify it under the terms of the GNU General Public License ([AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.html)). \ No newline at end of file diff --git a/docs/glpi_network.png b/docs/glpi_network.png new file mode 100644 index 0000000..ced8621 Binary files /dev/null and b/docs/glpi_network.png differ diff --git a/docs/screenshots/pdf.gif b/docs/screenshots/pdf.gif new file mode 100644 index 0000000..848e4ca Binary files /dev/null and b/docs/screenshots/pdf.gif differ diff --git a/setup.php b/setup.php index a72650e..3f18fde 100644 --- a/setup.php +++ b/setup.php @@ -109,9 +109,11 @@ function plugin_version_pdf() 'license' => 'GPLv3+', 'homepage' => 'https://github.com/yllen/pdf', 'minGlpiVersion' => '10.0.0', - 'requirements' => ['glpi' => ['min' => '10.0.0', - 'max' => '10.1.0', - ], + 'requirements' => [ + 'glpi' => [ + 'min' => '10.0.0', + 'max' => '10.0.99', + ], ], ]; }