Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
lucionescu committed Jul 14, 2023
1 parent 7ad6952 commit e8a6721
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 118 deletions.
9 changes: 2 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
.idea
../.idea
.DS_Store
Esparks/.DS_Store
logs
.env
.env.production
vendor
cypress.env.json
Lunar/.DS_Store
2 changes: 1 addition & 1 deletion Controller/Index/Log.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private function log() {
}


$date = date(LOGS_DATE_FORMAT, ($post["date"] / 1000));
$date = date(LOGS_DATE_FORMAT, (int)($post["date"] / 1000));
$id = $post["context"]["custom"]["quoteId"];
$filename = LOGS_DIR_NAME . DIRECTORY_SEPARATOR . $date . "___" . $id . ".log";

Expand Down
2 changes: 1 addition & 1 deletion Model/Ui/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
class ConfigProvider implements ConfigProviderInterface {
const PLUGIN_CODE = 'paylikepaymentmethod';
const MAGENTO_PAYLIKE_VERSION = '1.6.0';
const MAGENTO_PAYLIKE_VERSION = '1.6.1';
protected $scopeConfig;
protected $_cart;
protected $_assetRepo;
Expand Down
107 changes: 0 additions & 107 deletions Setup/UpgradeData.php

This file was deleted.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"paylike/php-api": "^2.0"
},
"type": "magento2-module",
"version": "1.6.0",
"version": "1.6.1",
"license": [
"GPL-3.0-or-later"
],
Expand Down
2 changes: 1 addition & 1 deletion etc/adminhtml/system.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<field id="active" translate="label" type="select" sortOrder="1" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Enable Paylike</label>
<source_model>Magento\Config\Model\Config\Source\Yesno</source_model>
<frontend_class>paylike-version version-1.6.0</frontend_class>
<frontend_class>paylike-version version-1.6.1</frontend_class>
</field>

<field id="title" translate="label" type="text" sortOrder="2" showInDefault="1" showInWebsite="1" showInStore="1">
Expand Down

0 comments on commit e8a6721

Please sign in to comment.