Skip to content

Commit 4f05f8d

Browse files
author
Rafael Grigorian
authored
Released Version 1.1.0
* Fixed #93, Fixed #88 * Fixed #91 * Fixed #92 * Changes related to #88
1 parent d41409c commit 4f05f8d

File tree

136 files changed

+1118
-194
lines changed

Some content is hidden

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

136 files changed

+1118
-194
lines changed

.gitignore

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
# Files
12
.DS_Store
2-
yarn-error.log
3-
/.docker-sync/
4-
/node_modules/
5-
/public_html/
6-
/build/
7-
/dist/
3+
*.log
4+
*.tar.gz
5+
6+
# Directories
7+
.docker-sync
8+
node_modules
9+
public_html
10+
build
11+
dist

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
> Interact with popular Cloudflare features though Magento's backend portal.
33
44
![](https://img.shields.io/badge/License-MIT-orange.svg?style=for-the-badge)
5-
![](https://img.shields.io/badge/Version-1.0.3-orange.svg?style=for-the-badge)
5+
![](https://img.shields.io/badge/Version-1.1.0-orange.svg?style=for-the-badge)
66
![](https://img.shields.io/badge/Stability-Stable-orange.svg?style=for-the-badge)
77
![](https://img.shields.io/badge/Magento-1-orange.svg?style=for-the-badge)
88

@@ -31,4 +31,3 @@ This extension uses __Gulp__ as it's build system. Gulp is a package that can b
3131
## Docker Environment
3232

3333
This project comes with a [docker-compose.yml](docker-compose.yml) and a [docker-sync.yml](docker-sync.yml) file, which can be used to spin up a Magento 1 development environment. In order to use docker, please make sure you have **Docker**, **Docker Compose**, and **Docker Sync** installed. For information about configuring this docker environment, please refer to it's Github repository which can be found [here](https://github.com/jetrails/docker-magento-alpine).
34-

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.3",
2+
"version": "1.1.0",
33
"name": "magento-cloudflare",
44
"description": "Interact with popular Cloudflare features though Magento's backend portal",
55
"author": "Rafael Grigorian",

src/app/code/community/JetRails/Cloudflare/Block/Adminhtml/Dashboard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* methods that load and render tab contents. It also contains methods that
66
* help determine if the current store is configured with the supplied
77
* Cloudflare account.
8-
* @version 1.0.3
8+
* @version 1.1.0
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <[email protected]>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Block/Adminhtml/Dashboard/Section.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* folder. This block class has methods that give the template access to a
66
* valid form key for AJAX communications. This block class also returns a
77
* custom endpoint for every section based on the binded template's path.
8-
* @version 1.0.3
8+
* @version 1.1.0
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <[email protected]>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Block/Adminhtml/Dashboard/Tab.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This block class is used for tab template files. These template files
55
* use this block's helper methods in order to render all the sections that
66
* belong to said tab.
7-
* @version 1.0.3
7+
* @version 1.1.0
88
* @package JetRails® Cloudflare
99
* @author Rafael Grigorian <[email protected]>
1010
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Controller/Action.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This is a generic controller that is used within other controller classes
55
* in this module. It supplies many helper methods that the child classes
66
* can use which simplify the code.
7-
* @version 1.0.3
7+
* @version 1.1.0
88
* @package JetRails® Cloudflare
99
* @author Rafael Grigorian <[email protected]>
1010
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Controller/Getter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* behave as the getter method. Based on the controller name, it fetches the
66
* currently stored value though the interaction of the Cloudflare API and
77
* the controller's respective model.
8-
* @version 1.0.3
8+
* @version 1.1.0
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <[email protected]>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Controller/Toggle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* action. The main action in this class is the toggle action which takes
66
* the passed value and casts it into a boolean value. That value is then
77
* passed straight to the API model.
8-
* @version 1.0.3
8+
* @version 1.1.0
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <[email protected]>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Controller/Update.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This class inherits from the Getter class and therefore, has an index
55
* action. The main action in this class is the update action which simply
66
* passes the value straight to the API model.
7-
* @version 1.0.3
7+
* @version 1.1.0
88
* @package JetRails® Cloudflare
99
* @author Rafael Grigorian <[email protected]>
1010
* @copyright © 2018 JETRAILS, All rights reserved

0 commit comments

Comments
 (0)