Skip to content

Commit

Permalink
Version 3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
luigifab committed Oct 2, 2016
1 parent 98d2aa1 commit c5b6a8c
Show file tree
Hide file tree
Showing 15 changed files with 48 additions and 48 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ For more information, go to https://www.luigifab.fr/magento/versioning (IPv6 is

This repository is a mirror. To install the module, please use the extension key available in the documentation. If you like, take some of your time to improve the translations, go to https://bit.ly/2HyCCEc.

Version 3.4.2 released on 31/07/2016.
Version 3.4.3 released on 02/10/2016.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/**
* Created J/07/02/2013
* Updated V/08/07/2016
* Version 10
* Updated M/23/08/2016
* Version 11
*
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info>
* https://redmine.luigifab.info/projects/magento/wiki/versioning
Expand Down Expand Up @@ -60,7 +60,7 @@ private function getStoreId() {

private function getLocaleName($lang) {

$locales = Mage::app()->getLocale()->getOptionLocales();
$locales = Mage::getSingleton('core/locale')->getOptionLocales();

foreach ($locales as $locale) {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/**
* Created V/23/05/2014
* Updated D/01/06/2014
* Version 2
* Updated M/13/09/2016
* Version 3
*
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info>
* https://redmine.luigifab.info/projects/magento/wiki/versioning
Expand All @@ -22,6 +22,6 @@ class Luigifab_Versioning_Block_Adminhtml_Config_Help extends Mage_Adminhtml_Blo

public function render(Varien_Data_Form_Element_Abstract $element) {
$url = 'https://redmine.luigifab.info/projects/magento/wiki/versioning';
return '<p class="box">Luigifab/Versioning '.$this->helper('versioning')->getVersion().' <a href="'.$url.'" onclick="window.open(this.href); return false;" style="float:right;">'.$url.'</a></p>';
return sprintf('<p class="box">Luigifab/Versioning %s <a href="%s" onclick="window.open(this.href); return false;" style="float:right;">%2$s</a></p>', $this->helper('versioning')->getVersion(), $url);
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/**
* Created V/06/04/2012
* Updated S/23/07/2016
* Version 24
* Updated V/16/09/2016
* Version 27
*
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info>
* https://redmine.luigifab.info/projects/magento/wiki/versioning
Expand All @@ -26,7 +26,7 @@ public function __construct() {

$this->setId('history_grid');
$this->setDefaultSort('date');
$this->setDefaultDir('DESC');
$this->setDefaultDir('desc');

$this->setUseAjax(true);
$this->setSaveParametersInSession(false);
Expand Down Expand Up @@ -99,7 +99,7 @@ protected function _prepareColumns() {
'header' => $this->__('Date'),
'index' => 'date',
'type' => 'datetime',
'format' => Mage::app()->getLocale()->getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT, true),
'format' => Mage::getSingleton('core/locale')->getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT),
'align' => 'center',
'width' => '150px',
'sortable' => false,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/**
* Created S/03/12/2011
* Updated S/23/07/2016
* Version 45
* Updated V/16/09/2016
* Version 48
*
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info>
* https://redmine.luigifab.info/projects/magento/wiki/versioning
Expand All @@ -26,7 +26,7 @@ public function __construct() {

$this->setId('versioning_grid');
$this->setDefaultSort('date');
$this->setDefaultDir('DESC');
$this->setDefaultDir('desc');

$this->setUseAjax(false);
$this->setSaveParametersInSession(false);
Expand Down Expand Up @@ -92,7 +92,7 @@ protected function _prepareColumns() {
'header' => $this->__('Date'),
'index' => 'date',
'type' => 'datetime',
'format' => Mage::app()->getLocale()->getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT, true),
'format' => Mage::getSingleton('core/locale')->getDateTimeFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT),
'align' => 'center',
'width' => '150px',
'filter' => false,
Expand Down
20 changes: 9 additions & 11 deletions app/code/community/Luigifab/Versioning/Model/Scm/Git.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Created S/03/12/2011
* Updated V/06/05/2016
* Updated V/16/09/2016
* Version 29
*
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info>
Expand Down Expand Up @@ -143,7 +143,7 @@ public function getCommitCollection() {
return $this->items;
}

private function populateCols($collection) {
private function populateCols($commits) {

// » http://www.redmine.org/projects/redmine/repository/entry/trunk/app/helpers/repositories_helper.rb
// heads.sort! { |head1, head2| head1.to_s <=> head2.to_s }
Expand All @@ -158,22 +158,20 @@ private function populateCols($collection) {

$space = -1;

foreach ($collection as $commit) {

foreach ($commits as $commit) {
foreach ($commit->getRefs() as $ref) {

if (strpos($ref, 'tag:') === false)
$space = $this->indexCols($space + 1, $commit, $collection);
$space = $this->indexCols($space + 1, $commit, $commits);
}
}

if ($space < 0)
$space = $this->indexCols(0, $collection->getFirstItem(), $collection);
$space = $this->indexCols(0, $commits->getFirstItem(), $commits);

return $space; // recalculé par Luigifab_Versioning_Block_Adminhtml_Repository::getGridHtml
}

private function indexCols($space, $commit, $collection) {
private function indexCols($space, $commit, $commits) {

// » http://www.redmine.org/projects/redmine/repository/entry/trunk/app/helpers/repositories_helper.rb
// def index_head(space, commit, commits_by_scmid)
Expand All @@ -197,7 +195,7 @@ private function indexCols($space, $commit, $collection) {
// » la même chose avec les commentaires de donove
// » http://www.developpez.net/forums/d1510217/autres-langages/autres-langages/ruby/traduction-ruby-php-graphique-git/
// def index_head(space, commit, commits_by_scmid)
// # commits_by_scmid serait ta variable $collection dans ta version PHP
// # commits_by_scmid serait ta variable $commits dans ta version PHP
// # Avec la valeur de commit.scmid comme référence
// stack = [ [space, commits_by_scmid[commit.scmid]] ]
// max_space = space
Expand Down Expand Up @@ -245,7 +243,7 @@ private function indexCols($space, $commit, $collection) {

foreach ($commit->getParents() as $rev) {

$parent = $collection->getItemByColumnValue('revision', $rev);
$parent = $commits->getItemByColumnValue('revision', $rev);

if (!is_object($parent)) {
$space += 1;
Expand Down Expand Up @@ -292,7 +290,7 @@ public function getCurrentDiff($from = null, $to = null) {
// have their Type changed (T), are Unmerged (U), are Unknown (X), or have had their pairing Broken (B)
if (version_compare($this->getSoftwareVersion(), '1.8.4', '>='))
$command = 'git diff -U1 --diff-filter=MTUXB --ignore-all-space --ignore-blank-lines';
else if (version_compare($this->getSoftwareVersion(), '1.5.0', '>='))
else if (version_compare($this->getSoftwareVersion(), '1.5', '>='))
$command = 'git diff -U1 --diff-filter=MTUXB --ignore-all-space';
else
$command = 'git diff -U1 --diff-filter=MTUXB';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/**
* Created S/03/12/2011
* Updated S/23/07/2016
* Version 41
* Updated M/23/08/2016
* Version 42
*
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info>
* https://redmine.luigifab.info/projects/magento/wiki/versioning
Expand Down Expand Up @@ -150,7 +150,7 @@ public function upgradeAction() {
$upgrade = Mage::getSingleton('versioning/upgrade');
$upgrade->disableAllBuffer();

$lang = substr(Mage::app()->getLocale()->getLocaleCode(), 0, 2);
$lang = substr(Mage::getSingleton('core/locale')->getLocaleCode(), 0, 2);
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
echo "\n",'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="',$lang,'" lang="',$lang,'">';
echo "\n",'<head>';
Expand Down
4 changes: 2 additions & 2 deletions app/code/community/Luigifab/Versioning/etc/config.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
* Created S/03/12/2011
* Updated V/01/07/2016
* Updated W/21/09/2016
* Version 28
*
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info>
Expand All @@ -21,7 +21,7 @@
<config>
<modules>
<Luigifab_Versioning>
<version>3.4.2</version>
<version>3.4.3</version>
</Luigifab_Versioning>
</modules>
<global>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/**
* Created S/09/02/2013
* Updated V/08/07/2016
* Version 18
* Updated M/23/08/2016
* Version 19
*
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info>
* https://redmine.luigifab.info/projects/magento/wiki/versioning
Expand All @@ -18,7 +18,7 @@
* GNU General Public License (GPL) for more details.
*/

$lang = substr(Mage::app()->getLocale()->getLocaleCode(), 0, 2);
$lang = substr(Mage::getSingleton('core/locale')->getLocaleCode(), 0, 2);

?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $lang ?>" lang="<?php echo $lang ?>" style="height:100%;">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/**
* Created S/20/02/2016
* Updated V/08/07/2016
* Version 6
* Updated M/23/08/2016
* Version 7
*
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info>
* https://redmine.luigifab.info/projects/magento/wiki/versioning
Expand All @@ -18,7 +18,7 @@
* GNU General Public License (GPL) for more details.
*/

$lang = substr(Mage::app()->getLocale()->getLocaleCode(), 0, 2);
$lang = substr(Mage::getSingleton('core/locale')->getLocaleCode(), 0, 2);

?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $lang ?>" lang="<?php echo $lang ?>" style="height:100%;">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/**
* Created S/20/02/2016
* Updated V/08/07/2016
* Version 6
* Updated M/23/08/2016
* Version 7
*
* Copyright 2011-2016 | Fabrice Creuzot (luigifab) <code~luigifab~info>
* https://redmine.luigifab.info/projects/magento/wiki/versioning
Expand All @@ -18,7 +18,7 @@
* GNU General Public License (GPL) for more details.
*/

$lang = substr(Mage::app()->getLocale()->getLocaleCode(), 0, 2);
$lang = substr(Mage::getSingleton('core/locale')->getLocaleCode(), 0, 2);

?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $lang ?>" lang="<?php echo $lang ?>" style="height:100%;">
Expand Down
8 changes: 4 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package>
<name>Luigifab_Versioning</name>
<version>3.4.2</version>
<version>3.4.3</version>
<stability>stable</stability>
<license uri="https://opensource.org/licenses/gpl-2.0">GPL</license>
<channel>luigifab</channel>
Expand All @@ -10,9 +10,9 @@
<description>Synchronize your Magento installation with your version control system.</description>
<notes>Oh yeah!</notes>
<authors><author><name>Fabrice Creuzot</name><user>luigifab</user><email>code@luigifab.info</email></author></authors>
<date>2016-07-26</date>
<time>19:06:30</time>
<contents><target name="magecommunity"><dir name="Luigifab"><dir name="Versioning"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><file name="Heading.php" hash="ce601da081daed3294d8ddf6079e9e9e"/><file name="Help.php" hash="03583141ce11e0c2f2a002c5ec136f3a"/></dir><dir name="History"><file name="Grid.php" hash="4aec5fc13492379b4ed0b51b0f920b8f"/></dir><file name="History.php" hash="512076b757e04e6e6f1fbb389fadf57c"/><dir name="Repository"><file name="Grid.php" hash="20568c51f6a44d0a0c485d9149c05521"/></dir><file name="Repository.php" hash="ee283ed31a8033506be9a8041407200d"/><file name="Status.php" hash="ad28b87b42dfe285b2c2ce3fb709a6c0"/></dir></dir><dir name="Helper"><file name="Data.php" hash="48215aafb8ba48cee71a13d4ad53a98a"/></dir><dir name="Model"><file name="Demo.php" hash="d1906d2552bc5a8e559568e05a713eba"/><file name="History.php" hash="cd00aca866f2259b74edec21b1f0e3da"/><file name="Observer.php" hash="998a077494c00dba843f80c6357e897e"/><dir name="Scm"><file name="Git.php" hash="f21a6ec813227c95a9f03c1b17d881fc"/></dir><dir name="Source"><file name="Number.php" hash="30e68f4154a43dec557449b1b2e46194"/><file name="Type.php" hash="90a7d6e0b01509d196d375e1a1292e7e"/></dir><file name="Upgrade.php" hash="e0567ec23f3c654f7873398a3ee90e96"/></dir><dir name="controllers"><dir name="Versioning"><file name="RepositoryController.php" hash="211ddd01276f68aa00fa7bf9bd51ef2f"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="b8c6d6c0b76a0de95db895ed3817be61"/><file name="config.xml" hash="71a4fa17c70ba5c886ab2c9e04f94b72"/><file name="system.xml" hash="400a60b490e46c90fbdbee25452ee3e5"/></dir><file name="license" hash="09c79391f5ec909e9bd0ad62c151b6d5"/><file name="readme" hash="4910e185a27706fc529137013207579b"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="luigifab"><file name="versioning.xml" hash="d947a836bb475b0dd6a455b52812ee72"/></dir></dir><dir name="template"><dir name="luigifab"><dir name="versioning"><file name="confirm.phtml" hash="ed0e5eb6775d8f0cabd3b6c2bbccdc47"/><file name="forgotpassword.phtml" hash="4032bdca7631fa9b6f04a86a3d83dd29"/><file name="login.phtml" hash="2193d95066f797b5fa81d05cac1f0641"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="luigifab"><dir name="versioning"><file name="bzr.png" hash="21ad649857791fdb29bc195cea17862a"/><file name="darcs.png" hash="9bc3107a5648f318fde8a13230206c37"/><file name="git.png" hash="59f1ea6a722b1d6389de81cdca40b2ab"/><file name="hg.png" hash="4166da56378e51b3f100fbe15b4f3af2"/><file name="info.svg" hash="830dbaf488c1800927c51cf911996fca"/><file name="mars-sunset.jpg" hash="bbc16598c54e35d810535233368e0a7c"/><file name="svn.png" hash="9cd58e8afade30c1c2e85a3ac66c05f9"/></dir></dir></dir><dir name="css"><dir name="luigifab"><dir name="versioning"><file name="styles.css" hash="2f7b301e2570f29650fff210c196daf4"/><file name="styles.min.css" hash="6cd4f2bc5ab6c4ef17b84d75e648dadb"/></dir></dir></dir><dir name="js"><dir name="luigifab"><dir name="versioning"><file name="app.js" hash="8dbfb8d6bb15a7db393b2696fb638251"/><file name="app.min.js" hash="2b9a49fea96ec81242bda340b5bd9b59"/><file name="innersvg.min.js" hash="5e829a51a983502815fded1c77f82c8f"/><file name="raphael.min.js" hash="9d623bade0d0d7dfeeeaf6a292e06bec"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Luigifab_Versioning.xml" hash="3da3f56f7f9ea64c6d0a1ecb0856b0ce"/></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Luigifab_Versioning.csv" hash="229757c9d02d886227531227b94bce0c"/></dir><dir name="fr_CA"><file name="Luigifab_Versioning.csv" hash="229757c9d02d886227531227b94bce0c"/></dir></target><target name="mageweb"><dir name="errors"><file name="404.php" hash="b35fdc0b2325939cb468501f536226b9"/><file name="503.php" hash="4034c978a5e02f0f0b879f2c4fb0617b"/><dir name="config"><file name="en.readme.txt" hash="9557bb9c6b4a941d92aaef6d2aa07f16"/><file name="fr.lisezmoi.txt" hash="4ff543b8148df24e004d2be830bb7453"/></dir><dir name="locale"><file name="en_US.csv" hash="07e096b3a9803c48782508877a593a53"/><file name="fr_FR.csv" hash="fbf58f88474c88160014533a0bd96daf"/></dir><file name="page.phtml" hash="f7b8b97970a91663e49b596d7ac8efa0"/><file name="processor.php" hash="4cf491fc59f30451e31a22c6d294a01c"/><file name="report.php" hash="7bb5dcdf7370de7177314499b093933d"/><file name="upgrade.php" hash="75ddf63c960c5c17303c14d2186bf539"/></dir></target></contents>
<date>2016-09-21</date>
<time>19:07:56</time>
<contents><target name="magecommunity"><dir name="Luigifab"><dir name="Versioning"><dir name="Block"><dir name="Adminhtml"><dir name="Config"><file name="Heading.php" hash="a0ee3d0b1f25e143099947c833449a28"/><file name="Help.php" hash="33ee68bb79308ed5eb7386e1b4dc90d2"/></dir><dir name="History"><file name="Grid.php" hash="bc4658856c493cb6c54ae94e597daa76"/></dir><file name="History.php" hash="512076b757e04e6e6f1fbb389fadf57c"/><dir name="Repository"><file name="Grid.php" hash="c3b0c980231a5103b8cf56f4697bce73"/></dir><file name="Repository.php" hash="ee283ed31a8033506be9a8041407200d"/><file name="Status.php" hash="ad28b87b42dfe285b2c2ce3fb709a6c0"/></dir></dir><dir name="Helper"><file name="Data.php" hash="48215aafb8ba48cee71a13d4ad53a98a"/></dir><dir name="Model"><file name="Demo.php" hash="d1906d2552bc5a8e559568e05a713eba"/><file name="History.php" hash="cd00aca866f2259b74edec21b1f0e3da"/><file name="Observer.php" hash="998a077494c00dba843f80c6357e897e"/><dir name="Scm"><file name="Git.php" hash="fdf291107ffedfc81b48099204e713fc"/></dir><dir name="Source"><file name="Number.php" hash="30e68f4154a43dec557449b1b2e46194"/><file name="Type.php" hash="90a7d6e0b01509d196d375e1a1292e7e"/></dir><file name="Upgrade.php" hash="e0567ec23f3c654f7873398a3ee90e96"/></dir><dir name="controllers"><dir name="Versioning"><file name="RepositoryController.php" hash="126ab067649d557be5de2e3cf0f57bff"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="b8c6d6c0b76a0de95db895ed3817be61"/><file name="config.xml" hash="3bd1f279cad30e04c17a11677702bc88"/><file name="system.xml" hash="400a60b490e46c90fbdbee25452ee3e5"/></dir><file name="license" hash="09c79391f5ec909e9bd0ad62c151b6d5"/><file name="readme" hash="4910e185a27706fc529137013207579b"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="luigifab"><file name="versioning.xml" hash="d947a836bb475b0dd6a455b52812ee72"/></dir></dir><dir name="template"><dir name="luigifab"><dir name="versioning"><file name="confirm.phtml" hash="c6a52e1487b9d5c4576a098807346642"/><file name="forgotpassword.phtml" hash="f6314444af4f1a35d3563af939990640"/><file name="login.phtml" hash="a7b7948bb17651667edad66f5f055faa"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="luigifab"><dir name="versioning"><file name="bzr.png" hash="21ad649857791fdb29bc195cea17862a"/><file name="darcs.png" hash="9bc3107a5648f318fde8a13230206c37"/><file name="git.png" hash="59f1ea6a722b1d6389de81cdca40b2ab"/><file name="hg.png" hash="4166da56378e51b3f100fbe15b4f3af2"/><file name="info.svg" hash="830dbaf488c1800927c51cf911996fca"/><file name="mars-sunset.jpg" hash="bbc16598c54e35d810535233368e0a7c"/><file name="svn.png" hash="9cd58e8afade30c1c2e85a3ac66c05f9"/></dir></dir></dir><dir name="css"><dir name="luigifab"><dir name="versioning"><file name="styles.css" hash="56f35798894948dd48b6cc1ea7a8701a"/><file name="styles.min.css" hash="c9fffcd419bf4d999f4aac6daaa846d2"/></dir></dir></dir><dir name="js"><dir name="luigifab"><dir name="versioning"><file name="app.js" hash="8dbfb8d6bb15a7db393b2696fb638251"/><file name="app.min.js" hash="8a7d0dd837b7dfcacd857ef701027a3a"/><file name="innersvg.min.js" hash="5e829a51a983502815fded1c77f82c8f"/><file name="raphael.min.js" hash="9d623bade0d0d7dfeeeaf6a292e06bec"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Luigifab_Versioning.xml" hash="3da3f56f7f9ea64c6d0a1ecb0856b0ce"/></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Luigifab_Versioning.csv" hash="229757c9d02d886227531227b94bce0c"/></dir><dir name="fr_CA"><file name="Luigifab_Versioning.csv" hash="229757c9d02d886227531227b94bce0c"/></dir></target><target name="mageweb"><dir name="errors"><file name="404.php" hash="b35fdc0b2325939cb468501f536226b9"/><file name="503.php" hash="4034c978a5e02f0f0b879f2c4fb0617b"/><dir name="config"><file name="en.readme.txt" hash="9557bb9c6b4a941d92aaef6d2aa07f16"/><file name="fr.lisezmoi.txt" hash="4ff543b8148df24e004d2be830bb7453"/></dir><dir name="locale"><file name="en_US.csv" hash="07e096b3a9803c48782508877a593a53"/><file name="fr_FR.csv" hash="fbf58f88474c88160014533a0bd96daf"/></dir><file name="page.phtml" hash="f7b8b97970a91663e49b596d7ac8efa0"/><file name="processor.php" hash="4cf491fc59f30451e31a22c6d294a01c"/><file name="report.php" hash="7bb5dcdf7370de7177314499b093933d"/><file name="upgrade.php" hash="75ddf63c960c5c17303c14d2186bf539"/></dir></target></contents>
<compatible/>
<dependencies><required><php><min>5.5.0</min><max>7.9.9</max></php></required></dependencies>
</package>
Loading

0 comments on commit c5b6a8c

Please sign in to comment.