Version Notes
Fixed:
- The extension is working stable even if you have set custom administration URL or "Add Store Code to Urls" option enabled
Download this release
Release Info
Developer | Développeurs EnvoiMoinsCher.com |
Extension | Orbitvu_Sun |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- ORBITVU-SUN-PRODUCT-TELEPORTING-EN.pdf +0 -0
- app/code/community/Orbitvu/Sun/Block/Adminhtml/Catalog/Product/Grid.php +9 -9
- app/code/community/Orbitvu/Sun/Block/Adminhtml/Tabs.php +1 -1
- app/code/community/Orbitvu/Sun/controllers/OrbitvuAdmin.php +1 -1
- app/code/community/Orbitvu/Sun/controllers/OrbitvuConnect.php +2 -2
- app/code/community/Orbitvu/Sun/controllers/OrbitvuDatabaseDriver.php +5 -0
- app/code/community/Orbitvu/Sun/controllers/OrbitvuDatabaseInterface.php +1 -1
- app/code/community/Orbitvu/Sun/controllers/OrbitvuDebugger.php +1 -1
- app/code/community/Orbitvu/Sun/etc/config.xml +1 -1
- app/code/community/Orbitvu/Sun/etc/system.xml +1 -1
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.2.php +23 -0
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.3.php +23 -0
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.0-1.0.3.php +17 -0
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.1-1.0.3.php +17 -0
- app/design/adminhtml/default/default/template/sun/orbitvu.phtml +1 -1
- package.xml +5 -7
ORBITVU-SUN-PRODUCT-TELEPORTING-EN.pdf
ADDED
Binary file
|
app/code/community/Orbitvu/Sun/Block/Adminhtml/Catalog/Product/Grid.php
CHANGED
@@ -59,18 +59,18 @@ class Orbitvu_Sun_Block_Adminhtml_Catalog_Product_Grid extends Mage_Adminhtml_Bl
|
|
59 |
|
60 |
$orbitvu_connected = $observer->_Orbitvu->IsConnected();
|
61 |
//------------------------------------------------------------------------------------------------------------------
|
62 |
-
$o_configuration_url = explode('/
|
63 |
-
$o_configuration_url = '*/'.$o_configuration_url[1];
|
64 |
|
65 |
-
$o_update_url = explode('/
|
66 |
-
$o_update_url = '*/'.$o_update_url[1];
|
67 |
|
68 |
-
$o_close_url = explode('/
|
69 |
-
$o_close_url = '*/'.$o_close_url[1];
|
70 |
-
|
71 |
-
$o_close_welcome_url = explode('/admin/', $this->getUrl('*/catalog_product/index/sun/dismiss_welcome'));
|
72 |
-
$o_close_welcome_url = '*/'.$o_close_welcome_url[1];
|
73 |
|
|
|
|
|
|
|
74 |
$display_first_time = true;
|
75 |
//------------------------------------------------------------------------------------------------------------------
|
76 |
|
59 |
|
60 |
$orbitvu_connected = $observer->_Orbitvu->IsConnected();
|
61 |
//------------------------------------------------------------------------------------------------------------------
|
62 |
+
$o_configuration_url = explode('/system_config/', $this->getUrl('*/system_config/edit/section/orbitvu/'));
|
63 |
+
$o_configuration_url = '*/system_config/'.$o_configuration_url[count($o_configuration_url)-1];
|
64 |
|
65 |
+
$o_update_url = explode('/catalog_product/', $this->getUrl('*/catalog_product/index/sun/update'));
|
66 |
+
$o_update_url = '*/catalog_product/'.$o_update_url[count($o_configuration_url)-1];
|
67 |
|
68 |
+
$o_close_url = explode('/catalog_product/', $this->getUrl('*/catalog_product/index/sun/dismiss'));
|
69 |
+
$o_close_url = '*/catalog_product/'.$o_close_url[count($o_configuration_url)-1];
|
|
|
|
|
|
|
70 |
|
71 |
+
$o_close_welcome_url = explode('/catalog_product/', $this->getUrl('*/catalog_product/index/sun/dismiss_welcome'));
|
72 |
+
$o_close_welcome_url = '*/catalog_product/'.$o_close_welcome_url[count($o_configuration_url)-1];
|
73 |
+
|
74 |
$display_first_time = true;
|
75 |
//------------------------------------------------------------------------------------------------------------------
|
76 |
|
app/code/community/Orbitvu/Sun/Block/Adminhtml/Tabs.php
CHANGED
@@ -23,7 +23,7 @@ class Orbitvu_Sun_Block_Adminhtml_Tabs extends Mage_Adminhtml_Block_Catalog_Prod
|
|
23 |
|
24 |
if ($product_id > 0) {
|
25 |
$this->addTab('tabid', array(
|
26 |
-
'label' => Mage::helper('catalog')->__('Orbitvu'),
|
27 |
'content' => $this->getLayout()->createBlock('sun/adminhtml_tabs_tabid')->toHtml()
|
28 |
));
|
29 |
}
|
23 |
|
24 |
if ($product_id > 0) {
|
25 |
$this->addTab('tabid', array(
|
26 |
+
'label' => Mage::helper('catalog')->__('Orbitvu SUN'),
|
27 |
'content' => $this->getLayout()->createBlock('sun/adminhtml_tabs_tabid')->toHtml()
|
28 |
));
|
29 |
}
|
app/code/community/Orbitvu/Sun/controllers/OrbitvuAdmin.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
*/
|
6 |
|
7 |
-
class OrbitvuAdmin {
|
8 |
|
9 |
/**
|
10 |
* Database driver instance
|
4 |
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
*/
|
6 |
|
7 |
+
final class OrbitvuAdmin {
|
8 |
|
9 |
/**
|
10 |
* Database driver instance
|
app/code/community/Orbitvu/Sun/controllers/OrbitvuConnect.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
*/
|
6 |
|
7 |
-
class Orbitvu {
|
8 |
|
9 |
/**
|
10 |
* License Key
|
@@ -335,7 +335,7 @@ class Orbitvu {
|
|
335 |
* Set the access token
|
336 |
*/
|
337 |
$header[] = "Authorization: Token ".$this->access_token;
|
338 |
-
$header[] = "Accept-User-Agent:
|
339 |
$header[] = "Accept-User-Agent-Version: ".$this->curl_version;
|
340 |
|
341 |
//----------------------------------------------------------
|
4 |
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
*/
|
6 |
|
7 |
+
final class Orbitvu {
|
8 |
|
9 |
/**
|
10 |
* License Key
|
335 |
* Set the access token
|
336 |
*/
|
337 |
$header[] = "Authorization: Token ".$this->access_token;
|
338 |
+
$header[] = "Accept-User-Agent: ".OrbitvuDatabaseDriver::DRIVER_VERSION;
|
339 |
$header[] = "Accept-User-Agent-Version: ".$this->curl_version;
|
340 |
|
341 |
//----------------------------------------------------------
|
app/code/community/Orbitvu/Sun/controllers/OrbitvuDatabaseDriver.php
CHANGED
@@ -22,6 +22,11 @@ class OrbitvuDatabaseDriver {
|
|
22 |
*/
|
23 |
private $db_last_id = 0;
|
24 |
|
|
|
|
|
|
|
|
|
|
|
25 |
/**
|
26 |
* Connect to database
|
27 |
*/
|
22 |
*/
|
23 |
private $db_last_id = 0;
|
24 |
|
25 |
+
/**
|
26 |
+
* Driver version (ID)
|
27 |
+
*/
|
28 |
+
const DRIVER_VERSION = '1.0.1';
|
29 |
+
|
30 |
/**
|
31 |
* Connect to database
|
32 |
*/
|
app/code/community/Orbitvu/Sun/controllers/OrbitvuDatabaseInterface.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
*/
|
6 |
|
7 |
-
class OrbitvuDatabaseInterface {
|
8 |
|
9 |
/**
|
10 |
* Database driver instance
|
4 |
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
*/
|
6 |
|
7 |
+
final class OrbitvuDatabaseInterface {
|
8 |
|
9 |
/**
|
10 |
* Database driver instance
|
app/code/community/Orbitvu/Sun/controllers/OrbitvuDebugger.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
*/
|
6 |
|
7 |
-
class OrbitvuDebugger {
|
8 |
|
9 |
/**
|
10 |
* Debugger
|
4 |
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
*/
|
6 |
|
7 |
+
final class OrbitvuDebugger {
|
8 |
|
9 |
/**
|
10 |
* Debugger
|
app/code/community/Orbitvu/Sun/etc/config.xml
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
<config>
|
10 |
<modules>
|
11 |
<Orbitvu_Sun>
|
12 |
-
<version>1.0.
|
13 |
</Orbitvu_Sun>
|
14 |
</modules>
|
15 |
<global>
|
9 |
<config>
|
10 |
<modules>
|
11 |
<Orbitvu_Sun>
|
12 |
+
<version>1.0.3</version>
|
13 |
</Orbitvu_Sun>
|
14 |
</modules>
|
15 |
<global>
|
app/code/community/Orbitvu/Sun/etc/system.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<sections>
|
4 |
<orbitvu translate="label">
|
5 |
-
<label>Orbitvu</label>
|
6 |
<tab>catalog</tab>
|
7 |
<frontend_type>text</frontend_type>
|
8 |
<sort_order>30</sort_order>
|
2 |
<config>
|
3 |
<sections>
|
4 |
<orbitvu translate="label">
|
5 |
+
<label>Orbitvu SUN</label>
|
6 |
<tab>catalog</tab>
|
7 |
<frontend_type>text</frontend_type>
|
8 |
<sort_order>30</sort_order>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.2.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
4 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
+
*
|
6 |
+
* @For: Magento
|
7 |
+
*/
|
8 |
+
|
9 |
+
/*
|
10 |
+
* Start installation
|
11 |
+
*/
|
12 |
+
|
13 |
+
$installer = $this;
|
14 |
+
$installer->startSetup();
|
15 |
+
|
16 |
+
$inc = Mage::getBaseDir('app').'/code/community/Orbitvu/Sun/controllers/OrbitvuAdmin.php';
|
17 |
+
include_once($inc);
|
18 |
+
|
19 |
+
$_Orbitvu = new OrbitvuAdmin(false);
|
20 |
+
$_Orbitvu->Install();
|
21 |
+
|
22 |
+
$installer->endSetup();
|
23 |
+
?>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.3.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
4 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
+
*
|
6 |
+
* @For: Magento
|
7 |
+
*/
|
8 |
+
|
9 |
+
/*
|
10 |
+
* Start installation
|
11 |
+
*/
|
12 |
+
|
13 |
+
$installer = $this;
|
14 |
+
$installer->startSetup();
|
15 |
+
|
16 |
+
$inc = Mage::getBaseDir('app').'/code/community/Orbitvu/Sun/controllers/OrbitvuAdmin.php';
|
17 |
+
include_once($inc);
|
18 |
+
|
19 |
+
$_Orbitvu = new OrbitvuAdmin(false);
|
20 |
+
$_Orbitvu->Install();
|
21 |
+
|
22 |
+
$installer->endSetup();
|
23 |
+
?>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.0-1.0.3.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
4 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
+
*
|
6 |
+
* @For: Magento
|
7 |
+
*/
|
8 |
+
|
9 |
+
/*
|
10 |
+
* Start installation
|
11 |
+
*/
|
12 |
+
|
13 |
+
$installer = $this;
|
14 |
+
$installer->startSetup();
|
15 |
+
|
16 |
+
$installer->endSetup();
|
17 |
+
?>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.1-1.0.3.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
4 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
+
*
|
6 |
+
* @For: Magento
|
7 |
+
*/
|
8 |
+
|
9 |
+
/*
|
10 |
+
* Start installation
|
11 |
+
*/
|
12 |
+
|
13 |
+
$installer = $this;
|
14 |
+
$installer->startSetup();
|
15 |
+
|
16 |
+
$installer->endSetup();
|
17 |
+
?>
|
app/design/adminhtml/default/default/template/sun/orbitvu.phtml
CHANGED
@@ -457,7 +457,7 @@ if ($items_count == 0) {
|
|
457 |
button.orbitvu-button-ok span span { background-position: -32px -76px !important; background-image: url(<?=Mage::getBaseUrl('media')?>orbitvu/black.png) !important; }
|
458 |
button.orbitvu-button-cancel span span { background-position: -48px -76px !important; background-image: url(<?=Mage::getBaseUrl('media')?>orbitvu/black.png) !important; }
|
459 |
button.orbitvu-button-disabled { opacity: 0.5; cursor: default; }
|
460 |
-
button.orbitvu-button-disabled:hover, button.orbitvu-button-disabled.active { background: url(
|
461 |
.dragstate span.orbitvu-visibility { display: none !important; }
|
462 |
|
463 |
.presentation_types { width: 80px; position: absolute; bottom: 5px; left: 0; }
|
457 |
button.orbitvu-button-ok span span { background-position: -32px -76px !important; background-image: url(<?=Mage::getBaseUrl('media')?>orbitvu/black.png) !important; }
|
458 |
button.orbitvu-button-cancel span span { background-position: -48px -76px !important; background-image: url(<?=Mage::getBaseUrl('media')?>orbitvu/black.png) !important; }
|
459 |
button.orbitvu-button-disabled { opacity: 0.5; cursor: default; }
|
460 |
+
button.orbitvu-button-disabled:hover, button.orbitvu-button-disabled.active { background: url(<?=$this->getSkinUrl('images/btn_bg-disabled.gif')?>) 0px 0px repeat-x #919191 !important; opacity: 0.5 !important; }
|
461 |
.dragstate span.orbitvu-visibility { display: none !important; }
|
462 |
|
463 |
.presentation_types { width: 80px; position: absolute; bottom: 5px; left: 0; }
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Orbitvu_Sun</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>Commercial</license>
|
7 |
<channel>community</channel>
|
@@ -11,13 +11,11 @@
|
|
11 |

|
12 |
This extension is provided by ORBITVU – the global leader for automated imaging solutions. It is a part of ORBITVU end to end imaging solutions and requires ORBITVU SUN account to function (DEMO available without registration).</description>
|
13 |
<notes>Fixed:
|
14 |
-
-
|
15 |
-
- New version notification now turns off after update,
|
16 |
-
- "Edit on SUN" button now links correctly.</notes>
|
17 |
<authors><author><name>Orbitvu</name><user>dev</user><email>dev@orbitvu.com</email></author></authors>
|
18 |
-
<date>2014-
|
19 |
-
<time>
|
20 |
-
<contents><target name="magecommunity"><dir name="Orbitvu"><dir
|
21 |
<compatible/>
|
22 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
23 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Orbitvu_Sun</name>
|
4 |
+
<version>1.0.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Commercial</license>
|
7 |
<channel>community</channel>
|
11 |

|
12 |
This extension is provided by ORBITVU – the global leader for automated imaging solutions. It is a part of ORBITVU end to end imaging solutions and requires ORBITVU SUN account to function (DEMO available without registration).</description>
|
13 |
<notes>Fixed:
|
14 |
+
- The extension is working stable even if you have set custom administration URL or "Add Store Code to Urls" option enabled</notes>
|
|
|
|
|
15 |
<authors><author><name>Orbitvu</name><user>dev</user><email>dev@orbitvu.com</email></author></authors>
|
16 |
+
<date>2014-09-29</date>
|
17 |
+
<time>12:53:08</time>
|
18 |
+
<contents><target name="magecommunity"><dir name="Orbitvu"><dir name="Sun"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="fb97fff10021ca4630dee919929d28c8"/><file name="Gridrenderer.php" hash="b86affaf935201508bb02e4b8975c988"/></dir></dir><dir name="Tabs"><file name="Tabid.php" hash="b90c1cac87797ebf579b7ebe694e53d3"/></dir><file name="Tabs.php" hash="cfa2df401d503f300f615d979f8eeab5"/></dir><file name="Delay.php" hash="570f327292c20cfc3e2ec5faf0687116"/><file name="Html5.php" hash="b7a6020751d85af690eed068a0f5eaf8"/><file name="KeyComment.php" hash="3a832bb181f1e709d5cf4bba4f55338f"/><file name="Orbittour.php" hash="f9d6c22b7c37b58771119dc2af3f0b00"/><dir name="Product"><dir name="View"><file name="Media.php" hash="d6c5268510a19afcd3ef273634913373"/></dir></dir><file name="Syncsku.php" hash="dd57437599190a466d9ccf3ec8d47890"/><file name="Teaser.php" hash="f67f531671bcad679b433d7635236a35"/></dir><dir name="Model"><file name="Observer.php" hash="179b1722217f83e23c908c97e1c786ef"/><dir name="Resource"><file name="Setup.php" hash="2cfd8dccd322e056cb4816e697bd9efd"/><file name="Sun.php" hash="8322d1a43b6aee941dc297bf31253504"/></dir></dir><dir name="controllers"><file name="OrbitvuAdmin.php" hash="e308b238cc1d90d5afeabe6a3409bc2b"/><file name="OrbitvuConnect.php" hash="2da45ee73fedc73b4327fe5f69184884"/><file name="OrbitvuDatabaseDriver.php" hash="eab7231e8cc5ad5be23f2731765dba86"/><file name="OrbitvuDatabaseInterface.php" hash="cfccbd4a1a2947eaf56710eb3fabe72b"/><file name="OrbitvuDebugger.php" hash="b77202848b43fbc7861845f352ab3239"/><file name="OrbitvuTests.php" hash="dde56bcf50d16cf7613a4e3ae4093a30"/></dir><dir name="etc"><file name="adminhtml.xml" hash="a591f49aaf7da8e8d22f545f3904bb95"/><file name="config.xml" hash="cebd40d146321776738f5c997de1eb7c"/><file name="local.xml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="system.xml" hash="ec8ddcc65ab895e72e51dca62bd7257d"/><file name="translations.xml" hash="47ff4445ef63971e669c5f34cd2376fb"/></dir><dir name="sql"><dir name="sun_setup"><file name="mysql4-install-1.0.0.php" hash="59cda0e64aa6ad62bf9af90ef033ffe0"/><file name="mysql4-install-1.0.1.php" hash="59cda0e64aa6ad62bf9af90ef033ffe0"/><file name="mysql4-install-1.0.2.php" hash="59cda0e64aa6ad62bf9af90ef033ffe0"/><file name="mysql4-install-1.0.3.php" hash="59cda0e64aa6ad62bf9af90ef033ffe0"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="aecb76aad6bec961bbe742405af812ff"/><file name="mysql4-upgrade-1.0.0-1.0.2.php" hash="aecb76aad6bec961bbe742405af812ff"/><file name="mysql4-upgrade-1.0.0-1.0.3.php" hash="aecb76aad6bec961bbe742405af812ff"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="aecb76aad6bec961bbe742405af812ff"/><file name="mysql4-upgrade-1.0.1-1.0.3.php" hash="aecb76aad6bec961bbe742405af812ff"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="sun"><file name="orbitvu.phtml" hash="fa0f077af8a1f0f8b4adb783417663e2"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="sun.xml" hash="08f04468f5e883345cad2e6f5f9c4666"/></dir><dir name="template"><dir name="orbitvu"><dir name="product"><dir name="view"><file name="media.phtml" hash="c0ab5b12d59e3249d03347c7baa069dd"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="orbitvu"><file name="black.png" hash="64dcb45b20e5e2e0cc07c62a843f8f68"/><file name="blue.png" hash="fa8b00e52ec0bf7cb9937b1d5789740c"/><file name="loader.gif" hash="875eec6b429c57e0eff9ba7c182072cd"/><file name="logo.png" hash="622ada057aadbe23af717431e85ef94f"/><file name="orbit.png" hash="c390d8598792d9cc86b19e9afef0ea4a"/><file name="placeholder.png" hash="43b6e81dc733e7d8fb279e54b5f39b3f"/><dir><dir name="thumbnails"><file name="index" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir><file name="white.png" hash="ff7713f7b45a4b7a4b5d8304eb3c655c"/></dir></target><target name="mage"><dir name="."><file name="crossdomain.xml" hash="6960cde6dd98feb5406c6b185521b041"/><file name="ORBITVU-SUN-PRODUCT-TELEPORTING-EN.pdf" hash="b329d3467575cbb1013964cff30c9261"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Orbitvu_Sun.csv" hash=""/></dir><dir name="en_US"><file name="Orbitvu_Sun.csv" hash="7c5ea48271819e56b9253d2660012728"/></dir><dir name="es_ES"><file name="Orbitvu_Sun.csv" hash=""/></dir><dir name="pl_PL"><file name="Orbitvu_Sun.csv" hash=""/></dir></target><target name="mageetc"><dir name="modules"><file name="Orbitvu_Sun.xml" hash="76f32cd06e5fb1aa4eda72a34c010d99"/></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
21 |
</package>
|