Skip to content

Commit ee2858f

Browse files
committed
Bump to 1.4.8 + add contributing guidelines
1 parent a2d1781 commit ee2858f

File tree

6 files changed

+22
-4
lines changed

6 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
## Change Log
22

3+
### 1.4.8
4+
- NEW: allow to have custom product types
5+
- NEW: make image generation size parameter customizable to be able to save ressources when already in cache
6+
- UPDATED: remove root category when fetching product categories
7+
- UPDATED: rewrite image class to be able to log the error when not being able to generate it
8+
- UPDATED: Handle display price with AND without tax
9+
- FIX: price issues
10+
- FIX: Safari issue with instant search
11+
312
### 1.4.7
413

514
- NEW: added an option to disable the seo request

CONTRIBUTING.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
How to contribute?
2+
3+
Basic flow:
4+
5+
- Fork this repository
6+
- Make the fix/change/feature
7+
- Commit
8+
- Open a pull request on the **develop** branch
9+
- We will then review your pull request and makes sure your fix helps the community.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This extension replaces the default search of Magento with a typo-tolerant, fast
77

88
See features and benefits of [Algolia Search Extension for Magento](https://www.algolia.com/with/magento).
99

10-
![Latest version](https://img.shields.io/badge/latest-1.4.7-green.svg)
10+
![Latest version](https://img.shields.io/badge/latest-1.4.8-green.svg)
1111
![Magento 1.6.2](https://img.shields.io/badge/magento-1.6.2-blue.svg)
1212
![Magento 1.7.1](https://img.shields.io/badge/magento-1.7.1-blue.svg)
1313
![Magento 1.8.1](https://img.shields.io/badge/magento-1.8.1-blue.svg)

code/Helper/Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Algolia_Algoliasearch_Helper_Data extends Mage_Core_Helper_Abstract
2525

2626
public function __construct()
2727
{
28-
\AlgoliaSearch\Version::$custom_value = " Magento (1.4.7)";
28+
\AlgoliaSearch\Version::$custom_value = " Magento (1.4.8)";
2929

3030
$this->algolia_helper = Mage::helper('algoliasearch/algoliahelper');
3131

code/etc/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<config>
33
<modules>
44
<Algolia_Algoliasearch>
5-
<version>1.4.7</version>
5+
<version>1.4.8</version>
66
</Algolia_Algoliasearch>
77
</modules>
88
<frontend>

code/etc/system.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<algoliasearch translate="label" module="algoliasearch">
55
<label>
66
<![CDATA[
7-
Algolia Search 1.4.7
7+
Algolia Search 1.4.8
88
<style>
99
.algoliasearch-admin-menu span {
1010
padding-left: 38px !important;

0 commit comments

Comments
 (0)