MVentory_API - Version 1.5.1

Version Notes

* Fix HTTPS handling for android app links
* Updated config hints and tooltips

Download this release

Release Info

Developer Anatoly A. Kazantsev
Extension MVentory_API
Version 1.5.1
Comparing to
See all releases


Code changes from version 1.5.0 to 1.5.1

app/code/community/MVentory/API/Model/Cart/Api.php CHANGED
@@ -222,7 +222,7 @@ class MVentory_API_Model_Cart_Api extends Mage_Checkout_Model_Cart_Api {
222
  //Save transaction ID and orderId pair. So, it will return existing order
223
  //to API client if it will try to create order with same transaction ID
224
  //next time
225
- if ($transactionId !== null) {
226
  $transaction = Mage::getModel('mventory/order_transaction');
227
 
228
  $transaction
@@ -230,15 +230,28 @@ class MVentory_API_Model_Cart_Api extends Mage_Checkout_Model_Cart_Api {
230
  ->setTransactionId((int) $transactionId)
231
  ->save();
232
  }
 
 
 
233
 
234
  //create shipment and invoice to complete order
235
- $shipment = Mage::getModel('mventory/order_shipment_api');
236
- $shipment->create($orderId);
 
 
 
 
 
237
 
238
- $invoice = Mage::getModel('sales/order_invoice_api');
239
- $invoice->create($orderId, null);
 
 
 
 
 
240
 
241
- if ($updateProduct) {
242
  Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
243
 
244
  $product
@@ -247,14 +260,26 @@ class MVentory_API_Model_Cart_Api extends Mage_Checkout_Model_Cart_Api {
247
 
248
  Mage::app()->setCurrentStore($storeId);
249
  }
 
 
 
250
 
251
- if (isset($productQtyNew))
252
  $stockItem
253
  ->setUseConfigManageStock(0)
254
  ->setQty($productQtyNew)
255
  ->save();
 
 
 
 
256
 
257
- $result = $productApi->fullInfo($product->getId(), 'id');
 
 
 
 
 
258
 
259
  if ($orderId)
260
  $result['order_id'] = $orderId;
222
  //Save transaction ID and orderId pair. So, it will return existing order
223
  //to API client if it will try to create order with same transaction ID
224
  //next time
225
+ if ($transactionId !== null) try {
226
  $transaction = Mage::getModel('mventory/order_transaction');
227
 
228
  $transaction
230
  ->setTransactionId((int) $transactionId)
231
  ->save();
232
  }
233
+ catch (Exception $e) {
234
+ Mage::logException($e);
235
+ }
236
 
237
  //create shipment and invoice to complete order
238
+ try {
239
+ $shipment = Mage::getModel('mventory/order_shipment_api');
240
+ $shipment->create($orderId);
241
+ }
242
+ catch (Exception $e) {
243
+ Mage::logException($e);
244
+ }
245
 
246
+ try {
247
+ $invoice = Mage::getModel('sales/order_invoice_api');
248
+ $invoice->create($orderId, null);
249
+ }
250
+ catch (Exception $e) {
251
+ Mage::logException($e);
252
+ }
253
 
254
+ if ($updateProduct) try {
255
  Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
256
 
257
  $product
260
 
261
  Mage::app()->setCurrentStore($storeId);
262
  }
263
+ catch (Exception $e) {
264
+ Mage::logException($e);
265
+ }
266
 
267
+ if (isset($productQtyNew)) try {
268
  $stockItem
269
  ->setUseConfigManageStock(0)
270
  ->setQty($productQtyNew)
271
  ->save();
272
+ }
273
+ catch (Exception $e) {
274
+ Mage::logException($e);
275
+ }
276
 
277
+ try {
278
+ $result = $productApi->fullInfo($product->getId(), 'id');
279
+ }
280
+ catch (Exception $e) {
281
+ Mage::logException($e);
282
+ }
283
 
284
  if ($orderId)
285
  $result['order_id'] = $orderId;
app/code/community/MVentory/API/Model/Observer.php CHANGED
@@ -233,7 +233,7 @@ EOT;
233
 
234
  $msg = $helper->__(
235
  self::__CONFIG_URL,
236
- $store->getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK, true)
237
  . 'mventory-key/'
238
  . urlencode($key),
239
  round($period / 3600)
233
 
234
  $msg = $helper->__(
235
  self::__CONFIG_URL,
236
+ Mage::getModel('core/url')->setStore($store)->getBaseUrl()
237
  . 'mventory-key/'
238
  . urlencode($key),
239
  round($period / 3600)
app/code/community/MVentory/API/controllers/AppController.php CHANGED
@@ -94,7 +94,10 @@ class MVentory_API_AppController
94
 
95
  $output = $user->getUsername() . "\n"
96
  . $apiKey . "\n"
97
- . $store->getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK, true)
 
 
 
98
  . "\n";
99
 
100
  $response = $this->getResponse();
@@ -117,7 +120,7 @@ class MVentory_API_AppController
117
  }
118
 
119
  $store = Mage::app()->getStore();
120
- $secure = $store->isCurrentlySecure();
121
  $url = $store->getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK, $secure);
122
 
123
  $url = ($secure ? 'mventorys://' : 'mventory://')
94
 
95
  $output = $user->getUsername() . "\n"
96
  . $apiKey . "\n"
97
+ . $store->getBaseUrl(
98
+ Mage_Core_Model_Store::URL_TYPE_LINK,
99
+ $store->isAdminUrlSecure()
100
+ )
101
  . "\n";
102
 
103
  $response = $this->getResponse();
120
  }
121
 
122
  $store = Mage::app()->getStore();
123
+ $secure = $store->isAdminUrlSecure();
124
  $url = $store->getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK, $secure);
125
 
126
  $url = ($secure ? 'mventorys://' : 'mventory://')
app/code/community/MVentory/API/etc/system.xml CHANGED
@@ -24,7 +24,7 @@
24
  <tabs>
25
  <mventory translate="label" module="mventory">
26
  <label><![CDATA[<img id="mventory-logo" alt="mVentory" title="mVentory" src="https://s3-ap-southeast-2.amazonaws.com/mventory-logos/mVentory-logo.png">]]></label>
27
- <sort_order>100</sort_order>
28
  </mventory>
29
  </tabs>
30
 
@@ -38,24 +38,26 @@
38
  <show_in_website>1</show_in_website>
39
  <show_in_store>0</show_in_store>
40
 
41
- <sort_order>0</sort_order>
42
 
43
  <groups>
44
- <api translate="label">
45
  <label>Phone API</label>
 
46
  <frontend_type>text</frontend_type>
47
 
48
  <show_in_default>1</show_in_default>
49
  <show_in_website>1</show_in_website>
50
  <show_in_store>0</show_in_store>
51
 
52
- <sort_order>2</sort_order>
53
 
54
  <fields>
55
- <products-number-to-fetch translate="label comment">
56
- <label>Number of products to fetch</label>
 
 
57
  <frontend_type>text</frontend_type>
58
- <comment>To appear in the products screen in phone app</comment>
59
 
60
  <show_in_default>1</show_in_default>
61
  <show_in_website>1</show_in_website>
@@ -65,8 +67,8 @@
65
  </products-number-to-fetch>
66
 
67
  <tax_class translate="label comment">
68
- <label>Default tax</label>
69
- <comment>Default tax for products created via the phone app</comment>
70
 
71
  <frontend_type>select</frontend_type>
72
  <source_model>tax/class_source_product</source_model>
@@ -75,43 +77,47 @@
75
  <show_in_website>1</show_in_website>
76
  <show_in_store>0</show_in_store>
77
 
78
- <sort_order>3</sort_order>
79
  </tax_class>
80
 
81
- <cart-item-lifetime translate="label comment">
82
- <label>Cart item lifetime (minutes)</label>
83
- <comment>Time before a product is removed from the phone app cart</comment>
 
84
  <frontend_type>text</frontend_type>
85
 
86
  <show_in_default>1</show_in_default>
87
  <show_in_website>0</show_in_website>
88
  <show_in_store>0</show_in_store>
89
 
90
- <sort_order>4</sort_order>
91
  </cart-item-lifetime>
92
 
93
- <app_profile_link_lifetime translate="label comment">
94
- <label>Lifetime of the link to the app profile (minutes)</label>
95
  <comment>Lifetime of the app configuration link for new mVentory users</comment>
 
 
96
  <frontend_type>text</frontend_type>
97
 
98
  <show_in_default>1</show_in_default>
99
  <show_in_website>1</show_in_website>
100
  <show_in_store>0</show_in_store>
101
 
102
- <sort_order>5</sort_order>
103
  </app_profile_link_lifetime>
104
 
105
- <lost_category translate="label comment">
106
  <label>Default category ID</label>
107
  <comment>Category for products without matching category mapping rules</comment>
 
108
  <frontend_type>text</frontend_type>
109
 
110
  <show_in_default>1</show_in_default>
111
  <show_in_website>1</show_in_website>
112
  <show_in_store>0</show_in_store>
113
 
114
- <sort_order>6</sort_order>
115
  </lost_category>
116
 
117
  <product_visiblity translate="label comment">
@@ -124,7 +130,7 @@
124
  <show_in_website>1</show_in_website>
125
  <show_in_store>0</show_in_store>
126
 
127
- <sort_order>7</sort_order>
128
  </product_visiblity>
129
 
130
  <root_website translate="label comment">
@@ -137,24 +143,26 @@
137
  <show_in_website>1</show_in_website>
138
  <show_in_store>0</show_in_store>
139
 
140
- <sort_order>8</sort_order>
141
  </root_website>
142
 
143
- <default_role translate="label comment">
144
- <label>Default API role</label>
145
  <comment>Default API role name for new mVentory API users</comment>
 
146
  <frontend_type>text</frontend_type>
147
 
148
  <show_in_default>1</show_in_default>
149
  <show_in_website>1</show_in_website>
150
  <show_in_store>0</show_in_store>
151
 
152
- <sort_order>9</sort_order>
153
  </default_role>
154
 
155
- <apply_rules translate="label comment">
156
- <label>Apply mVentory API rules on product save in the admin interface</label>
157
  <comment>e.g. category mapping rules, automatic product naming rules</comment>
 
158
  <frontend_type>select</frontend_type>
159
  <source_model>adminhtml/system_config_source_yesno</source_model>
160
 
@@ -162,20 +170,29 @@
162
  <show_in_website>1</show_in_website>
163
  <show_in_store>0</show_in_store>
164
 
165
- <sort_order>10</sort_order>
166
  </apply_rules>
167
  </fields>
168
- <comment><![CDATA[<B>WARNING:</B> Additional options require configuration at website level.]]></comment>
169
  </api>
170
 
171
  <qr translate="label">
172
  <label>Labels</label>
173
  <comment><![CDATA[
174
- <a target="_blank" href="/mventory/qr/generate/labels/1">Generate labels</a><br />
175
- <a target="_blank" href="/mventory/qr/generate/links/1">Generate links</a><br />
176
- <a target="_blank" href="/mventory/qr/generate/links/1/codes/1">Generate links and codes</a><br />
177
- <a target="_blank" href="/mventory/qr/generate/images/1">Generate image links</a><br />
178
- <a target="_blank" href="/mventory/qr/generate/images/1/codes/1">Generate image links and codes</a><br />
 
 
 
 
 
 
 
 
 
 
179
  ]]></comment>
180
  <frontend_type>text</frontend_type>
181
 
@@ -186,48 +203,63 @@
186
  <sort_order>4</sort_order>
187
 
188
  <fields>
189
- <rows translate="label">
 
 
 
 
 
 
 
 
 
 
 
190
  <label>Rows</label>
 
191
  <frontend_type>text</frontend_type>
192
 
193
  <show_in_default>1</show_in_default>
194
  <show_in_website>0</show_in_website>
195
  <show_in_store>0</show_in_store>
196
 
197
- <sort_order>1</sort_order>
198
  </rows>
199
 
200
- <columns translate="label">
201
  <label>Columns</label>
 
202
  <frontend_type>text</frontend_type>
203
 
204
  <show_in_default>1</show_in_default>
205
  <show_in_website>0</show_in_website>
206
  <show_in_store>0</show_in_store>
207
 
208
- <sort_order>2</sort_order>
209
  </columns>
210
 
211
- <size translate="label">
212
- <label>QR code size, px</label>
 
213
  <frontend_type>text</frontend_type>
214
 
215
  <show_in_default>1</show_in_default>
216
  <show_in_website>0</show_in_website>
217
  <show_in_store>0</show_in_store>
218
 
219
- <sort_order>3</sort_order>
220
  </size>
221
 
222
- <pages translate="label">
223
  <label>Number of pages</label>
 
224
  <frontend_type>text</frontend_type>
225
 
226
  <show_in_default>1</show_in_default>
227
  <show_in_website>0</show_in_website>
228
  <show_in_store>0</show_in_store>
229
 
230
- <sort_order>4</sort_order>
231
  </pages>
232
 
233
  <css translate="label">
@@ -238,29 +270,31 @@
238
  <show_in_website>0</show_in_website>
239
  <show_in_store>0</show_in_store>
240
 
241
- <sort_order>5</sort_order>
242
  </css>
243
 
244
- <base_url translate="label">
245
  <label>Base URL (optional)</label>
 
246
  <frontend_type>text</frontend_type>
247
 
248
  <show_in_default>1</show_in_default>
249
  <show_in_website>0</show_in_website>
250
  <show_in_store>0</show_in_store>
251
 
252
- <sort_order>6</sort_order>
253
  </base_url>
254
 
255
- <copies translate="label">
256
- <label>Copies per code</label>
 
257
  <frontend_type>text</frontend_type>
258
 
259
  <show_in_default>1</show_in_default>
260
  <show_in_website>0</show_in_website>
261
  <show_in_store>0</show_in_store>
262
 
263
- <sort_order>7</sort_order>
264
  </copies>
265
  </fields>
266
  </qr>
24
  <tabs>
25
  <mventory translate="label" module="mventory">
26
  <label><![CDATA[<img id="mventory-logo" alt="mVentory" title="mVentory" src="https://s3-ap-southeast-2.amazonaws.com/mventory-logos/mVentory-logo.png">]]></label>
27
+ <sort_order>150</sort_order>
28
  </mventory>
29
  </tabs>
30
 
38
  <show_in_website>1</show_in_website>
39
  <show_in_store>0</show_in_store>
40
 
41
+ <sort_order>1</sort_order>
42
 
43
  <groups>
44
+ <api translate="label comment">
45
  <label>Phone API</label>
46
+ <comment><![CDATA[<b>WARNING:</b> Additional options require configuration at website level.]]></comment>
47
  <frontend_type>text</frontend_type>
48
 
49
  <show_in_default>1</show_in_default>
50
  <show_in_website>1</show_in_website>
51
  <show_in_store>0</show_in_store>
52
 
53
+ <sort_order>1</sort_order>
54
 
55
  <fields>
56
+ <products-number-to-fetch translate="label comment tooltip">
57
+ <label>Number of products to display</label>
58
+ <comment>To appear in the Products screen in Android app</comment>
59
+ <tooltip>mVentory Android app shows a list of latest-modified products under the Products screen (accessed from the Home screen) for your convinience. The list will be limited to this number of products.</tooltip>
60
  <frontend_type>text</frontend_type>
 
61
 
62
  <show_in_default>1</show_in_default>
63
  <show_in_website>1</show_in_website>
67
  </products-number-to-fetch>
68
 
69
  <tax_class translate="label comment">
70
+ <label>Default Tax Class</label>
71
+ <comment>This Tax Class will be assigned to all products created via the Android app</comment>
72
 
73
  <frontend_type>select</frontend_type>
74
  <source_model>tax/class_source_product</source_model>
77
  <show_in_website>1</show_in_website>
78
  <show_in_store>0</show_in_store>
79
 
80
+ <sort_order>2</sort_order>
81
  </tax_class>
82
 
83
+ <cart-item-lifetime translate="label comment tooltip">
84
+ <label>Android app cart lifetime (minutes)</label>
85
+ <comment>Time before the cart is emptied if unsold</comment>
86
+ <tooltip>Default value: 24h (1440 minutes).</tooltip>
87
  <frontend_type>text</frontend_type>
88
 
89
  <show_in_default>1</show_in_default>
90
  <show_in_website>0</show_in_website>
91
  <show_in_store>0</show_in_store>
92
 
93
+ <sort_order>3</sort_order>
94
  </cart-item-lifetime>
95
 
96
+ <app_profile_link_lifetime translate="label comment tooltip">
97
+ <label>App profile configuration URL lifetime (minutes)</label>
98
  <comment>Lifetime of the app configuration link for new mVentory users</comment>
99
+ <tooltip><![CDATA[Adding a Magento customer as a new mVentory app (XML-RPC) user, or saving an existing user creates a URL that can be used for automatic configuration of the Android app access to Magento. Just e-mail it to the app user and get them to click on the link. If mVentory app is installed, it will be automatically configured. For security reason, the URL is only live for a limited time.<br /><br />
100
+ <b>Default value:</b> 24h (1440 minutes).]]></tooltip>
101
  <frontend_type>text</frontend_type>
102
 
103
  <show_in_default>1</show_in_default>
104
  <show_in_website>1</show_in_website>
105
  <show_in_store>0</show_in_store>
106
 
107
+ <sort_order>4</sort_order>
108
  </app_profile_link_lifetime>
109
 
110
+ <lost_category translate="label comment tooltip">
111
  <label>Default category ID</label>
112
  <comment>Category for products without matching category mapping rules</comment>
113
+ <tooltip>mVentory assigns products to categories using mapping rules based on attribute values. If a valid category ID is entered here, all products that do not match any mapping rules will be assigned to this category.</tooltip>
114
  <frontend_type>text</frontend_type>
115
 
116
  <show_in_default>1</show_in_default>
117
  <show_in_website>1</show_in_website>
118
  <show_in_store>0</show_in_store>
119
 
120
+ <sort_order>5</sort_order>
121
  </lost_category>
122
 
123
  <product_visiblity translate="label comment">
130
  <show_in_website>1</show_in_website>
131
  <show_in_store>0</show_in_store>
132
 
133
+ <sort_order>6</sort_order>
134
  </product_visiblity>
135
 
136
  <root_website translate="label comment">
143
  <show_in_website>1</show_in_website>
144
  <show_in_store>0</show_in_store>
145
 
146
+ <sort_order>7</sort_order>
147
  </root_website>
148
 
149
+ <default_role translate="label comment tooltip">
150
+ <label>Default XML-RPC API role</label>
151
  <comment>Default API role name for new mVentory API users</comment>
152
+ <tooltip>mVentory API extension creates "mVentory" XML-RPC role that gives access to all required resources (See System->Web Services->SOAP/XML-RPC - Roles). This role will be assigned to all new mVentory users by default, unless specified otherwise.</tooltip>
153
  <frontend_type>text</frontend_type>
154
 
155
  <show_in_default>1</show_in_default>
156
  <show_in_website>1</show_in_website>
157
  <show_in_store>0</show_in_store>
158
 
159
+ <sort_order>8</sort_order>
160
  </default_role>
161
 
162
+ <apply_rules translate="label comment tooltip">
163
+ <label>Apply mVentory API rules on product save in Magento admin interface</label>
164
  <comment>e.g. category mapping rules, automatic product naming rules</comment>
165
+ <tooltip>mVentory makes product management an easier process by automating a number of tasks (e.g. category assignment, product naming) via a rules-based approach. This automation is always performed when products are edited via the Android app, but it can be disabled for product editing via Magento admin.</tooltip>
166
  <frontend_type>select</frontend_type>
167
  <source_model>adminhtml/system_config_source_yesno</source_model>
168
 
170
  <show_in_website>1</show_in_website>
171
  <show_in_store>0</show_in_store>
172
 
173
+ <sort_order>9</sort_order>
174
  </apply_rules>
175
  </fields>
 
176
  </api>
177
 
178
  <qr translate="label">
179
  <label>Labels</label>
180
  <comment><![CDATA[
181
+ <div style="width: 600px">
182
+ <p>Custom labels (QR codes with unique SKUs) can be generated and printed on self-adhesive sticker paper.
183
+ These can be attached to products that do not have barcodes to make their look-up really fast,
184
+ via the app's Scan function.</p>
185
+
186
+ <p>Configure the properties listed below, save config and click on one of the generate links.</p>
187
+
188
+ <ul>
189
+ <li><a target="_blank" href="/mventory/qr/generate/labels/1">Generate labels</a> &#8211; generate a set of QR codes with unique SKUs.</li>
190
+ <li><a target="_blank" href="/mventory/qr/generate/links/1">Generate links</a></li>
191
+ <li><a target="_blank" href="/mventory/qr/generate/links/1/codes/1">Generate links and codes</a></li>
192
+ <li><a target="_blank" href="/mventory/qr/generate/images/1">Generate image links</a></li>
193
+ <li><a target="_blank" href="/mventory/qr/generate/images/1/codes/1">Generate image links and codes</a></li>
194
+ </ul>
195
+ </div>
196
  ]]></comment>
197
  <frontend_type>text</frontend_type>
198
 
203
  <sort_order>4</sort_order>
204
 
205
  <fields>
206
+ <options_heading translate="label">
207
+ <label>Options</label>
208
+ <frontend_model>adminhtml/system_config_form_field_heading</frontend_model>
209
+
210
+ <show_in_default>1</show_in_default>
211
+ <show_in_website>0</show_in_website>
212
+ <show_in_store>0</show_in_store>
213
+
214
+ <sort_order>1</sort_order>
215
+ </options_heading>
216
+
217
+ <rows translate="label comment">
218
  <label>Rows</label>
219
+ <comment>The number of rows of labels to generate</comment>
220
  <frontend_type>text</frontend_type>
221
 
222
  <show_in_default>1</show_in_default>
223
  <show_in_website>0</show_in_website>
224
  <show_in_store>0</show_in_store>
225
 
226
+ <sort_order>2</sort_order>
227
  </rows>
228
 
229
+ <columns translate="label comment">
230
  <label>Columns</label>
231
+ <comment>The number of columns of labels to generate</comment>
232
  <frontend_type>text</frontend_type>
233
 
234
  <show_in_default>1</show_in_default>
235
  <show_in_website>0</show_in_website>
236
  <show_in_store>0</show_in_store>
237
 
238
+ <sort_order>3</sort_order>
239
  </columns>
240
 
241
+ <size translate="label comment">
242
+ <label>QR code dimensions (pixels)</label>
243
+ <comment>Dimensions of the generated QR code image in pixels</comment>
244
  <frontend_type>text</frontend_type>
245
 
246
  <show_in_default>1</show_in_default>
247
  <show_in_website>0</show_in_website>
248
  <show_in_store>0</show_in_store>
249
 
250
+ <sort_order>4</sort_order>
251
  </size>
252
 
253
+ <pages translate="label comment">
254
  <label>Number of pages</label>
255
+ <comment>Number of pages of labels to generate</comment>
256
  <frontend_type>text</frontend_type>
257
 
258
  <show_in_default>1</show_in_default>
259
  <show_in_website>0</show_in_website>
260
  <show_in_store>0</show_in_store>
261
 
262
+ <sort_order>5</sort_order>
263
  </pages>
264
 
265
  <css translate="label">
270
  <show_in_website>0</show_in_website>
271
  <show_in_store>0</show_in_store>
272
 
273
+ <sort_order>6</sort_order>
274
  </css>
275
 
276
+ <base_url translate="label comment">
277
  <label>Base URL (optional)</label>
278
+ <comment>If not entered, unsecure Base URL will be used</comment>
279
  <frontend_type>text</frontend_type>
280
 
281
  <show_in_default>1</show_in_default>
282
  <show_in_website>0</show_in_website>
283
  <show_in_store>0</show_in_store>
284
 
285
+ <sort_order>7</sort_order>
286
  </base_url>
287
 
288
+ <copies translate="label comment">
289
+ <label>Copies per SKU</label>
290
+ <comment>Number of duplicate labels to generate per SKU</comment>
291
  <frontend_type>text</frontend_type>
292
 
293
  <show_in_default>1</show_in_default>
294
  <show_in_website>0</show_in_website>
295
  <show_in_store>0</show_in_store>
296
 
297
+ <sort_order>8</sort_order>
298
  </copies>
299
  </fields>
300
  </qr>
app/design/adminhtml/default/default/template/mventory/config/build-info.phtml CHANGED
@@ -18,5 +18,5 @@
18
 
19
  ?>
20
 
21
- Build version: ad197bc
22
- <BR/>Build date: 22/04/2015 05:51 UTC
18
 
19
  ?>
20
 
21
+ Build version: b46e52f
22
+ <BR/>Build date: 01/05/2015 06:28 UTC
package.xml CHANGED
@@ -1,5 +1,5 @@
1
  <?xml version="1.0"?>
2
- <package><name>MVentory_API</name><version>1.5.0</version><stability>stable</stability><license>CC BY-NC-ND 4.0</license><channel>community</channel><extends></extends><summary>The easiest way to sell online: PoS, Inventory and Website control in one elegant Android application.</summary><description>mVentory is an Android application for efficient management of Magento stores. This extension provides additional API functionality and is required for the app to connect to your Magento website.
3
 
4
 
5
 
@@ -49,6 +49,5 @@ Creative Commons BY-NC-ND 4.0 (http://creativecommons.org/licenses/by-nc-nd/4.0/
49
 
50
  The extension is free for non-commercial or trial use. Please, request a FREE commercial license from info@mventory.com
51
 
52
- Visit http://mventory.com for more info.</description><notes>* Add additional data (price, QTY, images, etc) to output of product.list API call
53
-
54
- * Other small bug fixies and improvements</notes><authors><author><name>Anatoly A. Kazantsev</name><user>anatoly</user><email>anatoly@mventory.com</email></author></authors><date>2015-04-21</date><time>22:51:15</time><compatible></compatible><dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><dir name="js"><dir name="jquery"><file name="jquery-min.js" hash="baae1db8cca4abb2265b0a6e01f1beed"/><file name="jquery-ui-custom-min.js" hash="e37cbc707c78240780a5ce641f476eb3"/></dir><dir name="mventory"><file name="matching.js" hash="2a3d6d34c60aee3f0efe94ff96fd67fc"/></dir></dir><dir name="var"><dir name="connect"><file name="MVentory_API.xml" hash="045afa5d3ddc5c0b8d1b938d99ee0676"/></dir></dir><dir name="app"><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="mventory.xml" hash="902a95b8b78acdf528e13993eb6f5030"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="mventory.xml" hash="46b4a123593ad761f3521d5b2d4f71bb"/></dir><dir name="template"><dir name="mventory"><file name="element.phtml" hash="cb233713a0e550b2165280231c24360f"/><file name="matching.phtml" hash="5378e331d15f5daf582021dd96d7f130"/><file name="metadata.phtml" hash="29d84bb98175c7ca358e68f49cffa8f3"/><dir name="matching"><file name="categories.phtml" hash="ab29d30352987276065b9e933acd3fcc"/></dir><dir name="customer"><dir name="edit"><file name="js.phtml" hash="36e6fba58aa4eff02bc57e2a1d628d79"/></dir></dir><dir name="config"><file name="build-info.phtml" hash="03a6160cbda741188468e6f79412e532"/></dir></dir></dir></dir></dir></dir></dir><dir name="code"><dir name="community"><dir name="MVentory"><dir name="API"><dir name="controllers"><file name="AppController.php" hash="607581fc3b4810618ac06770c8656e98"/><file name="CarriersController.php" hash="326f66c967a9ee2216be9c6dae043d97"/><file name="CustomerController.php" hash="029f18706ffe07e8a466eb8c30d0a2f9"/><file name="DropboxController.php" hash="e4f9ee9fcafd993e26e931b31c2228c7"/><file name="ImageController.php" hash="deb5c8227a982e8a328479aa88e8f088"/><file name="LogsController.php" hash="96c331e223a6a94ef9d3ba7192d24935"/><file name="MatchingController.php" hash="071284fc5681b70ead84ff2a98f3d519"/><file name="QrController.php" hash="1678dcc58be2ebcb554e7dc0e7c26d80"/><file name="SwitchController.php" hash="1a00ad2aae0845faea5dbe1475e84d8f"/><dir name="Catalog"><file name="ProductController.php" hash="b507cf269539c6dc3fea5e81bada5664"/></dir></dir><dir name="Block"><file name="Matching.php" hash="da741edb96130c120e4eddf0b677bbd2"/><file name="Metadata.php" hash="4b68a44b1f064093ac94722c40c7c651"/><dir name="Setting"><file name="Buildinfo.php" hash="87e71b9cd02e61dff260609be485ca54"/><file name="Fieldset.php" hash="5b5a717192210b9726e5e86ee75949d9"/></dir><dir name="Matching"><file name="Categories.php" hash="e5ffc5a02aa37a43d90079c66eace63b"/></dir><dir name="Carrier"><dir name="Volumerate"><file name="Grid.php" hash="182f5a1eb264ec7648aae468d5faef99"/></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Exportrates.php" hash="aa4a0e11eaa9330ba35f460582290927"/><file name="Imgcliplog.php" hash="05f8dfba30a9acdc6462b5aadbc154e7"/></dir></dir></dir></dir></dir><dir name="data"><dir name="mventory_setup"><file name="data-upgrade-20-21.php" hash="ab6622b831fc5a806d780eff2eacf75b"/><file name="data-upgrade-23-24.php" hash="9d5bd2a2745585d814d3b203008ef2ad"/><file name="data-upgrade-27-28.php" hash="6b63835702467615f932f6fbac78e97d"/><file name="data-upgrade-28-29.php" hash="db2ca19d3162d377bd1927a22f2b6be0"/></dir></dir><dir name="Helper"><file name="Barcode.php" hash="57de68928ed6da93a02a044bf9f93f86"/><file name="Data.php" hash="d8016b9f4770342d10fe8a047ff1d167"/><file name="Image.php" hash="cb931b138f4c90f7f52cf8303ecb6aa2"/><file name="Imageclipper.php" hash="83634ad59a28a237d5cff3e7b1fb5131"/><file name="Product.php" hash="74a8787d1fc9dc4ff4bf3519d5ecab1e"/><file name="String.php" hash="258c2000ce8feb070211e04816e903e3"/><dir name="Mage"><dir name="Sales"><file name="Data.php" hash="84fbc100be8baa83e5dbb5fcecccbd6b"/></dir></dir><dir name="Product"><file name="Attribute.php" hash="130bee848a2d12bc75ed07383d15c190"/><file name="Configurable.php" hash="5f5eadcb33883752a56ad306fadf32dd"/></dir></dir><dir name="sql"><dir name="mventory_setup"><file name="install-3.php" hash="7514f77abff39b3d359a59978784e275"/><file name="upgrade-10-11.php" hash="fb312c3621c87f7b2222ba56e3f83fb9"/><file name="upgrade-12-13.php" hash="aefb35e0871eafd84864f8052ff21423"/><file name="upgrade-17-18.php" hash="a06e899380dd85a175b331fe5b52f324"/><file name="upgrade-18-19.php" hash="00113090ec00f2385c78d28464871c46"/><file name="upgrade-20-21.php" hash="27d45b15f3ba21df99cd90a3750f9c79"/><file name="upgrade-21-22.php" hash="e882fef187fa158587a4451bfced7e45"/><file name="upgrade-22-23.php" hash="e67150b521f86d35027fcafcf3d6000b"/><file name="upgrade-24-25.php" hash="ef3e432929a236bed6ef0d9c19ca3db5"/><file name="upgrade-25-26.php" hash="e134738e9a55fc1691a38b5eb4cbe73e"/><file name="upgrade-26-27.php" hash="fb5e01ee89497e99426f816240791d4a"/><file name="upgrade-3-4.php" hash="9f04a747fe387598a2871cdc8c9caf87"/><file name="upgrade-8-9.php" hash="0e3e3bb76a0cd039910bf17f2956285f"/><file name="upgrade-9-10.php" hash="05ccf6ee0b530dc5bf63b5fe0bc8f044"/></dir></dir><dir name="Model"><file name="Config.php" hash="c1232e1bf9267f2fa120c96087e69191"/><file name="Matching.php" hash="a54d42a7da654d845a1e79c745a2166b"/><file name="Observer.php" hash="265747686a9c80cbcce805c47501cd95"/><file name="Payment.php" hash="d2745860dfb2eca1adbc0f7b3de6fbfc"/><file name="Shipping.php" hash="043c9d12eebdff5016b84e4d86cc1e77"/><dir name="Setting"><dir name="Backend"><file name="Dbxpath.php" hash="cd9272381487b8a599a63cfe123d57b7"/></dir></dir><dir name="Dataflow"><file name="Api.php" hash="bfb1829343503354daf9db216f313976"/></dir><dir name="Category"><file name="Api.php" hash="9628dc59a845bc36a80a490ee808c338"/></dir><dir name="Carrier"><file name="Volumerate.php" hash="609709fdded050a3ac4204464ef6d922"/></dir><dir name="Stock"><dir name="Item"><file name="Api.php" hash="64473e1600fd51600853eddee75d598e"/></dir></dir><dir name="Config"><dir name="Data"><file name="Websites.php" hash="a7314efd0ca3c6adc8594893c64555aa"/></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Carrier"><file name="Volumerate.php" hash="2010718655ff39b4559a369403074fa4"/></dir><dir name="Imgclip"><file name="Backupfolder.php" hash="07bd6a17f8e65d96c47ed52d5f1c38e6"/><file name="Csvlog.php" hash="f3780e5079abb09594e018cfb36e4226"/></dir></dir><dir name="Source"><file name="Allowedshippingtypes.php" hash="d2a6259b9278242d3acf8a0c4f34c763"/><file name="Contenttype.php" hash="e91f6a1a495f1a19e1875fbde4ed5aac"/><file name="Customers.php" hash="b3e615aa64cce43d1bb4cadbe41c2ee7"/><file name="Inputmethod.php" hash="0cdc2b42456faeffd2b86481d2a04940"/><file name="Visibility.php" hash="22a8599fb6867d2fe5887f2f9b0246cb"/><file name="Website.php" hash="b8ea07d8f5c82df42c7f0b9be950bb0e"/></dir></dir></dir><dir name="Product"><file name="Action.php" hash="6cb738d6a133a99d0004cad23fed84e5"/><file name="Api.php" hash="630a4b1ae11395b260a22ad880098573"/><dir name="Attribute"><file name="Api.php" hash="f6c53d7a8988119f2f57bfce34dfd1d2"/><dir name="Set"><file name="Api.php" hash="112da5255f9e73b0bc715bccf5c6103f"/></dir><dir name="Media"><file name="Api.php" hash="c8fde457de5a6c59d345f3eed49d24bb"/></dir></dir></dir><dir name="Resource"><file name="Matching.php" hash="790d70f09cc175f643eccdfff754d92c"/><file name="Product.php" hash="e04d66d258b01579e4e6301a01f70771"/><file name="Setup.php" hash="5ce8cb51734c03b947d37a0eff1b7117"/><file name="Sku.php" hash="21379417a6a30c33f74f0a5ffbdfbac7"/><dir name="Carrier"><file name="Volumerate.php" hash="6763c1a02ff9750fd5d8eca703da05dd"/><dir name="Volumerate"><file name="Collection.php" hash="a5e5852a7d58fa31cb49ef7e4c1e38cf"/></dir></dir><dir name="Product"><file name="Collection.php" hash="5e09f3e940fa105aecb8a74bdde295ac"/></dir><dir name="Cart"><file name="Item.php" hash="3e1cbab71c91eca69f225668d55f3d0d"/></dir><dir name="Entity"><file name="Attribute.php" hash="14461aa0ae2e032b9efb16ebf23096af"/></dir><dir name="Order"><file name="Transaction.php" hash="16b62fc85e4b68443941c8212054cce7"/></dir></dir><dir name="Cart"><file name="Api.php" hash="5e154ff60f57f5d11675be3ad9415579"/><file name="Item.php" hash="84ad9830e7e50a55e28fcd4105521a91"/><dir name="Payment"><file name="Api.php" hash="b9253dd46ee980e322d10be6b7b0ffd7"/></dir></dir><dir name="Order"><file name="Api.php" hash="3d65404a24ab282eee8764d0c77ccaa3"/><file name="Transaction.php" hash="0666f26f229b11f30a1db2dfd6e1bf77"/><dir name="Shipment"><file name="Api.php" hash="f7ac72e14810d9af0ab1f876b57e00b9"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="bceda356fa43b9f5bfc7ab0ea91bafca"/><file name="api.xml" hash="e69c9b6a59cb2bcd4324b53d43bd7440"/><file name="config.xml" hash="1e0e76c76b881d080eceb836b50e5ef7"/><file name="system.xml" hash="eee035212b89d57558f7d9299c53ac58"/></dir></dir></dir><dir name="Hackathon"><dir name="PSR0Autoloader"><dir name="Model"><file name="Observer.php" hash="27ff6168c7057b3d116915c50e34c0a6"/><file name="SplAutoloader.php" hash="ca80992ff765e7fa88c507976205f7e2"/></dir><dir name="etc"><file name="config.xml" hash="4b76d9de1d114e8bf5dfef6fae75d973"/></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Hackathon_PSR0Autoloader.xml" hash="87095bbf80d16f7e97304317761690dd"/><file name="MVentory_API.xml" hash="3002a36d0a49a782ead45dc5bf2d885a"/></dir></dir></dir><dir name="lib"><dir name="Dropbox"><file name="AppInfo.php" hash="b08006228ca38ac11c1a431646536ad9"/><file name="AppInfoLoadException.php" hash="06360c81e5ceafe6d029a72e0d38a58a"/><file name="ArrayEntryStore.php" hash="abfcab905705695de35004a314b05ec0"/><file name="AuthBase.php" hash="b0ac3fdae57cb61152d0f60066cd1e77"/><file name="AuthInfo.php" hash="3166cd194c72d1951d80bb1f7cc572f8"/><file name="AuthInfoLoadException.php" hash="4435a95cc3ad35471b1491834d3462f2"/><file name="Checker.php" hash="7433c56c1a9b53f918a5ad66d3844caf"/><file name="Client.php" hash="1c8fbbf62477bfba8ba7892f624604ef"/><file name="Curl.php" hash="9ff4836a05237b7990eac9a16a6a97ff"/><file name="CurlStreamRelay.php" hash="99b9d4b311110bbef6455cc3769585fc"/><file name="DeserializeException.php" hash="bb74de5ce4ad24ed03efabe52604a300"/><file name="DropboxMetadataHeaderCatcher.php" hash="608e493bbc560cb5d89804b831b38c43"/><file name="Exception.php" hash="1c55eda1bc2e9fb753c1f8f32b95c2e9"/><file name="Host.php" hash="c46c786726fc59c890ee2e588a7c3af6"/><file name="HttpResponse.php" hash="5cb98bfbaac3e48ffb7f1fe4ecab400c"/><file name="OAuth1AccessToken.php" hash="25ed61cb959c4446ec79552a4ce7fa77"/><file name="OAuth1Upgrader.php" hash="f3bc2125746d19bc99c0f4d8887ea3e6"/><file name="Path.php" hash="242a8243ee9f66281058979922e76c7f"/><file name="RequestUtil.php" hash="34e02972f318c99d1a2247bcbb5eeda7"/><file name="SSLTester.php" hash="2aba98547a9915608073438f6370fd15"/><file name="Security.php" hash="252e63a1a377935aa1ef3e40405d3412"/><file name="StreamReadException.php" hash="464bfb0fc75beef2b73e0c5192d0a061"/><file name="ValueStore.php" hash="c932c52f15d67c01a6e3c841f82306dd"/><file name="WebAuth.php" hash="e9e971b77ffc60544a2d9f10a5940eaf"/><file name="WebAuthBase.php" hash="1128a83bbf693e528e68a3c3893aef4f"/><file name="WebAuthNoRedirect.php" hash="87f2494ed95142f7a7e4c968fbb3e09e"/><file name="WriteMode.php" hash="22a3b70bf74feae770e4aa94915a1b1a"/><file name="app-info.json" hash="418aafd4a85212f6b96a1d180c2fd053"/><file name="autoload.php" hash="55bd4af009c75821e0416f33ef5e5fab"/><file name="strict.php" hash="b39f6f3228a1a499ac88ada9ec57ebfd"/><dir name="Exception"><file name="BadRequest.php" hash="5f0ae16a2d28c26bc66ed2e43ac8b4e1"/><file name="BadResponse.php" hash="c534a78bd9436b3ae6130bfbbdf7b8da"/><file name="BadResponseCode.php" hash="9720559b39e522a3acb6a9986b68c711"/><file name="InvalidAccessToken.php" hash="d2106a45d6366d7060d351e89fa738ed"/><file name="NetworkIO.php" hash="1278b1d756b43912f9083985df756305"/><file name="ProtocolError.php" hash="c99f595645d9fba2ddcec415483ea3af"/><file name="RetryLater.php" hash="b3d88a95ffd772f94838ab03c479f6a7"/><file name="ServerError.php" hash="ed7f0cb2dd114e9f60cf12acece68611"/></dir><dir name="certs"><file name="trusted-certs.crt" hash="847f0dc12cc8ddee1969a3ec857facb6"/></dir><dir name="WebAuthException"><file name="BadRequest.php" hash="8b2e77ef6128b2b96c20ec0847c5812b"/><file name="BadState.php" hash="039a2e21cac09f89ab6090e4f9648241"/><file name="Csrf.php" hash="3e2f878255c5366cabcc2880a7c97586"/><file name="NotApproved.php" hash="5d5db96ad13433a081a0db5dcb6d9412"/><file name="Provider.php" hash="5cf549587d95873cfb4a8e96f98d0534"/></dir></dir></dir><dir name="skin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="mventory"><dir name="css"><file name="styles.css" hash="6e0215c7d35145479634fd50b3b996e3"/></dir></dir></dir></dir></dir></dir></target></contents></package>
1
  <?xml version="1.0"?>
2
+ <package><name>MVentory_API</name><version>1.5.1</version><stability>stable</stability><license>CC BY-NC-ND 4.0</license><channel>community</channel><extends></extends><summary>The easiest way to sell online: PoS, Inventory and Website control in one elegant Android application.</summary><description>mVentory is an Android application for efficient management of Magento stores. This extension provides additional API functionality and is required for the app to connect to your Magento website.
3
 
4
 
5
 
49
 
50
  The extension is free for non-commercial or trial use. Please, request a FREE commercial license from info@mventory.com
51
 
52
+ Visit http://mventory.com for more info.</description><notes>* Fix HTTPS handling for android app links
53
+ * Updated config hints and tooltips</notes><authors><author><name>Anatoly A. Kazantsev</name><user>anatoly</user><email>anatoly@mventory.com</email></author></authors><date>2015-04-30</date><time>23:28:59</time><compatible></compatible><dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><dir name="js"><dir name="jquery"><file name="jquery-min.js" hash="baae1db8cca4abb2265b0a6e01f1beed"/><file name="jquery-ui-custom-min.js" hash="e37cbc707c78240780a5ce641f476eb3"/></dir><dir name="mventory"><file name="matching.js" hash="2a3d6d34c60aee3f0efe94ff96fd67fc"/></dir></dir><dir name="var"><dir name="connect"><file name="MVentory_API.xml" hash="ad19646bef2d7d239906d23e10cadd02"/></dir></dir><dir name="app"><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="mventory.xml" hash="902a95b8b78acdf528e13993eb6f5030"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="mventory.xml" hash="46b4a123593ad761f3521d5b2d4f71bb"/></dir><dir name="template"><dir name="mventory"><file name="element.phtml" hash="cb233713a0e550b2165280231c24360f"/><file name="matching.phtml" hash="5378e331d15f5daf582021dd96d7f130"/><file name="metadata.phtml" hash="29d84bb98175c7ca358e68f49cffa8f3"/><dir name="matching"><file name="categories.phtml" hash="ab29d30352987276065b9e933acd3fcc"/></dir><dir name="customer"><dir name="edit"><file name="js.phtml" hash="36e6fba58aa4eff02bc57e2a1d628d79"/></dir></dir><dir name="config"><file name="build-info.phtml" hash="0470743e9162bf38d4746fbb8c20e273"/></dir></dir></dir></dir></dir></dir></dir><dir name="code"><dir name="community"><dir name="MVentory"><dir name="API"><dir name="controllers"><file name="AppController.php" hash="d4ab9585f3853ec17a197aff505be7c5"/><file name="CarriersController.php" hash="326f66c967a9ee2216be9c6dae043d97"/><file name="CustomerController.php" hash="029f18706ffe07e8a466eb8c30d0a2f9"/><file name="DropboxController.php" hash="e4f9ee9fcafd993e26e931b31c2228c7"/><file name="ImageController.php" hash="deb5c8227a982e8a328479aa88e8f088"/><file name="LogsController.php" hash="96c331e223a6a94ef9d3ba7192d24935"/><file name="MatchingController.php" hash="071284fc5681b70ead84ff2a98f3d519"/><file name="QrController.php" hash="1678dcc58be2ebcb554e7dc0e7c26d80"/><file name="SwitchController.php" hash="1a00ad2aae0845faea5dbe1475e84d8f"/><dir name="Catalog"><file name="ProductController.php" hash="b507cf269539c6dc3fea5e81bada5664"/></dir></dir><dir name="Block"><file name="Matching.php" hash="da741edb96130c120e4eddf0b677bbd2"/><file name="Metadata.php" hash="4b68a44b1f064093ac94722c40c7c651"/><dir name="Setting"><file name="Buildinfo.php" hash="87e71b9cd02e61dff260609be485ca54"/><file name="Fieldset.php" hash="5b5a717192210b9726e5e86ee75949d9"/></dir><dir name="Matching"><file name="Categories.php" hash="e5ffc5a02aa37a43d90079c66eace63b"/></dir><dir name="Carrier"><dir name="Volumerate"><file name="Grid.php" hash="182f5a1eb264ec7648aae468d5faef99"/></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Exportrates.php" hash="aa4a0e11eaa9330ba35f460582290927"/><file name="Imgcliplog.php" hash="05f8dfba30a9acdc6462b5aadbc154e7"/></dir></dir></dir></dir></dir><dir name="data"><dir name="mventory_setup"><file name="data-upgrade-20-21.php" hash="ab6622b831fc5a806d780eff2eacf75b"/><file name="data-upgrade-23-24.php" hash="9d5bd2a2745585d814d3b203008ef2ad"/><file name="data-upgrade-27-28.php" hash="6b63835702467615f932f6fbac78e97d"/><file name="data-upgrade-28-29.php" hash="db2ca19d3162d377bd1927a22f2b6be0"/></dir></dir><dir name="Helper"><file name="Barcode.php" hash="57de68928ed6da93a02a044bf9f93f86"/><file name="Data.php" hash="d8016b9f4770342d10fe8a047ff1d167"/><file name="Image.php" hash="cb931b138f4c90f7f52cf8303ecb6aa2"/><file name="Imageclipper.php" hash="83634ad59a28a237d5cff3e7b1fb5131"/><file name="Product.php" hash="74a8787d1fc9dc4ff4bf3519d5ecab1e"/><file name="String.php" hash="258c2000ce8feb070211e04816e903e3"/><dir name="Mage"><dir name="Sales"><file name="Data.php" hash="84fbc100be8baa83e5dbb5fcecccbd6b"/></dir></dir><dir name="Product"><file name="Attribute.php" hash="130bee848a2d12bc75ed07383d15c190"/><file name="Configurable.php" hash="5f5eadcb33883752a56ad306fadf32dd"/></dir></dir><dir name="sql"><dir name="mventory_setup"><file name="install-3.php" hash="7514f77abff39b3d359a59978784e275"/><file name="upgrade-10-11.php" hash="fb312c3621c87f7b2222ba56e3f83fb9"/><file name="upgrade-12-13.php" hash="aefb35e0871eafd84864f8052ff21423"/><file name="upgrade-17-18.php" hash="a06e899380dd85a175b331fe5b52f324"/><file name="upgrade-18-19.php" hash="00113090ec00f2385c78d28464871c46"/><file name="upgrade-20-21.php" hash="27d45b15f3ba21df99cd90a3750f9c79"/><file name="upgrade-21-22.php" hash="e882fef187fa158587a4451bfced7e45"/><file name="upgrade-22-23.php" hash="e67150b521f86d35027fcafcf3d6000b"/><file name="upgrade-24-25.php" hash="ef3e432929a236bed6ef0d9c19ca3db5"/><file name="upgrade-25-26.php" hash="e134738e9a55fc1691a38b5eb4cbe73e"/><file name="upgrade-26-27.php" hash="fb5e01ee89497e99426f816240791d4a"/><file name="upgrade-3-4.php" hash="9f04a747fe387598a2871cdc8c9caf87"/><file name="upgrade-8-9.php" hash="0e3e3bb76a0cd039910bf17f2956285f"/><file name="upgrade-9-10.php" hash="05ccf6ee0b530dc5bf63b5fe0bc8f044"/></dir></dir><dir name="Model"><file name="Config.php" hash="c1232e1bf9267f2fa120c96087e69191"/><file name="Matching.php" hash="a54d42a7da654d845a1e79c745a2166b"/><file name="Observer.php" hash="ffd19ee0abbb1f49d8df1855f37ba01f"/><file name="Payment.php" hash="d2745860dfb2eca1adbc0f7b3de6fbfc"/><file name="Shipping.php" hash="043c9d12eebdff5016b84e4d86cc1e77"/><dir name="Setting"><dir name="Backend"><file name="Dbxpath.php" hash="cd9272381487b8a599a63cfe123d57b7"/></dir></dir><dir name="Dataflow"><file name="Api.php" hash="bfb1829343503354daf9db216f313976"/></dir><dir name="Category"><file name="Api.php" hash="9628dc59a845bc36a80a490ee808c338"/></dir><dir name="Carrier"><file name="Volumerate.php" hash="609709fdded050a3ac4204464ef6d922"/></dir><dir name="Stock"><dir name="Item"><file name="Api.php" hash="64473e1600fd51600853eddee75d598e"/></dir></dir><dir name="Config"><dir name="Data"><file name="Websites.php" hash="a7314efd0ca3c6adc8594893c64555aa"/></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Carrier"><file name="Volumerate.php" hash="2010718655ff39b4559a369403074fa4"/></dir><dir name="Imgclip"><file name="Backupfolder.php" hash="07bd6a17f8e65d96c47ed52d5f1c38e6"/><file name="Csvlog.php" hash="f3780e5079abb09594e018cfb36e4226"/></dir></dir><dir name="Source"><file name="Allowedshippingtypes.php" hash="d2a6259b9278242d3acf8a0c4f34c763"/><file name="Contenttype.php" hash="e91f6a1a495f1a19e1875fbde4ed5aac"/><file name="Customers.php" hash="b3e615aa64cce43d1bb4cadbe41c2ee7"/><file name="Inputmethod.php" hash="0cdc2b42456faeffd2b86481d2a04940"/><file name="Visibility.php" hash="22a8599fb6867d2fe5887f2f9b0246cb"/><file name="Website.php" hash="b8ea07d8f5c82df42c7f0b9be950bb0e"/></dir></dir></dir><dir name="Product"><file name="Action.php" hash="6cb738d6a133a99d0004cad23fed84e5"/><file name="Api.php" hash="630a4b1ae11395b260a22ad880098573"/><dir name="Attribute"><file name="Api.php" hash="f6c53d7a8988119f2f57bfce34dfd1d2"/><dir name="Set"><file name="Api.php" hash="112da5255f9e73b0bc715bccf5c6103f"/></dir><dir name="Media"><file name="Api.php" hash="c8fde457de5a6c59d345f3eed49d24bb"/></dir></dir></dir><dir name="Resource"><file name="Matching.php" hash="790d70f09cc175f643eccdfff754d92c"/><file name="Product.php" hash="e04d66d258b01579e4e6301a01f70771"/><file name="Setup.php" hash="5ce8cb51734c03b947d37a0eff1b7117"/><file name="Sku.php" hash="21379417a6a30c33f74f0a5ffbdfbac7"/><dir name="Carrier"><file name="Volumerate.php" hash="6763c1a02ff9750fd5d8eca703da05dd"/><dir name="Volumerate"><file name="Collection.php" hash="a5e5852a7d58fa31cb49ef7e4c1e38cf"/></dir></dir><dir name="Product"><file name="Collection.php" hash="5e09f3e940fa105aecb8a74bdde295ac"/></dir><dir name="Cart"><file name="Item.php" hash="3e1cbab71c91eca69f225668d55f3d0d"/></dir><dir name="Entity"><file name="Attribute.php" hash="14461aa0ae2e032b9efb16ebf23096af"/></dir><dir name="Order"><file name="Transaction.php" hash="16b62fc85e4b68443941c8212054cce7"/></dir></dir><dir name="Cart"><file name="Api.php" hash="81e07144d21f9cd655abe29732bd4fa7"/><file name="Item.php" hash="84ad9830e7e50a55e28fcd4105521a91"/><dir name="Payment"><file name="Api.php" hash="b9253dd46ee980e322d10be6b7b0ffd7"/></dir></dir><dir name="Order"><file name="Api.php" hash="3d65404a24ab282eee8764d0c77ccaa3"/><file name="Transaction.php" hash="0666f26f229b11f30a1db2dfd6e1bf77"/><dir name="Shipment"><file name="Api.php" hash="f7ac72e14810d9af0ab1f876b57e00b9"/></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="bceda356fa43b9f5bfc7ab0ea91bafca"/><file name="api.xml" hash="e69c9b6a59cb2bcd4324b53d43bd7440"/><file name="config.xml" hash="1e0e76c76b881d080eceb836b50e5ef7"/><file name="system.xml" hash="0d907826800bab7f4acb4379f53d5483"/></dir></dir></dir><dir name="Hackathon"><dir name="PSR0Autoloader"><dir name="Model"><file name="Observer.php" hash="27ff6168c7057b3d116915c50e34c0a6"/><file name="SplAutoloader.php" hash="ca80992ff765e7fa88c507976205f7e2"/></dir><dir name="etc"><file name="config.xml" hash="4b76d9de1d114e8bf5dfef6fae75d973"/></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="Hackathon_PSR0Autoloader.xml" hash="87095bbf80d16f7e97304317761690dd"/><file name="MVentory_API.xml" hash="3002a36d0a49a782ead45dc5bf2d885a"/></dir></dir></dir><dir name="lib"><dir name="Dropbox"><file name="AppInfo.php" hash="b08006228ca38ac11c1a431646536ad9"/><file name="AppInfoLoadException.php" hash="06360c81e5ceafe6d029a72e0d38a58a"/><file name="ArrayEntryStore.php" hash="abfcab905705695de35004a314b05ec0"/><file name="AuthBase.php" hash="b0ac3fdae57cb61152d0f60066cd1e77"/><file name="AuthInfo.php" hash="3166cd194c72d1951d80bb1f7cc572f8"/><file name="AuthInfoLoadException.php" hash="4435a95cc3ad35471b1491834d3462f2"/><file name="Checker.php" hash="7433c56c1a9b53f918a5ad66d3844caf"/><file name="Client.php" hash="1c8fbbf62477bfba8ba7892f624604ef"/><file name="Curl.php" hash="9ff4836a05237b7990eac9a16a6a97ff"/><file name="CurlStreamRelay.php" hash="99b9d4b311110bbef6455cc3769585fc"/><file name="DeserializeException.php" hash="bb74de5ce4ad24ed03efabe52604a300"/><file name="DropboxMetadataHeaderCatcher.php" hash="608e493bbc560cb5d89804b831b38c43"/><file name="Exception.php" hash="1c55eda1bc2e9fb753c1f8f32b95c2e9"/><file name="Host.php" hash="c46c786726fc59c890ee2e588a7c3af6"/><file name="HttpResponse.php" hash="5cb98bfbaac3e48ffb7f1fe4ecab400c"/><file name="OAuth1AccessToken.php" hash="25ed61cb959c4446ec79552a4ce7fa77"/><file name="OAuth1Upgrader.php" hash="f3bc2125746d19bc99c0f4d8887ea3e6"/><file name="Path.php" hash="242a8243ee9f66281058979922e76c7f"/><file name="RequestUtil.php" hash="34e02972f318c99d1a2247bcbb5eeda7"/><file name="SSLTester.php" hash="2aba98547a9915608073438f6370fd15"/><file name="Security.php" hash="252e63a1a377935aa1ef3e40405d3412"/><file name="StreamReadException.php" hash="464bfb0fc75beef2b73e0c5192d0a061"/><file name="ValueStore.php" hash="c932c52f15d67c01a6e3c841f82306dd"/><file name="WebAuth.php" hash="e9e971b77ffc60544a2d9f10a5940eaf"/><file name="WebAuthBase.php" hash="1128a83bbf693e528e68a3c3893aef4f"/><file name="WebAuthNoRedirect.php" hash="87f2494ed95142f7a7e4c968fbb3e09e"/><file name="WriteMode.php" hash="22a3b70bf74feae770e4aa94915a1b1a"/><file name="app-info.json" hash="418aafd4a85212f6b96a1d180c2fd053"/><file name="autoload.php" hash="55bd4af009c75821e0416f33ef5e5fab"/><file name="strict.php" hash="b39f6f3228a1a499ac88ada9ec57ebfd"/><dir name="Exception"><file name="BadRequest.php" hash="5f0ae16a2d28c26bc66ed2e43ac8b4e1"/><file name="BadResponse.php" hash="c534a78bd9436b3ae6130bfbbdf7b8da"/><file name="BadResponseCode.php" hash="9720559b39e522a3acb6a9986b68c711"/><file name="InvalidAccessToken.php" hash="d2106a45d6366d7060d351e89fa738ed"/><file name="NetworkIO.php" hash="1278b1d756b43912f9083985df756305"/><file name="ProtocolError.php" hash="c99f595645d9fba2ddcec415483ea3af"/><file name="RetryLater.php" hash="b3d88a95ffd772f94838ab03c479f6a7"/><file name="ServerError.php" hash="ed7f0cb2dd114e9f60cf12acece68611"/></dir><dir name="certs"><file name="trusted-certs.crt" hash="847f0dc12cc8ddee1969a3ec857facb6"/></dir><dir name="WebAuthException"><file name="BadRequest.php" hash="8b2e77ef6128b2b96c20ec0847c5812b"/><file name="BadState.php" hash="039a2e21cac09f89ab6090e4f9648241"/><file name="Csrf.php" hash="3e2f878255c5366cabcc2880a7c97586"/><file name="NotApproved.php" hash="5d5db96ad13433a081a0db5dcb6d9412"/><file name="Provider.php" hash="5cf549587d95873cfb4a8e96f98d0534"/></dir></dir></dir><dir name="skin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="mventory"><dir name="css"><file name="styles.css" hash="6e0215c7d35145479634fd50b3b996e3"/></dir></dir></dir></dir></dir></dir></target></contents></package>
 
var/connect/MVentory_API.xml CHANGED
@@ -35,10 +35,10 @@ The extension is free for non-commercial or trial use. Please, request a FREE co
35
  Visit http://mventory.com for more info.</description>
36
  <license>CC BY-NC-ND 4.0</license>
37
  <license_uri>http://creativecommons.org/licenses/by-nc-nd/4.0/</license_uri>
38
- <version>1.5.0</version>
39
  <stability>stable</stability>
40
- <notes>* Add additional data (price, QTY, images, etc) to output of product.list API call
41
- * Other small bug fixies and improvements</notes>
42
  <authors>
43
  <name>
44
  <name>Anatoly A. Kazantsev</name>
35
  Visit http://mventory.com for more info.</description>
36
  <license>CC BY-NC-ND 4.0</license>
37
  <license_uri>http://creativecommons.org/licenses/by-nc-nd/4.0/</license_uri>
38
+ <version>1.5.1</version>
39
  <stability>stable</stability>
40
+ <notes>* Fix HTTPS handling for android app links
41
+ * Updated config hints and tooltips</notes>
42
  <authors>
43
  <name>
44
  <name>Anatoly A. Kazantsev</name>