Skip to content

Commit f733aa1

Browse files
committed
Released Version 1.1.5
1 parent 7d05f43 commit f733aa1

File tree

40 files changed

+42
-39
lines changed

40 files changed

+42
-39
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,6 @@
8686
- Fixed GH-11, Admin Base URL Missing From Admin Email
8787
- Fixed GH-12, Email Is Sent To Inactive Admin Users On Ban
8888
- Fixed GH-13, Replace 'mt_rand' With 'random_int'
89+
90+
## Version 1.1.5
91+
- Merged PR-28, Replacing QR code provider, thanks @marcogruhl!

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
![](https://img.shields.io/badge/Magento-1-orange.svg?style=for-the-badge)
55
![](https://img.shields.io/badge/License-MIT-orange.svg?style=for-the-badge)
6-
![](https://img.shields.io/badge/Version-1.1.4-orange.svg?style=for-the-badge)
6+
![](https://img.shields.io/badge/Version-1.1.5-orange.svg?style=for-the-badge)
77
![](https://img.shields.io/badge/Stability-Stable-orange.svg?style=for-the-badge)
88

99
<p align="center" >

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jetrails/magento-twofactor",
33
"description": "User based 2FA enablement for admin users in Magento 1.x",
44
"type": "magento-module",
5-
"version": "1.1.4",
5+
"version": "1.1.5",
66
"license": "MIT",
77
"homepage": "https://github.com/jetrails/magento-twofactor",
88
"authors": [

conf/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<extends/>
1111
<summary>The JetRails 2FA plugin adds an extra layer of security to your Magento store. User-based 2FA enablement ensures that admin users are following best security practices.</summary>
1212
<description>https://github.com/jetrails/magento-twofactor</description>
13-
<notes>Released Version 1.1.4</notes>
13+
<notes>Released Version 1.1.5</notes>
1414
<authors>
1515
<author>
1616
<name>Rafael Grigorian</name>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.4",
2+
"version": "1.1.5",
33
"name": "magento-twofactor",
44
"description": "User based 2FA enablement for admin users in Magento 1.x",
55
"author": "Rafael Grigorian",

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Configure/Edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Edit.php - This class exists to simply tell Magento's grid system where to look for the
55
* proper controller for the configure page. It also specifies the proper block group within
66
* the constructor.
7-
* @version 1.1.4
7+
* @version 1.1.5
88
* @package JetRails® TwoFactor
99
* @category Configure
1010
* @author Rafael Grigorian - JetRails®

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Configure/Edit/Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Form.php - This class initializes the form, field-set, and form fields that will exist on the
55
* configure page. All information is set in the _prepareForm method.
6-
* @version 1.1.4
6+
* @version 1.1.5
77
* @package JetRails® TwoFactor
88
* @category Edit
99
* @author Rafael Grigorian - JetRails®

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Manage/Container.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Container.php - This class exists to simply tell Magento's grid system where to look for the
55
* proper controller for the configure page. It also specifies the proper block group within
66
* the constructor.
7-
* @version 1.1.4
7+
* @version 1.1.5
88
* @package JetRails® TwoFactor
99
* @category Manage
1010
* @author Rafael Grigorian - JetRails®

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Manage/Container/Grid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Grid.php - This class defines what collection to use for the grid collection. It also
55
* defines all the columns for the grid widget. Additionally it defines all the mass-action
66
* options for the widget grid.
7-
* @version 1.1.4
7+
* @version 1.1.5
88
* @package JetRails® TwoFactor
99
* @category Container
1010
* @author Rafael Grigorian - JetRails®

src/app/code/community/JetRails/TwoFactor/Block/Adminhtml/Renderer/Manage/Address.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Address.php - This class is a renderer class that is used with the grid widget's columns.
55
* These classes are used to load information from the authentication model using the admin
66
* user's id.
7-
* @version 1.1.4
7+
* @version 1.1.5
88
* @package JetRails® TwoFactor
99
* @category Manage
1010
* @author Rafael Grigorian - JetRails®

0 commit comments

Comments
 (0)