Version Notes
-fixed viewer initialization
Download this release
Release Info
Developer | Développeurs EnvoiMoinsCher.com |
Extension | Orbitvu_Sun |
Version | 1.0.8 |
Comparing to | |
See all releases |
Code changes from version 1.0.7 to 1.0.8
- app/code/community/Orbitvu/Sun/etc/config.xml +1 -1
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.8.php +24 -0
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.7-1.0.8.php +17 -0
- app/design/frontend/base/default/template/orbitvu/product/view/media.phtml +12 -3
- package.xml +5 -5
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.8</version>
|
13 |
</Orbitvu_Sun>
|
14 |
</modules>
|
15 |
<global>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.8.php
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
<?php
|
3 |
+
/**
|
4 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
5 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
6 |
+
*
|
7 |
+
* @For: Magento
|
8 |
+
*/
|
9 |
+
|
10 |
+
/*
|
11 |
+
* Start installation
|
12 |
+
*/
|
13 |
+
|
14 |
+
$installer = $this;
|
15 |
+
$installer->startSetup();
|
16 |
+
|
17 |
+
$inc = Mage::getBaseDir('app').'/code/community/Orbitvu/Sun/controllers/OrbitvuAdmin.php';
|
18 |
+
include_once($inc);
|
19 |
+
|
20 |
+
$_Orbitvu = new OrbitvuAdmin(false);
|
21 |
+
$_Orbitvu->Install();
|
22 |
+
|
23 |
+
$installer->endSetup();
|
24 |
+
?>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.7-1.0.8.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/frontend/base/default/template/orbitvu/product/view/media.phtml
CHANGED
@@ -398,7 +398,7 @@ else if ($all_items > 0) {
|
|
398 |
/*
|
399 |
* Orbitvu Public Declarations
|
400 |
*/
|
401 |
-
var orbitvu_timer, orbitvu_rectangle, orbitvu_current_image, orbitvu_init_interval, orbitvu_box_width, orbitvu_box_height, orbitvu_switch_timer
|
402 |
var orbitvu_image_thumbs = Orb$('orbitvu-image-thumbs');
|
403 |
var orbitvu_speed = 24;
|
404 |
var orbitvu_xAll = 0;
|
@@ -961,7 +961,12 @@ function OrbitvuInit() {
|
|
961 |
<?php
|
962 |
if (!empty($view_360['path'])) {
|
963 |
?>
|
964 |
-
orbitvu_360_interval
|
|
|
|
|
|
|
|
|
|
|
965 |
<?php
|
966 |
}
|
967 |
?>
|
@@ -969,7 +974,11 @@ function OrbitvuInit() {
|
|
969 |
<?php
|
970 |
if (!empty($orbittour['path'])) {
|
971 |
?>
|
972 |
-
orbitvu_tour_interval
|
|
|
|
|
|
|
|
|
973 |
<?php
|
974 |
}
|
975 |
?>
|
398 |
/*
|
399 |
* Orbitvu Public Declarations
|
400 |
*/
|
401 |
+
var orbitvu_timer, orbitvu_rectangle, orbitvu_current_image, orbitvu_init_interval, orbitvu_box_width, orbitvu_box_height, orbitvu_switch_timer;
|
402 |
var orbitvu_image_thumbs = Orb$('orbitvu-image-thumbs');
|
403 |
var orbitvu_speed = 24;
|
404 |
var orbitvu_xAll = 0;
|
961 |
<?php
|
962 |
if (!empty($view_360['path'])) {
|
963 |
?>
|
964 |
+
if (typeof(orbitvu_360_interval) == 'undefined') {
|
965 |
+
orbitvu_360_interval = setInterval('orbitvu_inject_360()', 500);
|
966 |
+
}
|
967 |
+
else {
|
968 |
+
orbitvu_inject_360();
|
969 |
+
}
|
970 |
<?php
|
971 |
}
|
972 |
?>
|
974 |
<?php
|
975 |
if (!empty($orbittour['path'])) {
|
976 |
?>
|
977 |
+
if (typeof(orbitvu_tour_interval) == 'undefined') {
|
978 |
+
orbitvu_tour_interval = setInterval('orbitvu_inject_tour()', 500);
|
979 |
+
} else {
|
980 |
+
orbitvu_inject_tour()
|
981 |
+
}
|
982 |
<?php
|
983 |
}
|
984 |
?>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
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>
|
8 |
<extends/>
|
9 |
<summary>Automate and improve your customer's expierience with dynamic zoom, 360°/3D spins, product tours using ORBITVU imaging solution.</summary>
|
10 |
<description>Orbitvu SUN Product Teleporting extension will improve your store product experience with interactive product tours, 360°/3D image spins and dynamic zoom on desktop and mobile. It will automate and facilitate your imaging workflow as never before. This extension is provided by ORBITVU – the global leader for automated imaging solutions.</description>
|
11 |
-
<notes>-fixed
|
12 |
<authors><author><name>Orbitvu</name><user>dev</user><email>dev@orbitvu.com</email></author></authors>
|
13 |
-
<date>2015-
|
14 |
-
<time>
|
15 |
-
<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="566e3b0df121fb937d4a365387df8d9a"/><file name="Gridrenderer.php" hash="5faf1727cec7245a8da6d60e5d7d8e0f"/></dir></dir><dir name="Tabs"><file name="Tabid.php" hash="fcbed1fa070be0ca4838eb52a16d07ca"/></dir><file name="Tabs.php" hash="71403fb00d7ac0b46ea7fdce66ad55af"/></dir><file name="Delay.php" hash="035d8fca636cce61d33f08200725a5f1"/><file name="Html5.php" hash="208cecc71503046beefa9c02579a8263"/><file name="KeyComment.php" hash="a55dd2bfd936cbf687ed62c9bb163a26"/><file name="Orbittour.php" hash="727eccc98132ca01bd6e83ea8c7b6588"/><dir name="Product"><dir name="View"><file name="Media.php" hash="5f5b110f4b5330e9fd3bd6723eb49d92"/></dir></dir><file name="Scroll.php" hash="6c1413ee3054f871fc5ea989361dad13"/><file name="Syncsku.php" hash="495ac1a5f3a3d8409b1a66f2ca62c40b"/><file name="Teaser.php" hash="8e4070b43b663badab737921742821d7"/></dir><dir name="Model"><file name="Observer.php" hash="84baba1ac62f328c61b23ed80d37aeb1"/><dir name="Resource"><file name="Setup.php" hash="f34f2bf697d3b554f2f90453a9f9203c"/><file name="Sun.php" hash="9fdb47d4318346d2f506e246f37ed0cc"/></dir></dir><dir name="controllers"><file name="OrbitvuAdmin.php" hash="2dca4e09d15b202955dd0f80832d9e83"/><file name="OrbitvuConnect.php" hash="9323cefbb48713d4e8764a8f7abfa3a1"/><file name="OrbitvuDatabaseDriver.php" hash="407d3bdd621bc69b97cbc44f75331ca4"/><file name="OrbitvuDatabaseInterface.php" hash="a477911c34159dd410804b32473b9dd9"/><file name="OrbitvuDebugger.php" hash="2a1dd59fa2512a1ce877c5b9b1f8819d"/><file name="OrbitvuTests.php" hash="cdeeeaba1fd5b70ecfaea03e8718cd66"/></dir><dir name="etc"><file name="adminhtml.xml" hash="634a0d073117091e52853a3336e0e61f"/><file name="config.xml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Orbitvu_Sun</name>
|
4 |
+
<version>1.0.8</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Commercial</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Automate and improve your customer's expierience with dynamic zoom, 360°/3D spins, product tours using ORBITVU imaging solution.</summary>
|
10 |
<description>Orbitvu SUN Product Teleporting extension will improve your store product experience with interactive product tours, 360°/3D image spins and dynamic zoom on desktop and mobile. It will automate and facilitate your imaging workflow as never before. This extension is provided by ORBITVU – the global leader for automated imaging solutions.</description>
|
11 |
+
<notes>-fixed viewer initialization</notes>
|
12 |
<authors><author><name>Orbitvu</name><user>dev</user><email>dev@orbitvu.com</email></author></authors>
|
13 |
+
<date>2015-07-14</date>
|
14 |
+
<time>12:56:45</time>
|
15 |
+
<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="566e3b0df121fb937d4a365387df8d9a"/><file name="Gridrenderer.php" hash="5faf1727cec7245a8da6d60e5d7d8e0f"/></dir></dir><dir name="Tabs"><file name="Tabid.php" hash="fcbed1fa070be0ca4838eb52a16d07ca"/></dir><file name="Tabs.php" hash="71403fb00d7ac0b46ea7fdce66ad55af"/></dir><file name="Delay.php" hash="035d8fca636cce61d33f08200725a5f1"/><file name="Html5.php" hash="208cecc71503046beefa9c02579a8263"/><file name="KeyComment.php" hash="a55dd2bfd936cbf687ed62c9bb163a26"/><file name="Orbittour.php" hash="727eccc98132ca01bd6e83ea8c7b6588"/><dir name="Product"><dir name="View"><file name="Media.php" hash="5f5b110f4b5330e9fd3bd6723eb49d92"/></dir></dir><file name="Scroll.php" hash="6c1413ee3054f871fc5ea989361dad13"/><file name="Syncsku.php" hash="495ac1a5f3a3d8409b1a66f2ca62c40b"/><file name="Teaser.php" hash="8e4070b43b663badab737921742821d7"/></dir><dir name="Model"><file name="Observer.php" hash="84baba1ac62f328c61b23ed80d37aeb1"/><dir name="Resource"><file name="Setup.php" hash="f34f2bf697d3b554f2f90453a9f9203c"/><file name="Sun.php" hash="9fdb47d4318346d2f506e246f37ed0cc"/></dir></dir><dir name="controllers"><file name="OrbitvuAdmin.php" hash="2dca4e09d15b202955dd0f80832d9e83"/><file name="OrbitvuConnect.php" hash="9323cefbb48713d4e8764a8f7abfa3a1"/><file name="OrbitvuDatabaseDriver.php" hash="407d3bdd621bc69b97cbc44f75331ca4"/><file name="OrbitvuDatabaseInterface.php" hash="a477911c34159dd410804b32473b9dd9"/><file name="OrbitvuDebugger.php" hash="2a1dd59fa2512a1ce877c5b9b1f8819d"/><file name="OrbitvuTests.php" hash="cdeeeaba1fd5b70ecfaea03e8718cd66"/></dir><dir name="etc"><file name="adminhtml.xml" hash="634a0d073117091e52853a3336e0e61f"/><file name="config.xml" hash="5315575980891596451e0ac7e37be9dc"/><file name="local.xml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="system.xml" hash="a1955dd0392f17ad7fc8f57f699e183d"/><file name="translations.xml" hash="f27262b561cacd1a2fb1a1e56e0e8946"/></dir><dir name="sql"><dir name="sun_setup"><file name="mysql4-install-1.0.0.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.1.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.2.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.3.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.4.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.5.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.6.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.7.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.8.php" hash="9373e4eeaedb93cdad12a07964d88200"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="c06d3cbe9dc35d61e7bc6fdd202c68e7"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="c06d3cbe9dc35d61e7bc6fdd202c68e7"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="c06d3cbe9dc35d61e7bc6fdd202c68e7"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="c06d3cbe9dc35d61e7bc6fdd202c68e7"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="c06d3cbe9dc35d61e7bc6fdd202c68e7"/><file name="mysql4-upgrade-1.0.5-1.0.6.php" hash="a2204f7a4d7fcf05e309614d04318084"/><file name="mysql4-upgrade-1.0.6-1.0.7.php" hash="8a1a419119da4fb35e18df5337de1c20"/><file name="mysql4-upgrade-1.0.7-1.0.8.php" hash="8a1a419119da4fb35e18df5337de1c20"/></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="5e8dc45a3a64c1b34c3769f9d6d28d4f"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="sun.xml" hash="ea7cdb4f7d88f32f1872c3f975be5345"/></dir><dir name="template"><dir name="orbitvu"><dir name="product"><dir name="view"><file name="media.phtml" hash="1fe07e70d5c5ce7fd49b3a3f3655cb27"/></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="3d73360d10233f48441db7ed045c3952"/><file name="ORBITVU-SUN-PRODUCT-TELEPORTING-EN.pdf" hash="069f8c15618e9ffe28dfc1e1efb6adf8"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Orbitvu_Sun.csv" hash="a60459310ed2b1e93062eae927b71979"/></dir></target><target name="mageetc"><dir name="modules"><file name="Orbitvu_Sun.xml" hash="04b339680876cb29b6c59758cfed3b8a"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|