Skip to content

Commit 990c7fb

Browse files
author
Rafael Grigorian
committed
Released Version 1.1.3
1 parent b9799d9 commit 990c7fb

File tree

40 files changed

+64
-64
lines changed

40 files changed

+64
-64
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,6 @@
7878
- Fixed logout not working for custom admin frontend
7979
- TOTP class now being loaded properly on case-sensitive systems
8080
- Moved all controller actions to live under admin route
81+
82+
## Version 1.1.3
83+
- Fixed GH-7, password lifetime issue with Enterprise_Pci module on EE

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.2-orange.svg?style=for-the-badge)
6+
![](https://img.shields.io/badge/Version-1.1.3-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" >

conf/package.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,7 @@
3030
- The 2FA account can be setup for devices (something they have) using the Google Authenticator app, which is available for every platform including iPhone and Android.
3131
</description>
3232
<notes>
33-
- Refreshing config cache when saving 2fa settings
34-
- Fixed logout not working for custom admin frontend
35-
- TOTP class now being loaded properly on case-sensitive systems
36-
- Moved all controller actions to live under admin route
33+
- Fixed GH-7, password lifetime issue with Enterprise_Pci module on EE
3734
</notes>
3835
<authors>
3936
<author>

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.2",
2+
"version": "1.1.3",
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.2
7+
* @version 1.1.3
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.2
6+
* @version 1.1.3
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.2
7+
* @version 1.1.3
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.2
7+
* @version 1.1.3
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.2
7+
* @version 1.1.3
88
* @package JetRails® TwoFactor
99
* @category Manage
1010
* @author Rafael Grigorian - JetRails®

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* State.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.2
7+
* @version 1.1.3
88
* @package JetRails® TwoFactor
99
* @category Manage
1010
* @author Rafael Grigorian - JetRails®

0 commit comments

Comments
 (0)