Copernica_MarketingSoftware - Version 3.1.2

Version Notes

Release Notes - Copernica - Version 3.1.2

Bug



  • [COPE-213] - Copernica sync valt stil

  • [COPE-215] - Foutmelding bij synchroniseren



Improvement



  • [COPE-208] - Let CURL handle SSL completely


Download this release

Release Info

Developer Cream
Extension Copernica_MarketingSoftware
Version 3.1.2
Comparing to
See all releases


Code changes from version 3.1.1 to 3.1.2

app/code/community/Copernica/MarketingSoftware/Model/Observer.php CHANGED
@@ -203,12 +203,7 @@ class Copernica_MarketingSoftware_Model_Observer
203
 
204
  if ($email) {
205
  Mage::getModel('marketingsoftware/queue_item')
206
- ->setObject(array(
207
- 'customerInfo' => array(
208
- 'id' => $customerId,
209
- 'storeView' => $storeView,
210
- 'email' => $email
211
- ), 'quoteId' => $quote->getId()))
212
  ->setCustomer($customerId)
213
  ->setName('quote')
214
  ->setAction('remove')
203
 
204
  if ($email) {
205
  Mage::getModel('marketingsoftware/queue_item')
206
+ ->setObject(array('storeView' => $storeView, 'quoteId' => $quote->getId(), 'customerId' => $customerId))
 
 
 
 
 
207
  ->setCustomer($customerId)
208
  ->setName('quote')
209
  ->setAction('remove')
app/code/community/Copernica/MarketingSoftware/Model/Queue/Event/Customer.php CHANGED
@@ -119,7 +119,7 @@ class Copernica_MarketingSoftware_Model_Queue_Event_Customer extends Copernica_M
119
  */
120
  public function actionRemove()
121
  {
122
- $object = $this->getObject();
123
 
124
  if (property_exists($object, 'email') && property_exists($object, 'storeId')) {
125
  $store = Mage::getModel('core/store')->load($object->storeId);
119
  */
120
  public function actionRemove()
121
  {
122
+ $object = $this->_getObject();
123
 
124
  if (property_exists($object, 'email') && property_exists($object, 'storeId')) {
125
  $store = Mage::getModel('core/store')->load($object->storeId);
app/code/community/Copernica/MarketingSoftware/Model/Queue/Event/Factory.php CHANGED
@@ -50,7 +50,7 @@ class Copernica_MarketingSoftware_Model_Queue_Event_Factory
50
 
51
  $action = ucfirst($queueItem->getAction());
52
 
53
- switch (get_class($queueItem->getObject()))
54
  {
55
  case "Copernica_MarketingSoftware_Model_Abstraction_Quote":
56
  $classname = "marketingsoftware/queue_event_quote".$action;
50
 
51
  $action = ucfirst($queueItem->getAction());
52
 
53
+ switch (get_class($queueItem->_getObject()))
54
  {
55
  case "Copernica_MarketingSoftware_Model_Abstraction_Quote":
56
  $classname = "marketingsoftware/queue_event_quote".$action;
app/code/community/Copernica/MarketingSoftware/Model/Queue/Event/Quote.php CHANGED
@@ -60,9 +60,9 @@ class Copernica_MarketingSoftware_Model_Queue_Event_Quote extends Copernica_Mark
60
  */
61
  public function actionRemove()
62
  {
63
- $object = $this->getObject();
64
 
65
- if (!$object->customerId || !is_numeric($object->customerId)) {
66
  return false;
67
  }
68
 
@@ -73,7 +73,7 @@ class Copernica_MarketingSoftware_Model_Queue_Event_Quote extends Copernica_Mark
73
 
74
  $profileId = Mage::helper('marketingsoftware/api')->getProfileId(array(
75
  'id' => $customerEntity->fetchId(),
76
- 'storeView' => $customerEntity->fetchStoreView(),
77
  'email' => $customerEntity->fetchEmail()
78
  ));
79
 
60
  */
61
  public function actionRemove()
62
  {
63
+ $object = $this->_getObject();
64
 
65
+ if (!$object->customerId || !is_numeric($object->customerId) || !$object->storeView) {
66
  return false;
67
  }
68
 
73
 
74
  $profileId = Mage::helper('marketingsoftware/api')->getProfileId(array(
75
  'id' => $customerEntity->fetchId(),
76
+ 'storeView' => $object->storeView,
77
  'email' => $customerEntity->fetchEmail()
78
  ));
79
 
app/code/community/Copernica/MarketingSoftware/Model/Queue/Event/Subscription.php CHANGED
@@ -22,7 +22,7 @@ class Copernica_MarketingSoftware_Model_Queue_Event_Subscription extends Coperni
22
  */
23
  public function actionRemove()
24
  {
25
- $object = $this->getObject();
26
 
27
  $profileLinkedFields = Mage::helper('marketingsoftware/config')->getLinkedCustomerFields();
28
 
22
  */
23
  public function actionRemove()
24
  {
25
+ $object = $this->_getObject();
26
 
27
  $profileLinkedFields = Mage::helper('marketingsoftware/config')->getLinkedCustomerFields();
28
 
app/code/community/Copernica/MarketingSoftware/Model/Queue/Event/View.php CHANGED
@@ -36,7 +36,7 @@ class Copernica_MarketingSoftware_Model_Queue_Event_View extends Copernica_Marke
36
  */
37
  public function actionAdd()
38
  {
39
- $object = $this->_queueItem->getObject();
40
 
41
  if (!$object->customerId || !is_numeric($object->customerId) || !$object->productId || !is_numeric($object->productId) || !$object->viewedAt || !is_numeric($object->viewedAt)) {
42
  return false;
36
  */
37
  public function actionAdd()
38
  {
39
+ $object = $this->_getObject();
40
 
41
  if (!$object->customerId || !is_numeric($object->customerId) || !$object->productId || !is_numeric($object->productId) || !$object->viewedAt || !is_numeric($object->viewedAt)) {
42
  return false;
app/code/community/Copernica/MarketingSoftware/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Copernica_MarketingSoftware>
5
- <version>3.1.1</version>
6
  </Copernica_MarketingSoftware>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Copernica_MarketingSoftware>
5
+ <version>3.1.2</version>
6
  </Copernica_MarketingSoftware>
7
  </modules>
8
  <global>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Copernica_MarketingSoftware</name>
4
- <version>3.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
@@ -10,14 +10,28 @@
10
  <description>When you install the integration, all contact, order and shop cart data from Magento will be automatically synchronized and stored in Copernica. By synchronizing data between your Magento webshop and Copernica, you are able to set up targeted email campaigns. For example you can consider emailing customers with abandoned shopcarts automatically every week. Your contacts will only receive information relevant to them, which will make them come back to your shop time and again. The available integration is also compatible with the Magento Enterprise edition.&#xD;
11
  &#xD;
12
  Please note that this extension does not work with PHP 5.4.X. and should be run with the Magento system requirements in mind.</description>
13
- <notes>[COPE-199] - Bug in Magento Extensie&#xD;
14
- [COPE-202] - Validation not working correctly on some fields&#xD;
15
- [COPE-203] - Ingelogde klanten kunnen geen producten verwijderen&#xD;
16
- [COPE-207] - Foutmelding bij installeren module nieuwe installatie</notes>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  <authors><author><name>Cream</name><user>creaminternet</user><email>info@cream.nl</email></author></authors>
18
- <date>2015-02-23</date>
19
- <time>21:14:48</time>
20
- <contents><target name="magecommunity"><dir name="Copernica"><dir name="MarketingSoftware"><dir name="Block"><dir name="Adminhtml"><dir name="Marketingsoftware"><file name="Accesstoken.php" hash="2196942b0b6c6727854e360126831a41"/><file name="Export.php" hash="a8a1203c12602345f9b3dd249ec77216"/><file name="Link.php" hash="4be8ea5a022ab5ab705862ce3d74b9ad"/><file name="Settings.php" hash="f18848ba6a75106d8bf6863c0a91dc80"/><file name="Sync.php" hash="10191fd99632e43a2df9b9372a487280"/></dir></dir></dir><dir name="Controller"><file name="Action.php" hash="8c89215b082dbf0e68ff8454d1e0eca9"/></dir><file name="Exception.php" hash="5be0f3715157b3b05c9471a1aeef75d1"/><dir name="Helper"><dir name="Api"><file name="Abstract.php" hash="f4d61c76a1659eda7456fcf180884408"/><file name="Builder.php" hash="200daf757d512f2844e98463f564e3e0"/><file name="Validator.php" hash="e9c81cbbf6c147ca0b8437d3d10f8c46"/></dir><file name="Api.php" hash="71e4c4c9d1a4dcf62d03170a7d4dd66a"/><file name="Config.php" hash="6cdf2bf007ac35d11718ab1080e24764"/><file name="Data.php" hash="5ee3dc0e876edfa560a00f859e465b15"/><file name="DataWriter.php" hash="562cd6afe278dd8200a025d74a7cd1e1"/><file name="Profile.php" hash="8f1375c1a2a49176bbf4390f24a6d8c3"/><dir name="Rest"><file name="Request.php" hash="4230d69607d84a934b31623d4d551d41"/></dir></dir><dir name="Model"><dir name="Abandoned"><file name="Cart.php" hash="e9f9b0e533a3c96c45fb079ae5344d7a"/><dir name="Carts"><file name="Processor.php" hash="bf88d2983fd7896c306fe5977a51f7fa"/></dir></dir><dir name="Abstraction"><file name="Address.php" hash="6d9cc361b47f54c60055a1b4c1416124"/><file name="Attributes.php" hash="1302fd4317be556d9b4b57a4d7ceed48"/><file name="Customer.php" hash="02f7134f354c2480f90a1f32a4d8c983"/><file name="Name.php" hash="fccb94d66e34f8d68cdf2db34ff983ff"/><dir name="Order"><dir name="Item"><file name="Options.php" hash="d1bb9f5b2532e4030a8dd33742d9650c"/></dir><file name="Item.php" hash="337fc33a3919986b8f404c8b639ee2fe"/></dir><file name="Order.php" hash="f41d297c3642fb0cef10ca73cc3a79bb"/><file name="Price.php" hash="bd3ae9dd656754b664bf0ab94cdafb26"/><dir name="Product"><file name="Viewed.php" hash="e807df800b2310f3a815c50daa397a59"/></dir><file name="Product.php" hash="5f9e28f1b7f3923923cc7fd80198a560"/><dir name="Quote"><dir name="Item"><file name="Options.php" hash="c789c20cd4664ec9faaeccb44bdcfa35"/></dir><file name="Item.php" hash="e24c78fbe4b6e251eb94c8358aca3168"/></dir><file name="Quote.php" hash="0d9aa047cf263304efb9c1450843dc54"/><file name="Storeview.php" hash="427880472097a9eaa5a6ecf801b2e535"/><file name="Subscription.php" hash="e09b421f41d4fb00fb083b50660a6190"/><dir name="Wishlist"><dir name="Item"><file name="Options.php" hash="850fa07b6c8f82958ca6ef2350a7bc5e"/></dir><file name="Item.php" hash="f5266fc0c4bbb1ba3b09fd75ad6e3b6b"/></dir><file name="Wishlist.php" hash="d02da3380379403f6ef9a0bcd83bd3c6"/></dir><file name="Config.php" hash="f9b93ad167d7d2d34759f1d2aeca251d"/><dir name="Copernica"><file name="Abstract.php" hash="e43e91e8d3a7c31cca75b0a11fe396d4"/><dir name="Address"><file name="Subprofile.php" hash="8da47fe822c3c67998d082afb798eb4b"/></dir><dir name="Entity"><file name="Address.php" hash="1d8114c82978f516b4ebbb8aad81c4ed"/><file name="Customer.php" hash="061b3a8adf62b0eb42800be5507995ab"/><dir name="Order"><file name="Item.php" hash="a36f422cca382021eae5dcfbb4cc7679"/></dir><file name="Order.php" hash="159aeca86326bf456cc7d352467a7f68"/><file name="Product.php" hash="dca88a160907b84c200fdb6df002fc82"/><dir name="Quote"><file name="Item.php" hash="79d353ab6e150e21b7967c5795f4b28a"/></dir><file name="Quote.php" hash="0060a8d576f0d14b63f3017db7cc1a6d"/><file name="Subscription.php" hash="bf3cb5ae41b45d653415f1c06af0f407"/><dir name="Wishlist"><file name="Item.php" hash="214f22f4b07b8614007371301cf435ed"/></dir><file name="Wishlist.php" hash="200e2b74fd97bc878b00bb7c1bf24002"/></dir><file name="Entity.php" hash="e74a89d1bf00dfcb5454122df437c633"/><dir name="Order"><file name="Subprofile.php" hash="4799f8ab8b2c47298b0c472483699a29"/></dir><dir name="Orderitem"><file name="Subprofile.php" hash="09b122fcbeae65efa99c650882dc2a04"/></dir><dir name="Product"><dir name="Viewed"><file name="Subprofile.php" hash="477b56cc538a8bb4433efca30182381d"/></dir></dir><dir name="Profile"><file name="Customer.php" hash="2641a5303861472199310df5e9744b94"/><file name="Order.php" hash="26c091f3cb789d5785371950084252b7"/><file name="Quote.php" hash="4b92449c77cce625640ef92e4d8e0204"/><file name="Subscription.php" hash="cda9cea09add3504d085c046ac2b4b72"/></dir><file name="Profile.php" hash="dd4f415edd5cd5f6706461e432096d96"/><dir name="Quote"><dir name="Item"><file name="Subprofile.php" hash="1c338be576cfd9cde1d653be5e0fbaf9"/></dir></dir><dir name="Wishlist"><dir name="Item"><file name="Subprofile.php" hash="93eb9a0fdb23aedf75cd7dd0d3893385"/></dir></dir></dir><dir name="Error"><file name="Queue.php" hash="d6c8d9d5e552242f18a1829a91413760"/></dir><dir name="Mysql4"><dir name="Abandoned"><dir name="Cart"><file name="Collection.php" hash="b754475b97a81e5a3bd729eb767ccc1f"/></dir><file name="Cart.php" hash="d53d4bd5cabce576ea7ebb65389cdbca"/></dir><dir name="Config"><file name="Collection.php" hash="522757300fdf26a7964e7047c7a6504b"/></dir><file name="Config.php" hash="ab9bc864339624019f060a1f1c3e491b"/><dir name="Error"><dir name="Queue"><file name="Collection.php" hash="4932afd4111bd61e8801f906b142bb5b"/></dir><file name="Queue.php" hash="6b9b915a4b97380d0a1e684b3e6a24ae"/></dir><dir name="Profile"><dir name="Cache"><file name="Collection.php" hash="abbad62cfb50930fcca472456ce4f502"/></dir><file name="Cache.php" hash="e2f6b69236a65dd84aeac3a43e69e9a7"/></dir><dir name="Queue"><dir name="Item"><file name="Collection.php" hash="fd2470afdd7f6e4d6fdd54796c34913d"/></dir><file name="Item.php" hash="e995226766fbf7bf90dbcd51f26a9e35"/></dir><dir name="Sync"><dir name="Profile"><file name="Collection.php" hash="9c533a3547afa689e56c6088d5718e27"/></dir><file name="Profile.php" hash="970a87f955107d2d7149dd3c6b1d526a"/></dir></dir><file name="Observer.php" hash="54e4cdf6b0046fd21aae1beb00a71295"/><dir name="Profile"><file name="Cache.php" hash="44a4e9c2366bd56f242b3758c0fe5e6b"/></dir><dir name="Queue"><dir name="Event"><file name="Abstract.php" hash="9befdb6be287a6255ae456221ccf908a"/><file name="Checkout.php" hash="7708478accbb489d2e32b24fe3aadc27"/><file name="Customer.php" hash="d486818670820c7c3d02def06f6d6bdb"/><file name="Factory.php" hash="e62dcc5a6caa4082f37660c0762df1f4"/><file name="Item.php" hash="8cdb8b8d6397a33aa414588cb08a96c8"/><file name="Order.php" hash="c5704ce38f9a7e41609f9021aabcfe20"/><file name="Quote.php" hash="d19a2db1d0ea98797dda8c8113f35b0c"/><file name="Startsync.php" hash="e9d65e226ee4d3bb854011a914fbbf56"/><file name="Subscription.php" hash="4c06a7baf37f266c29494b5806f483f2"/><file name="View.php" hash="8459aef4636f4a872e0c9b45137287b3"/><dir name="Wishlist"><file name="Item.php" hash="377fd52a28f562ea3c3245f2d308fc11"/></dir></dir><file name="Item.php" hash="e41928715574738dbcf7462412895c94"/><file name="Processor.php" hash="0df4dc186d3720d96fd918ed3da02efa"/></dir><dir name="Rest"><file name="Address.php" hash="fa4ef338560c09c51fd35cf09116283c"/><file name="Customer.php" hash="f63d75ff74ca8d27fe66c5ad3067693f"/><dir name="Order"><file name="Item.php" hash="3c5003e4c95bc88dc9eb346bbbaed46b"/></dir><file name="Order.php" hash="92039328b49dfd8f265b43f6d401e75a"/><file name="Product.php" hash="391085c8b16ded397881d07357f7288f"/><dir name="Quote"><file name="Item.php" hash="3f33b30d5d47c1541ad2cec1e1c8b0ef"/></dir><file name="Quote.php" hash="f4579e270a7ce16f78cd52c774a45218"/><file name="Subscription.php" hash="080bf61e85dfc6c7818c2fe1ed60661b"/><dir name="Wishlist"><file name="Item.php" hash="87911c626195e772eee4a3b3301f3302"/></dir><file name="Wishlist.php" hash="de42a165f867bdf8ee0206a7ea8d828f"/></dir><file name="Rest.php" hash="c0902c530a341a14f91bb62d5c42208e"/><dir name="Sync"><file name="Profile.php" hash="06230cb2bfc959e7d512f62eb5869f1f"/><file name="Status.php" hash="57304f5054b15151427b962da0e39bba"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Marketingsoftware"><file name="AccessTokenController.php" hash="59ea43c94c5867066c907d7279e0aa66"/><file name="AjaxcollectionController.php" hash="59adf742661833985f0332d5b1fa520a"/><file name="ExportController.php" hash="3e8aec97b1cdcd6a6453969ba458fcd7"/><file name="LinkController.php" hash="a9b24b028dfc91d4daf8b6bd3ba736cd"/><file name="SettingsController.php" hash="5606991d9d0d8272a35964c81740e2c2"/><file name="SyncController.php" hash="582e86628d5a982f374cb934c25ae434"/></dir></dir><file name="ProductController.php" hash="618c95dbe763242eeaa00b6d233998b2"/><file name="UnsubscribeController.php" hash="6abd591209af2d7d7753405580ef6f71"/></dir><dir name="cron"><file name="clearCopernicaDatabase.php" hash="d64420e7f2a3ba674be72a15b47a3363"/><file name="detectAbandonedCarts.php" hash="ab3a8d7c6ed1a03cfd5129a8b6116e7f"/><file name="fullSync.php" hash="543451ba33dcf4e576b3a02cec62a4d9"/><file name="processQueue.php" hash="3614018e73120a5386ebd3ae7bff5060"/></dir><dir name="data"><dir name="marketingsoftware_setup"><file name="data-upgrade-3.4.0-3.4.1.php" hash="81ee78df6fb57daaa62a35c8d6096865"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="06693ae7df5091f51d0f835d4e98aa8c"/><file name="config.xml" hash="67aa524cba649c0402a742ba9301e61c"/></dir><dir name="sql"><dir name="marketingsoftware_setup"><file name="mysql4-install-1.2.0.php" hash="d4349dd3d45e411d39be85d4cee50302"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="4902356c13309b6415e1a61c3fcc805c"/><file name="mysql4-upgrade-1.1.6-1.1.7.php" hash="1bfa357933494cbded4c32f4d1d0a45c"/><file name="mysql4-upgrade-1.1.7-1.1.8.php" hash="860e3ce11771bd8e6f7c755f2afa8805"/><file name="mysql4-upgrade-1.1.8-1.2.0.php" hash="0414892bc3b6ebff44e991afe23a0f19"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="5374760e8bee6edb033475cd0cf8fd0a"/><file name="mysql4-upgrade-2.1.0.1-2.2.0.php" hash="8c4f8168b9b6b9ff196b7b72eeccea22"/><file name="mysql4-upgrade-2.2.0.1-2.3.0.php" hash="1c019bd68d35e91cd6771d4f52528513"/><file name="mysql4-upgrade-2.3.0-2.3.1.php" hash="d0310551734c1f1312dc8b1e416931ba"/><file name="mysql4-upgrade-2.3.1-2.3.2.php" hash="edf9c78d676f12dfa6b82f008e9e5967"/><file name="mysql4-upgrade-2.3.2-2.3.3.php" hash="70aded2b5d9b4736471c43c7f2540b62"/><file name="mysql4-upgrade-2.3.3-2.3.4.php" hash="f3824fb5c040893566fddb14727659ab"/><file name="mysql4-upgrade-2.3.4-2.3.5.php" hash="530cd67311cd72432274e3aea0ed3cc4"/><file name="mysql4-upgrade-2.3.8-2.4.0.php" hash="67c039843f81e2dc45d490f616e1bceb"/><file name="mysql4-upgrade-2.4.0-2.4.1.php" hash="86f85289e160bc6c7fe51a60ab73f248"/><file name="mysql4-upgrade-2.4.1-2.4.2.php" hash="de8c28f9d4cbbddaf0205d54b90689c1"/><file name="mysql4-upgrade-2.4.2-2.4.3.php" hash="200490a9c31749b4c0ee7c447568fb2d"/><file name="mysql4-upgrade-2.4.3-2.4.4.php" hash="6aa12fe669044cfad384405b82afe625"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Copernica_MarketingSoftware.xml" hash="a0f52371ec0e8a63ea5d066c6f9f24c3"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="marketingsoftware"><file name="accessToken.phtml" hash="169fd5c06606e854d80eb42d406c4f82"/><file name="export.phtml" hash="cd79d0803fda66072035ea3acdbf08cf"/><file name="link.phtml" hash="7b82ece3be8ad9ff9f0e3dbca5b3736a"/><file name="settings.phtml" hash="f5b4fa0fe8757935a458e7cbc67129b8"/><file name="sync.phtml" hash="78005a8bf2cad44424aba48cfcc940a6"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="copernica"><dir name="marketingsoftware"><file name="link.js" hash="7309fdc8855cf3f031fedad336031c59"/></dir></dir></dir></target></contents>
21
  <compatible/>
22
- <dependencies><required><php><min>5.2.0</min><max>5.4.99</max></php><extension><name>PDO</name><min></min><max></max></extension></required></dependencies>
23
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Copernica_MarketingSoftware</name>
4
+ <version>3.1.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
10
  <description>When you install the integration, all contact, order and shop cart data from Magento will be automatically synchronized and stored in Copernica. By synchronizing data between your Magento webshop and Copernica, you are able to set up targeted email campaigns. For example you can consider emailing customers with abandoned shopcarts automatically every week. Your contacts will only receive information relevant to them, which will make them come back to your shop time and again. The available integration is also compatible with the Magento Enterprise edition.&#xD;
11
  &#xD;
12
  Please note that this extension does not work with PHP 5.4.X. and should be run with the Magento system requirements in mind.</description>
13
+ <notes> Release Notes - Copernica - Version 3.1.2&#xD;
14
+ &#xD;
15
+ &lt;h2&gt; Bug&#xD;
16
+ &lt;/h2&gt;&#xD;
17
+ &lt;ul&gt;&#xD;
18
+ &lt;li&gt;[&lt;a href='http://support.cream.nl/browse/COPE-213'&gt;COPE-213&lt;/a&gt;] - Copernica sync valt stil&#xD;
19
+ &lt;/li&gt;&#xD;
20
+ &lt;li&gt;[&lt;a href='http://support.cream.nl/browse/COPE-215'&gt;COPE-215&lt;/a&gt;] - Foutmelding bij synchroniseren&#xD;
21
+ &lt;/li&gt;&#xD;
22
+ &lt;/ul&gt;&#xD;
23
+ &#xD;
24
+ &lt;h2&gt; Improvement&#xD;
25
+ &lt;/h2&gt;&#xD;
26
+ &lt;ul&gt;&#xD;
27
+ &lt;li&gt;[&lt;a href='http://support.cream.nl/browse/COPE-208'&gt;COPE-208&lt;/a&gt;] - Let CURL handle SSL completely&#xD;
28
+ &lt;/li&gt;&#xD;
29
+ &lt;/ul&gt;&#xD;
30
+ </notes>
31
  <authors><author><name>Cream</name><user>creaminternet</user><email>info@cream.nl</email></author></authors>
32
+ <date>2015-03-12</date>
33
+ <time>23:05:32</time>
34
+ <contents><target name="magecommunity"><dir name="Copernica"><dir name="MarketingSoftware"><dir name="Block"><dir name="Adminhtml"><dir name="Marketingsoftware"><file name="Accesstoken.php" hash="2196942b0b6c6727854e360126831a41"/><file name="Export.php" hash="a8a1203c12602345f9b3dd249ec77216"/><file name="Link.php" hash="4be8ea5a022ab5ab705862ce3d74b9ad"/><file name="Settings.php" hash="f18848ba6a75106d8bf6863c0a91dc80"/><file name="Sync.php" hash="10191fd99632e43a2df9b9372a487280"/></dir></dir></dir><dir name="Controller"><file name="Action.php" hash="8c89215b082dbf0e68ff8454d1e0eca9"/></dir><file name="Exception.php" hash="5be0f3715157b3b05c9471a1aeef75d1"/><dir name="Helper"><dir name="Api"><file name="Abstract.php" hash="f4d61c76a1659eda7456fcf180884408"/><file name="Builder.php" hash="200daf757d512f2844e98463f564e3e0"/><file name="Validator.php" hash="e9c81cbbf6c147ca0b8437d3d10f8c46"/></dir><file name="Api.php" hash="71e4c4c9d1a4dcf62d03170a7d4dd66a"/><file name="Config.php" hash="6cdf2bf007ac35d11718ab1080e24764"/><file name="Data.php" hash="5ee3dc0e876edfa560a00f859e465b15"/><file name="DataWriter.php" hash="562cd6afe278dd8200a025d74a7cd1e1"/><file name="Profile.php" hash="8f1375c1a2a49176bbf4390f24a6d8c3"/><dir name="Rest"><file name="Request.php" hash="4230d69607d84a934b31623d4d551d41"/></dir></dir><dir name="Model"><dir name="Abandoned"><file name="Cart.php" hash="e9f9b0e533a3c96c45fb079ae5344d7a"/><dir name="Carts"><file name="Processor.php" hash="bf88d2983fd7896c306fe5977a51f7fa"/></dir></dir><dir name="Abstraction"><file name="Address.php" hash="6d9cc361b47f54c60055a1b4c1416124"/><file name="Attributes.php" hash="1302fd4317be556d9b4b57a4d7ceed48"/><file name="Customer.php" hash="02f7134f354c2480f90a1f32a4d8c983"/><file name="Name.php" hash="fccb94d66e34f8d68cdf2db34ff983ff"/><dir name="Order"><dir name="Item"><file name="Options.php" hash="d1bb9f5b2532e4030a8dd33742d9650c"/></dir><file name="Item.php" hash="337fc33a3919986b8f404c8b639ee2fe"/></dir><file name="Order.php" hash="f41d297c3642fb0cef10ca73cc3a79bb"/><file name="Price.php" hash="bd3ae9dd656754b664bf0ab94cdafb26"/><dir name="Product"><file name="Viewed.php" hash="e807df800b2310f3a815c50daa397a59"/></dir><file name="Product.php" hash="5f9e28f1b7f3923923cc7fd80198a560"/><dir name="Quote"><dir name="Item"><file name="Options.php" hash="c789c20cd4664ec9faaeccb44bdcfa35"/></dir><file name="Item.php" hash="e24c78fbe4b6e251eb94c8358aca3168"/></dir><file name="Quote.php" hash="0d9aa047cf263304efb9c1450843dc54"/><file name="Storeview.php" hash="427880472097a9eaa5a6ecf801b2e535"/><file name="Subscription.php" hash="e09b421f41d4fb00fb083b50660a6190"/><dir name="Wishlist"><dir name="Item"><file name="Options.php" hash="850fa07b6c8f82958ca6ef2350a7bc5e"/></dir><file name="Item.php" hash="f5266fc0c4bbb1ba3b09fd75ad6e3b6b"/></dir><file name="Wishlist.php" hash="d02da3380379403f6ef9a0bcd83bd3c6"/></dir><file name="Config.php" hash="f9b93ad167d7d2d34759f1d2aeca251d"/><dir name="Copernica"><file name="Abstract.php" hash="e43e91e8d3a7c31cca75b0a11fe396d4"/><dir name="Address"><file name="Subprofile.php" hash="8da47fe822c3c67998d082afb798eb4b"/></dir><dir name="Entity"><file name="Address.php" hash="1d8114c82978f516b4ebbb8aad81c4ed"/><file name="Customer.php" hash="061b3a8adf62b0eb42800be5507995ab"/><dir name="Order"><file name="Item.php" hash="a36f422cca382021eae5dcfbb4cc7679"/></dir><file name="Order.php" hash="159aeca86326bf456cc7d352467a7f68"/><file name="Product.php" hash="dca88a160907b84c200fdb6df002fc82"/><dir name="Quote"><file name="Item.php" hash="79d353ab6e150e21b7967c5795f4b28a"/></dir><file name="Quote.php" hash="0060a8d576f0d14b63f3017db7cc1a6d"/><file name="Subscription.php" hash="bf3cb5ae41b45d653415f1c06af0f407"/><dir name="Wishlist"><file name="Item.php" hash="214f22f4b07b8614007371301cf435ed"/></dir><file name="Wishlist.php" hash="200e2b74fd97bc878b00bb7c1bf24002"/></dir><file name="Entity.php" hash="e74a89d1bf00dfcb5454122df437c633"/><dir name="Order"><file name="Subprofile.php" hash="4799f8ab8b2c47298b0c472483699a29"/></dir><dir name="Orderitem"><file name="Subprofile.php" hash="09b122fcbeae65efa99c650882dc2a04"/></dir><dir name="Product"><dir name="Viewed"><file name="Subprofile.php" hash="477b56cc538a8bb4433efca30182381d"/></dir></dir><dir name="Profile"><file name="Customer.php" hash="2641a5303861472199310df5e9744b94"/><file name="Order.php" hash="26c091f3cb789d5785371950084252b7"/><file name="Quote.php" hash="4b92449c77cce625640ef92e4d8e0204"/><file name="Subscription.php" hash="cda9cea09add3504d085c046ac2b4b72"/></dir><file name="Profile.php" hash="dd4f415edd5cd5f6706461e432096d96"/><dir name="Quote"><dir name="Item"><file name="Subprofile.php" hash="1c338be576cfd9cde1d653be5e0fbaf9"/></dir></dir><dir name="Wishlist"><dir name="Item"><file name="Subprofile.php" hash="93eb9a0fdb23aedf75cd7dd0d3893385"/></dir></dir></dir><dir name="Error"><file name="Queue.php" hash="d6c8d9d5e552242f18a1829a91413760"/></dir><dir name="Mysql4"><dir name="Abandoned"><dir name="Cart"><file name="Collection.php" hash="b754475b97a81e5a3bd729eb767ccc1f"/></dir><file name="Cart.php" hash="d53d4bd5cabce576ea7ebb65389cdbca"/></dir><dir name="Config"><file name="Collection.php" hash="522757300fdf26a7964e7047c7a6504b"/></dir><file name="Config.php" hash="ab9bc864339624019f060a1f1c3e491b"/><dir name="Error"><dir name="Queue"><file name="Collection.php" hash="4932afd4111bd61e8801f906b142bb5b"/></dir><file name="Queue.php" hash="6b9b915a4b97380d0a1e684b3e6a24ae"/></dir><dir name="Profile"><dir name="Cache"><file name="Collection.php" hash="abbad62cfb50930fcca472456ce4f502"/></dir><file name="Cache.php" hash="e2f6b69236a65dd84aeac3a43e69e9a7"/></dir><dir name="Queue"><dir name="Item"><file name="Collection.php" hash="fd2470afdd7f6e4d6fdd54796c34913d"/></dir><file name="Item.php" hash="e995226766fbf7bf90dbcd51f26a9e35"/></dir><dir name="Sync"><dir name="Profile"><file name="Collection.php" hash="9c533a3547afa689e56c6088d5718e27"/></dir><file name="Profile.php" hash="970a87f955107d2d7149dd3c6b1d526a"/></dir></dir><file name="Observer.php" hash="721d5f673d0900e8e13c88a54045bc53"/><dir name="Profile"><file name="Cache.php" hash="44a4e9c2366bd56f242b3758c0fe5e6b"/></dir><dir name="Queue"><dir name="Event"><file name="Abstract.php" hash="9befdb6be287a6255ae456221ccf908a"/><file name="Checkout.php" hash="7708478accbb489d2e32b24fe3aadc27"/><file name="Customer.php" hash="f907b2efc50dc0a89156ae5921dcfcf6"/><file name="Factory.php" hash="eeffd0ed87bc3244ad99894aefe70bd2"/><file name="Item.php" hash="8cdb8b8d6397a33aa414588cb08a96c8"/><file name="Order.php" hash="c5704ce38f9a7e41609f9021aabcfe20"/><file name="Quote.php" hash="055417e52b6f6a48bd69d4e01ba78a13"/><file name="Startsync.php" hash="e9d65e226ee4d3bb854011a914fbbf56"/><file name="Subscription.php" hash="038a740dcfeeb344e06d865d3ee7f238"/><file name="View.php" hash="da35bba0385be3698304ba319f5d0823"/><dir name="Wishlist"><file name="Item.php" hash="377fd52a28f562ea3c3245f2d308fc11"/></dir></dir><file name="Item.php" hash="e41928715574738dbcf7462412895c94"/><file name="Processor.php" hash="0df4dc186d3720d96fd918ed3da02efa"/></dir><dir name="Rest"><file name="Address.php" hash="fa4ef338560c09c51fd35cf09116283c"/><file name="Customer.php" hash="f63d75ff74ca8d27fe66c5ad3067693f"/><dir name="Order"><file name="Item.php" hash="3c5003e4c95bc88dc9eb346bbbaed46b"/></dir><file name="Order.php" hash="92039328b49dfd8f265b43f6d401e75a"/><file name="Product.php" hash="391085c8b16ded397881d07357f7288f"/><dir name="Quote"><file name="Item.php" hash="3f33b30d5d47c1541ad2cec1e1c8b0ef"/></dir><file name="Quote.php" hash="f4579e270a7ce16f78cd52c774a45218"/><file name="Subscription.php" hash="080bf61e85dfc6c7818c2fe1ed60661b"/><dir name="Wishlist"><file name="Item.php" hash="87911c626195e772eee4a3b3301f3302"/></dir><file name="Wishlist.php" hash="de42a165f867bdf8ee0206a7ea8d828f"/></dir><file name="Rest.php" hash="c0902c530a341a14f91bb62d5c42208e"/><dir name="Sync"><file name="Profile.php" hash="06230cb2bfc959e7d512f62eb5869f1f"/><file name="Status.php" hash="57304f5054b15151427b962da0e39bba"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Marketingsoftware"><file name="AccessTokenController.php" hash="59ea43c94c5867066c907d7279e0aa66"/><file name="AjaxcollectionController.php" hash="59adf742661833985f0332d5b1fa520a"/><file name="ExportController.php" hash="3e8aec97b1cdcd6a6453969ba458fcd7"/><file name="LinkController.php" hash="a9b24b028dfc91d4daf8b6bd3ba736cd"/><file name="SettingsController.php" hash="5606991d9d0d8272a35964c81740e2c2"/><file name="SyncController.php" hash="582e86628d5a982f374cb934c25ae434"/></dir></dir><file name="ProductController.php" hash="618c95dbe763242eeaa00b6d233998b2"/><file name="UnsubscribeController.php" hash="6abd591209af2d7d7753405580ef6f71"/></dir><dir name="cron"><file name="clearCopernicaDatabase.php" hash="d64420e7f2a3ba674be72a15b47a3363"/><file name="detectAbandonedCarts.php" hash="ab3a8d7c6ed1a03cfd5129a8b6116e7f"/><file name="fullSync.php" hash="543451ba33dcf4e576b3a02cec62a4d9"/><file name="processQueue.php" hash="3614018e73120a5386ebd3ae7bff5060"/></dir><dir name="data"><dir name="marketingsoftware_setup"><file name="data-upgrade-3.4.0-3.4.1.php" hash="81ee78df6fb57daaa62a35c8d6096865"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="06693ae7df5091f51d0f835d4e98aa8c"/><file name="config.xml" hash="95d7b654ca0626d6550655d8ee2ffe8d"/></dir><dir name="sql"><dir name="marketingsoftware_setup"><file name="mysql4-install-1.2.0.php" hash="d4349dd3d45e411d39be85d4cee50302"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="4902356c13309b6415e1a61c3fcc805c"/><file name="mysql4-upgrade-1.1.6-1.1.7.php" hash="1bfa357933494cbded4c32f4d1d0a45c"/><file name="mysql4-upgrade-1.1.7-1.1.8.php" hash="860e3ce11771bd8e6f7c755f2afa8805"/><file name="mysql4-upgrade-1.1.8-1.2.0.php" hash="0414892bc3b6ebff44e991afe23a0f19"/><file name="mysql4-upgrade-2.0.1-2.0.2.php" hash="5374760e8bee6edb033475cd0cf8fd0a"/><file name="mysql4-upgrade-2.1.0.1-2.2.0.php" hash="8c4f8168b9b6b9ff196b7b72eeccea22"/><file name="mysql4-upgrade-2.2.0.1-2.3.0.php" hash="1c019bd68d35e91cd6771d4f52528513"/><file name="mysql4-upgrade-2.3.0-2.3.1.php" hash="d0310551734c1f1312dc8b1e416931ba"/><file name="mysql4-upgrade-2.3.1-2.3.2.php" hash="edf9c78d676f12dfa6b82f008e9e5967"/><file name="mysql4-upgrade-2.3.2-2.3.3.php" hash="70aded2b5d9b4736471c43c7f2540b62"/><file name="mysql4-upgrade-2.3.3-2.3.4.php" hash="f3824fb5c040893566fddb14727659ab"/><file name="mysql4-upgrade-2.3.4-2.3.5.php" hash="530cd67311cd72432274e3aea0ed3cc4"/><file name="mysql4-upgrade-2.3.8-2.4.0.php" hash="67c039843f81e2dc45d490f616e1bceb"/><file name="mysql4-upgrade-2.4.0-2.4.1.php" hash="86f85289e160bc6c7fe51a60ab73f248"/><file name="mysql4-upgrade-2.4.1-2.4.2.php" hash="de8c28f9d4cbbddaf0205d54b90689c1"/><file name="mysql4-upgrade-2.4.2-2.4.3.php" hash="200490a9c31749b4c0ee7c447568fb2d"/><file name="mysql4-upgrade-2.4.3-2.4.4.php" hash="6aa12fe669044cfad384405b82afe625"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Copernica_MarketingSoftware.xml" hash="a0f52371ec0e8a63ea5d066c6f9f24c3"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="marketingsoftware"><file name="accessToken.phtml" hash="169fd5c06606e854d80eb42d406c4f82"/><file name="export.phtml" hash="cd79d0803fda66072035ea3acdbf08cf"/><file name="link.phtml" hash="7b82ece3be8ad9ff9f0e3dbca5b3736a"/><file name="settings.phtml" hash="f5b4fa0fe8757935a458e7cbc67129b8"/><file name="sync.phtml" hash="78005a8bf2cad44424aba48cfcc940a6"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="copernica"><dir name="marketingsoftware"><file name="link.js" hash="7309fdc8855cf3f031fedad336031c59"/></dir></dir></dir></target></contents>
35
  <compatible/>
36
+ <dependencies><required><php><min>5.2.0</min><max>5.6.99</max></php><extension><name>PDO</name><min></min><max></max></extension><extension><name>curl</name><min></min><max></max></extension></required></dependencies>
37
  </package>