Easy Video Player - Version 1.1.6

Version Description

  • Added a shortcode parameter to disable the sharing option in the player.
Download this release

Release Info

Developer naa986
Plugin Icon 128x128 Easy Video Player
Version 1.1.6
Comparing to
See all releases

Code changes from version 1.1.5 to 1.1.6

Files changed (2) hide show
  1. easy-video-player.php +4 -3
  2. readme.txt +10 -13
easy-video-player.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Easy Video Player
4
- Version: 1.1.5
5
  Plugin URI: http://noorsplugin.com/wordpress-video-plugin/
6
  Author: naa986
7
  Author URI: http://noorsplugin.com/
@@ -17,7 +17,7 @@ if (!class_exists('EASY_VIDEO_PLAYER')) {
17
 
18
  class EASY_VIDEO_PLAYER {
19
 
20
- var $plugin_version = '1.1.5';
21
 
22
  function __construct() {
23
  define('EASY_VIDEO_PLAYER_VERSION', $this->plugin_version);
@@ -137,6 +137,7 @@ function evp_embed_video_handler($atts) {
137
  'loop' => '',
138
  'muted' => '',
139
  'preload' => 'metadata',
 
140
  'video_id' => '',
141
  'class' => '',
142
  'template' => '',
@@ -232,7 +233,7 @@ function evp_embed_video_handler($atts) {
232
  EOT;
233
 
234
  $output = <<<EOT
235
- <div id="$player" data-ratio="$ratio" class="flowplayer{$class}">
236
  <video{$video_id}{$autoplay}{$loop}{$muted}>
237
  <source type="video/mp4" src="$url"/>
238
  </video>
1
  <?php
2
  /*
3
  Plugin Name: Easy Video Player
4
+ Version: 1.1.6
5
  Plugin URI: http://noorsplugin.com/wordpress-video-plugin/
6
  Author: naa986
7
  Author URI: http://noorsplugin.com/
17
 
18
  class EASY_VIDEO_PLAYER {
19
 
20
+ var $plugin_version = '1.1.6';
21
 
22
  function __construct() {
23
  define('EASY_VIDEO_PLAYER_VERSION', $this->plugin_version);
137
  'loop' => '',
138
  'muted' => '',
139
  'preload' => 'metadata',
140
+ 'share' => 'true',
141
  'video_id' => '',
142
  'class' => '',
143
  'template' => '',
233
  EOT;
234
 
235
  $output = <<<EOT
236
+ <div id="$player" data-ratio="$ratio" data-share="$share" class="flowplayer{$class}">
237
  <video{$video_id}{$autoplay}{$loop}{$muted}>
238
  <source type="video/mp4" src="$url"/>
239
  </video>
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Easy Video Player ===
2
  Contributors: naa986
3
- Donate link: http://noorsplugin.com/
4
  Tags: video, wpvideo, flash, html5, iPad, iphone, ipod, mobile, playlists, embed video, flowplayer, video html5, flash player, player, video player
5
  Requires at least: 4.3
6
- Tested up to: 4.7
7
- Stable tag: 1.1.5
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -12,7 +12,7 @@ Easy Video Player is a WordPress video player that allows you to add video to yo
12
 
13
  == Description ==
14
 
15
- Easy Video Player is a user-friendly WordPress video plugin to showcase your videos. You can embed both self-hosted videos or videos that are externally hosted using direct links.
16
 
17
  = Easy Video Player Features =
18
 
@@ -75,12 +75,6 @@ If you want a particular video to start playing again when it ends, you can set
75
 
76
  `[evp_embed_video url="http://example.com/wp-content/uploads/videos/myvid.mp4" loop="true"]`
77
 
78
- **Video Muted**
79
-
80
- If you want a particular video to play without any audio output, you can set the "muted" option to "true":
81
-
82
- `[evp_embed_video url="http://example.com/wp-content/uploads/videos/myvid.mp4" muted="true"]`
83
-
84
  **Video Player Template**
85
 
86
  If you want to use a different video player template, you can specify it in the "template" parameter:
@@ -91,7 +85,7 @@ By default, the mediaelement template only loads the "metadata" of a video when
91
 
92
  `[evp_embed_video url="http://example.com/wp-content/uploads/videos/myvid.mp4" preload="auto" template="mediaelement"]`
93
 
94
- For detailed documentation please visit the [Easy Video Player](http://noorsplugin.com/wordpress-video-plugin/ "Video Plugin for WordPress") plugin page
95
 
96
  = Plugin Language Translation =
97
 
@@ -99,8 +93,8 @@ If you are a non-English speaker please help [translate Easy Video Player](https
99
 
100
  = Recommended Reading =
101
 
102
- * Easy Video Player [Documentation](http://noorsplugin.com/wordpress-video-plugin/)
103
- * My Other [Free WordPress Plugins](http://noorsplugin.com/wordpress-plugins/)
104
 
105
  == Installation ==
106
 
@@ -138,6 +132,9 @@ none
138
 
139
  == Changelog ==
140
 
 
 
 
141
  = 1.1.5 =
142
  * Updated the player to version 7.0.2.
143
 
1
  === Easy Video Player ===
2
  Contributors: naa986
3
+ Donate link: https://noorsplugin.com/
4
  Tags: video, wpvideo, flash, html5, iPad, iphone, ipod, mobile, playlists, embed video, flowplayer, video html5, flash player, player, video player
5
  Requires at least: 4.3
6
+ Tested up to: 4.8
7
+ Stable tag: 1.1.6
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ [Easy Video Player](https://noorsplugin.com/wordpress-video-plugin/) is a user-friendly WordPress video plugin to showcase your videos. You can embed both self-hosted videos or videos that are externally hosted using direct links.
16
 
17
  = Easy Video Player Features =
18
 
75
 
76
  `[evp_embed_video url="http://example.com/wp-content/uploads/videos/myvid.mp4" loop="true"]`
77
 
 
 
 
 
 
 
78
  **Video Player Template**
79
 
80
  If you want to use a different video player template, you can specify it in the "template" parameter:
85
 
86
  `[evp_embed_video url="http://example.com/wp-content/uploads/videos/myvid.mp4" preload="auto" template="mediaelement"]`
87
 
88
+ For detailed documentation please visit the [Easy Video Player](https://noorsplugin.com/wordpress-video-plugin/) plugin page
89
 
90
  = Plugin Language Translation =
91
 
93
 
94
  = Recommended Reading =
95
 
96
+ * Easy Video Player [Documentation](https://noorsplugin.com/wordpress-video-plugin/)
97
+ * My Other [Free WordPress Plugins](https://noorsplugin.com/wordpress-plugins/)
98
 
99
  == Installation ==
100
 
132
 
133
  == Changelog ==
134
 
135
+ = 1.1.6 =
136
+ * Added a shortcode parameter to disable the sharing option in the player.
137
+
138
  = 1.1.5 =
139
  * Updated the player to version 7.0.2.
140