Skip to content

Commit 4c3b902

Browse files
author
Rafael Grigorian
committed
Released Version 1.1.2
1 parent ecb11ee commit 4c3b902

File tree

49 files changed

+80
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+80
-69
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,9 @@
7272

7373
## Version 1.1.1
7474
- Added enterprise compatibility
75+
76+
## Version 1.1.2
77+
- Refreshing config cache when saving 2fa settings
78+
- Fixed logout not working for custom admin frontend
79+
- TOTP class now being loaded properly on case-sensitive systems
80+
- Moved all controller actions to live under admin route

COMPATIBILITY.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
| 1.9.3.6 | 12/15/2017 | SUCCESS | Rafael Grigorian |
2929
| 1.9.3.7 | 12/15/2017 | SUCCESS | Rafael Grigorian |
3030
| 1.9.3.8 | 03/01/2018 | SUCCESS | Rafael Grigorian |
31+
| 1.9.3.9 | 09/05/2018 | SUCCESS | Rafael Grigorian |
3132

3233
## Magento Commerce 1.x
3334

@@ -36,3 +37,4 @@
3637
| 1.13.1.0 | 03/01/2018 | SUCCESS | Rafael Grigorian |
3738
| 1.14.3.7 | 03/01/2018 | SUCCESS | Rafael Grigorian |
3839
| 1.14.3.8 | 03/01/2018 | SUCCESS | Rafael Grigorian |
40+
| 1.14.3.9 | 09/05/2018 | SUCCESS | Rafael Grigorian |

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.1-orange.svg?style=for-the-badge)
6+
![](https://img.shields.io/badge/Version-1.1.2-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: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@
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-
- Added enterprise compatibility
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
3437
</notes>
3538
<authors>
3639
<author>

design/User Guide.sketch

-13.6 KB
Binary file not shown.

docs/User Guide.pdf

62 Bytes
Binary file not shown.

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.1",
2+
"version": "1.1.2",
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: 2 additions & 2 deletions
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.1
7+
* @version 1.1.2
88
* @package JetRails® TwoFactor
99
* @category Configure
1010
* @author Rafael Grigorian - JetRails®
@@ -40,4 +40,4 @@ public function getHeaderText () {
4040
return Mage::helper ("twofactor")->__("Configure 2FA Settings");
4141
}
4242

43-
}
43+
}

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

Lines changed: 2 additions & 2 deletions
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.1
6+
* @version 1.1.2
77
* @package JetRails® TwoFactor
88
* @category Edit
99
* @author Rafael Grigorian - JetRails®
@@ -58,4 +58,4 @@ protected function _prepareForm () {
5858
return parent::_prepareForm ();
5959
}
6060

61-
}
61+
}

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

Lines changed: 2 additions & 2 deletions
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.1
7+
* @version 1.1.2
88
* @package JetRails® TwoFactor
99
* @category Manage
1010
* @author Rafael Grigorian - JetRails®
@@ -28,4 +28,4 @@ public function __construct () {
2828
$this->_removeButton ("add");
2929
}
3030

31-
}
31+
}

0 commit comments

Comments
 (0)