Skip to content

Commit

Permalink
Version 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyHeleine committed Sep 12, 2015
1 parent b08a971 commit a3f3556
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
WP Photo Sphere is a filter that allows you to display 360×180 degree panoramas. With WP Photo Sphere, your visitors will be able
to navigate through your panoramas without install any plugin.

WP Photo Sphere is based on the JavaScript library [Photo Sphere Viewer](http://jeremyheleine.me/#photo-sphere-viewer).
WP Photo Sphere is based on the JavaScript library [Photo Sphere Viewer](https://github.com/JeremyHeleine/Photo-Sphere-Viewer).

This plugin allows you to display equirectangular panoramas, taken with a classic camera or with Photo Sphere on Android and iOS.

Expand Down
16 changes: 14 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: Jeremy Heleine
Tags: Google, Android, Photo Sphere, photos, panoramas, 360-degree, equirectangular
Requires at least: 3.1
Tested up to: 4.2.4
Stable tag: 3.3
Tested up to: 4.3
Stable tag: 3.4
License: MIT
License URI: http://opensource.org/licenses/MIT

Expand Down Expand Up @@ -104,6 +104,12 @@ also use the `min_fov` and `max_fov` attributes.

== Changelog ==

= 3.4 =
* New: Vertical animation control
* New: Longitude restriction possible
* New: Cropped panoramas
* Fixed: Fullscreen on Internet Explorer

= 3.3 =
* Gyroscope support
* Virtual reality support
Expand Down Expand Up @@ -173,6 +179,12 @@ also use the `min_fov` and `max_fov` attributes.

== Upgrade Notice ==

= 3.4 =
* New: Vertical animation control
* New: Longitude restriction possible
* New: Cropped panoramas
* Fixed: Fullscreen on Internet Explorer

= 3.3 =
* Gyroscope support
* Virtual reality support
Expand Down
2 changes: 1 addition & 1 deletion wp-photo-sphere.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of WP Photo Sphere v3.3
* This file is part of WP Photo Sphere v3.4
* http://jeremyheleine.me
*
* Copyright (c) 2013-2015 Jérémy Heleine
Expand Down
10 changes: 5 additions & 5 deletions wp-photo-sphere.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
* WP Photo Sphere v3.3
* WP Photo Sphere v3.4
* http://jeremyheleine.me
*
* Copyright (c) 2013-2015 Jérémy Heleine
Expand Down Expand Up @@ -28,7 +28,7 @@
Plugin Name: WP Photo Sphere
Plugin URI: http://jeremyheleine.me
Description: A filter that displays 360×180 degree panoramas. Please read the readme file for instructions.
Version: 3.3
Version: 3.4
Author: Jérémy Heleine
Author URI: http://jeremyheleine.me
Text Domain: wp-photo-sphere
Expand All @@ -38,7 +38,7 @@

// Current version number
if (!defined('WP_PHOTO_SPHERE_VERSION'))
define('WP_PHOTO_SPHERE_VERSION', '3.3');
define('WP_PHOTO_SPHERE_VERSION', '3.4');

function wpps_activation() {
update_option('wpps_version', WP_PHOTO_SPHERE_VERSION);
Expand Down Expand Up @@ -91,8 +91,8 @@ function wpps_deactivation() {

function wpps_register_scripts() {
wp_register_script('wpps-three', plugin_dir_url(__FILE__) . 'lib/three.min.js', array(), '3.3', true);
wp_register_script('wpps-psv', plugin_dir_url(__FILE__) . 'lib/photo-sphere-viewer.min.js', array('wpps-three'), '3.4.1', true);
wp_register_script('wp-photo-sphere', plugin_dir_url(__FILE__) . 'wp-photo-sphere.js', array('jquery', 'wpps-psv'), '3.3', true);
wp_register_script('wpps-psv', plugin_dir_url(__FILE__) . 'lib/photo-sphere-viewer.min.js', array('wpps-three'), '2.4.1', true);
wp_register_script('wp-photo-sphere', plugin_dir_url(__FILE__) . 'wp-photo-sphere.js', array('jquery', 'wpps-psv'), '3.4', true);
}
add_action('plugins_loaded', 'wpps_register_scripts');

Expand Down
2 changes: 1 addition & 1 deletion wpps-admin.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of WP Photo Sphere v3.3
* This file is part of WP Photo Sphere v3.4
* http://jeremyheleine.me
*
* Copyright (c) 2013-2015 Jérémy Heleine
Expand Down

0 comments on commit a3f3556

Please sign in to comment.